blob: 6fb488a47ec451562d49a4258752001709cb5955 [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;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800149
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700150 /**
151 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800152 * running) activities. It contains #TaskRecord objects.
153 */
154 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<TaskRecord>();
155
156 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800157 * Used for validating app tokens with window manager.
158 */
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800159 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<TaskGroup>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800160
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700161 /**
162 * List of running activities, sorted by recent usage.
163 * The first entry in the list is the least recently used.
164 * It contains HistoryRecord objects.
165 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700166 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700167
168 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700169 * Animations that for the current transition have requested not to
170 * be considered for the transition animation.
171 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700172 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700173
174 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700175 * When we are in the process of pausing an activity, before starting the
176 * next one, this variable holds the activity that is currently being paused.
177 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800178 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700179
180 /**
181 * This is the last activity that we put into the paused state. This is
182 * used to determine if we need to do an activity transition while sleeping,
183 * when we normally hold the top activity paused.
184 */
185 ActivityRecord mLastPausedActivity = null;
186
187 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700188 * Activities that specify No History must be removed once the user navigates away from them.
189 * If the device goes to sleep with such an activity in the paused state then we save it here
190 * and finish it later if another activity replaces it on wakeup.
191 */
192 ActivityRecord mLastNoHistoryActivity = null;
193
194 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700195 * Current activity that is resumed, or null if there is none.
196 */
197 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800198
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700199 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700200 * This is the last activity that has been started. It is only used to
201 * identify when multiple activities are started at once so that the user
202 * can be warned they may not be in the activity they think they are.
203 */
204 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800205
Craig Mautner5eda9b32013-07-02 11:58:16 -0700206 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
207 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
208 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
209 // Activity in mTranslucentActivityWaiting is notified via
210 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
211 // background activity being drawn then the same call will be made with a true value.
212 ActivityRecord mTranslucentActivityWaiting = null;
Craig Mautnereb8abf72014-07-02 15:04:09 -0700213 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
Craig Mautner5eda9b32013-07-02 11:58:16 -0700214 new ArrayList<ActivityRecord>();
215
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700216 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700217 * Set when we know we are going to be calling updateConfiguration()
218 * soon, so want to skip intermediate config checks.
219 */
220 boolean mConfigWillChange;
221
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700222 long mLaunchStartTime = 0;
223 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800224
Craig Mautner858d8a62013-04-23 17:08:34 -0700225 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700226
Craig Mautnerc00204b2013-03-05 15:02:14 -0800227 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800228 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800229 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
230 ArrayList<ActivityStack> mStacks;
231 /** The attached Display's unique identifier, or -1 if detached */
232 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800233
Craig Mautner27084302013-03-25 08:05:25 -0700234 /** Run all ActivityStacks through this */
235 final ActivityStackSupervisor mStackSupervisor;
236
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700237 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700238 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
239 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
240 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
241 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700242 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700243 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700244 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700245
246 static class ScheduleDestroyArgs {
247 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700248 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700249 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700250 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700251 mReason = reason;
252 }
253 }
254
Zoran Marcetaf958b322012-08-09 20:27:12 +0900255 final Handler mHandler;
256
257 final class ActivityStackHandler extends Handler {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700258 //public Handler() {
259 // if (localLOGV) Slog.v(TAG, "Handler started!");
260 //}
Craig Mautnerc8143c62013-09-03 12:15:57 -0700261 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900262 super(looper);
263 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700264
Zoran Marcetaf958b322012-08-09 20:27:12 +0900265 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700266 public void handleMessage(Message msg) {
267 switch (msg.what) {
268 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800269 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700270 // We don't at this point know if the activity is fullscreen,
271 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800272 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700273 synchronized (mService) {
274 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700275 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700276 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700277 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800278 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700279 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700280 case LAUNCH_TICK_MSG: {
281 ActivityRecord r = (ActivityRecord)msg.obj;
282 synchronized (mService) {
283 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700284 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700285 }
286 }
287 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700288 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800289 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700290 // We don't at this point know if the activity is fullscreen,
291 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800292 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800293 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800294 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800295 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700296 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700297 case STOP_TIMEOUT_MSG: {
298 ActivityRecord r = (ActivityRecord)msg.obj;
299 // We don't at this point know if the activity is fullscreen,
300 // so we need to be conservative and assume it isn't.
301 Slog.w(TAG, "Activity stop timeout for " + r);
302 synchronized (mService) {
303 if (r.isInHistory()) {
304 activityStoppedLocked(r, null, null, null);
305 }
306 }
307 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700308 case DESTROY_ACTIVITIES_MSG: {
309 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
310 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700311 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700312 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700313 } break;
314 case TRANSLUCENT_TIMEOUT_MSG: {
315 synchronized (mService) {
316 notifyActivityDrawnLocked(null);
317 }
318 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700319 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700320 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700321 final ActivityRecord r = getVisibleBehindActivity();
322 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700323 if (r != null) {
324 mService.killAppAtUsersRequest(r.app, null);
325 }
326 }
327 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700328 }
329 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800330 }
331
Craig Mautner34b73df2014-01-12 21:11:08 -0800332 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800333 int count = 0;
334 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
335 count += mTaskHistory.get(taskNdx).mActivities.size();
336 }
337 return count;
338 }
339
Craig Mautner4a1cb222013-12-04 16:14:06 -0800340 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer) {
341 mActivityContainer = activityContainer;
342 mStackSupervisor = activityContainer.getOuter();
343 mService = mStackSupervisor.mService;
344 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
345 mWindowManager = mService.mWindowManager;
346 mStackId = activityContainer.mStackId;
347 mCurrentUser = mService.mCurrentUserId;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700348 }
Craig Mautner5962b122012-10-05 14:45:52 -0700349
Amith Yamasani734983f2014-03-04 16:48:05 -0800350 /**
Kenny Guy2a764942014-04-02 13:29:20 +0100351 * Checks whether the userid is a profile of the current user.
Amith Yamasani734983f2014-03-04 16:48:05 -0800352 */
Kenny Guy2a764942014-04-02 13:29:20 +0100353 private boolean isCurrentProfileLocked(int userId) {
Kenny Guyf4824a02014-04-02 19:17:41 +0100354 if (userId == mCurrentUser) return true;
Kenny Guy2a764942014-04-02 13:29:20 +0100355 for (int i = 0; i < mService.mCurrentProfileIds.length; i++) {
356 if (mService.mCurrentProfileIds[i] == userId) return true;
Amith Yamasani734983f2014-03-04 16:48:05 -0800357 }
358 return false;
359 }
360
361 boolean okToShowLocked(ActivityRecord r) {
Kenny Guy2a764942014-04-02 13:29:20 +0100362 return isCurrentProfileLocked(r.userId)
Craig Mautner5962b122012-10-05 14:45:52 -0700363 || (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0;
364 }
365
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700366 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800367 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700368 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
369 if (r != null) {
370 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800371 }
372 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700373 return null;
374 }
375
376 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800377 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
378 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800379 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800380 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
381 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800382 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800383 return r;
384 }
385 }
386 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700387 return null;
388 }
389
390 /**
391 * This is a simplified version of topRunningActivityLocked that provides a number of
392 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800393 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700394 * @param token If non-null, any history records matching this token will be skipped.
395 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800396 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700397 * @return Returns the HistoryRecord of the next activity on the stack.
398 */
399 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800400 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
401 TaskRecord task = mTaskHistory.get(taskNdx);
402 if (task.taskId == taskId) {
403 continue;
404 }
405 ArrayList<ActivityRecord> activities = task.mActivities;
406 for (int i = activities.size() - 1; i >= 0; --i) {
407 final ActivityRecord r = activities.get(i);
408 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800409 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800410 return r;
411 }
412 }
413 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700414 return null;
415 }
416
Craig Mautner8849a5e2013-04-02 16:41:03 -0700417 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700418 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
419 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700420 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
421 final ActivityRecord r = activities.get(activityNdx);
422 if (!r.finishing) {
423 return r;
424 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700425 }
426 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700427 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700428 }
429
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700430 final TaskRecord topTask() {
431 final int size = mTaskHistory.size();
432 if (size > 0) {
433 return mTaskHistory.get(size - 1);
434 }
435 return null;
436 }
437
Craig Mautnerd2328952013-03-05 12:46:26 -0800438 TaskRecord taskForIdLocked(int id) {
439 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
440 final TaskRecord task = mTaskHistory.get(taskNdx);
441 if (task.taskId == id) {
442 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800443 }
444 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700445 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700446 }
447
Craig Mautnerd2328952013-03-05 12:46:26 -0800448 ActivityRecord isInStackLocked(IBinder token) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800449 final ActivityRecord r = ActivityRecord.forToken(token);
Craig Mautnerd2328952013-03-05 12:46:26 -0800450 if (r != null) {
451 final TaskRecord task = r.task;
Dianne Hackborn925e2b32014-09-03 16:40:49 -0700452 if (task != null && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800453 if (task.stack != this) Slog.w(TAG,
454 "Illegal state! task does not point to stack it is in.");
455 return r;
456 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800457 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800458 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800459 }
460
Craig Mautner2420ead2013-04-01 17:13:20 -0700461 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700462 final boolean hadit = mLRUActivities.remove(r);
463 mLRUActivities.add(r);
464 return hadit;
465 }
466
Craig Mautnerde4ef022013-04-07 19:01:33 -0700467 final boolean isHomeStack() {
468 return mStackId == HOME_STACK_ID;
469 }
470
Craig Mautnere0a38842013-12-16 16:14:02 -0800471 final boolean isOnHomeDisplay() {
472 return isAttached() &&
473 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
474 }
475
Craig Mautner299f9602015-01-26 09:47:33 -0800476 final void moveToFront(String reason) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800477 if (isAttached()) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800478 if (isOnHomeDisplay()) {
Craig Mautner299f9602015-01-26 09:47:33 -0800479 mStackSupervisor.moveHomeStack(isHomeStack(), reason);
Craig Mautnere0a38842013-12-16 16:14:02 -0800480 }
Craig Mautnerfefeef82014-01-10 08:40:23 -0800481 mStacks.remove(this);
482 mStacks.add(this);
Craig Mautner6b904ef2014-12-17 15:45:03 -0800483 final TaskRecord task = topTask();
484 if (task != null) {
485 mWindowManager.moveTaskToTop(task.taskId);
486 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800487 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800488 }
489
490 final boolean isAttached() {
491 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800492 }
493
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700494 /**
495 * Returns the top activity in any existing task matching the given
496 * Intent. Returns null if no such task is found.
497 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700498 ActivityRecord findTaskLocked(ActivityRecord target) {
499 Intent intent = target.intent;
500 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700501 ComponentName cls = intent.getComponent();
502 if (info.targetActivity != null) {
503 cls = new ComponentName(info.packageName, info.targetActivity);
504 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700505 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700506 boolean isDocument = intent != null & intent.isDocument();
507 // If documentData is non-null then it must match the existing task data.
508 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800509
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700510 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800511 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
512 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700513 if (task.voiceSession != null) {
514 // We never match voice sessions; those always run independently.
515 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": voice session");
516 continue;
517 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700518 if (task.userId != userId) {
519 // Looking for a different task.
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700520 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700521 continue;
522 }
Craig Mautner000f0022013-02-26 15:04:29 -0800523 final ActivityRecord r = task.getTopActivity();
524 if (r == null || r.finishing || r.userId != userId ||
525 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700526 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800527 continue;
528 }
529
Craig Mautnerd00f4742014-03-12 14:17:26 -0700530 final Intent taskIntent = task.intent;
531 final Intent affinityIntent = task.affinityIntent;
532 final boolean taskIsDocument;
533 final Uri taskDocumentData;
534 if (taskIntent != null && taskIntent.isDocument()) {
535 taskIsDocument = true;
536 taskDocumentData = taskIntent.getData();
537 } else if (affinityIntent != null && affinityIntent.isDocument()) {
538 taskIsDocument = true;
539 taskDocumentData = affinityIntent.getData();
540 } else {
541 taskIsDocument = false;
542 taskDocumentData = null;
543 }
544
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700545 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700546 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700547 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700548 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700549 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
550 if (task.rootAffinity.equals(target.taskAffinity)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700551 if (DEBUG_TASKS) Slog.d(TAG, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700552 return r;
553 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700554 } else if (taskIntent != null && taskIntent.getComponent() != null &&
555 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700556 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700557 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800558 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700559 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
560 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800561 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700562 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
563 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700564 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700565 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800566 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700567 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
568 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800569 return r;
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700570 } else if (DEBUG_TASKS) {
571 Slog.d(TAG, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700572 }
573 }
574
575 return null;
576 }
577
578 /**
579 * Returns the first activity (starting from the top of the stack) that
580 * is the same as the given activity. Returns null if no such activity
581 * is found.
582 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700583 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700584 ComponentName cls = intent.getComponent();
585 if (info.targetActivity != null) {
586 cls = new ComponentName(info.packageName, info.targetActivity);
587 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700588 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700589
Craig Mautner000f0022013-02-26 15:04:29 -0800590 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700591 TaskRecord task = mTaskHistory.get(taskNdx);
Kenny Guy2a764942014-04-02 13:29:20 +0100592 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700593 return null;
594 }
595 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner000f0022013-02-26 15:04:29 -0800596 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
597 ActivityRecord r = activities.get(activityNdx);
598 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700599 //Slog.i(TAG, "Found matching class!");
600 //dump();
601 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
602 return r;
603 }
604 }
605 }
606
607 return null;
608 }
609
Amith Yamasani742a6712011-05-04 14:49:28 -0700610 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700611 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700612 */
Craig Mautner93529a42013-10-04 15:03:13 -0700613 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800614 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700615 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800616 }
617 mCurrentUser = userId;
618
619 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800620 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800621 for (int i = 0; i < index; ) {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700622 TaskRecord task = mTaskHistory.get(i);
Kenny Guy2a764942014-04-02 13:29:20 +0100623 if (isCurrentProfileLocked(task.userId)) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700624 if (DEBUG_TASKS) Slog.d(TAG, "switchUserLocked: stack=" + getStackId() +
625 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800626 mTaskHistory.remove(i);
627 mTaskHistory.add(task);
628 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800629 // Use same value for i.
630 } else {
631 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800632 }
633 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700634 if (VALIDATE_TOKENS) {
635 validateAppTokensLocked();
636 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700637 }
638
Craig Mautner2420ead2013-04-01 17:13:20 -0700639 void minimalResumeActivityLocked(ActivityRecord r) {
640 r.state = ActivityState.RESUMED;
641 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
642 + " (starting new instance)");
643 r.stopped = false;
644 mResumedActivity = r;
645 r.task.touchActiveTime();
646 mService.addRecentTaskLocked(r.task);
647 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700648 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700649 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700650 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700651 }
652
Dianne Hackborncee04b52013-07-03 17:01:28 -0700653 private void startLaunchTraces() {
654 if (mFullyDrawnStartTime != 0) {
655 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
656 }
657 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
658 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
659 }
660
661 private void stopFullyDrawnTraceIfNeeded() {
662 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
663 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
664 mFullyDrawnStartTime = 0;
665 }
666 }
667
Craig Mautnere79d42682013-04-01 19:01:53 -0700668 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700669 if (r.displayStartTime == 0) {
670 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
671 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700672 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700673 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700674 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700675 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700676 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700677 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700678 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700679 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800680
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700681 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700682 // Make sure that there is no activity waiting for this to launch.
683 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
684 r.displayStartTime = r.fullyDrawnStartTime = 0;
685 } else {
686 mStackSupervisor.removeTimeoutsForActivityLocked(r);
687 mStackSupervisor.scheduleIdleTimeoutLocked(r);
688 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700689 }
690
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800691 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800692 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800693 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
694 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
695 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
696 activities.get(activityNdx).setSleeping(false);
697 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800698 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800699 if (mPausingActivity != null) {
700 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
701 activityPausedLocked(mPausingActivity.appToken, true);
702 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800703 }
704
Craig Mautner0eea92c2013-05-16 13:35:39 -0700705 /**
706 * @return true if something must be done before going to sleep.
707 */
708 boolean checkReadyForSleepLocked() {
709 if (mResumedActivity != null) {
710 // Still have something resumed; can't sleep until it is paused.
711 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep needs to pause " + mResumedActivity);
712 if (DEBUG_USER_LEAVING) Slog.v(TAG, "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700713 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700714 return true;
715 }
716 if (mPausingActivity != null) {
717 // Still waiting for something to pause; can't sleep yet.
718 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep still waiting to pause " + mPausingActivity);
719 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800720 }
721
Craig Mautner0eea92c2013-05-16 13:35:39 -0700722 return false;
723 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800724
Craig Mautner0eea92c2013-05-16 13:35:39 -0700725 void goToSleep() {
726 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800727
Craig Mautner0eea92c2013-05-16 13:35:39 -0700728 // Make sure any stopped but visible activities are now sleeping.
729 // This ensures that the activity's onStop() is called.
730 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
731 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
732 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
733 final ActivityRecord r = activities.get(activityNdx);
734 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
735 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800736 }
737 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800738 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700739 }
Craig Mautner59c00972012-07-30 12:10:24 -0700740
Dianne Hackbornd2835932010-12-13 16:28:46 -0800741 public final Bitmap screenshotActivities(ActivityRecord who) {
Winson Chung376543b2014-05-21 17:43:28 -0700742 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800743 if (who.noDisplay) {
Winson Chung376543b2014-05-21 17:43:28 -0700744 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800745 return null;
746 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800747
Winson Chung083baf92014-07-11 10:32:42 -0700748 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700749 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwale37f27182014-12-09 14:02:27 -0800750 // we can just go ahead and skip taking the screenshot if this is the home stack.
751 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700752 return null;
753 }
754
Winson Chung48a10a52014-08-27 14:36:51 -0700755 int w = mService.mThumbnailWidth;
756 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800757 if (w > 0) {
Wale Ogunwale37f27182014-12-09 14:02:27 -0800758 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tTaking screenshot");
759 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
760 w, h, SCREENSHOT_FORCE_565);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800761 }
Winson Chung376543b2014-05-21 17:43:28 -0700762 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800763 return null;
764 }
765
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700766 /**
767 * Start pausing the currently resumed activity. It is an error to call this if there
768 * is already an activity being paused or there is no resumed activity.
769 *
770 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
771 * @param uiSleeping True if this is happening with the user interface going to sleep (the
772 * screen turning off).
773 * @param resuming True if this is being called as part of resuming the top activity, so
774 * we shouldn't try to instigate a resume here.
775 * @param dontWait True if the caller does not want to wait for the pause to complete. If
776 * set to true, we will immediately complete the pause here before returning.
777 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
778 * it to tell us when it is done.
779 */
780 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
781 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800782 if (mPausingActivity != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700783 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity);
784 completePauseLocked(false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800785 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700786 ActivityRecord prev = mResumedActivity;
787 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700788 if (!resuming) {
789 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
790 mStackSupervisor.resumeTopActivitiesLocked();
791 }
792 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700793 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800794
795 if (mActivityContainer.mParentActivity == null) {
796 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700797 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800798 }
799
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700800 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
801 else if (DEBUG_PAUSE) Slog.v(TAG, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700802 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800803 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700804 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700805 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
806 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700807 prev.state = ActivityState.PAUSING;
808 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700809 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700810 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwaled3e2a082014-11-04 16:09:19 -0800811 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800812 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700813 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700814 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700815
816 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800817
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700818 if (prev.app != null && prev.app.thread != null) {
819 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
820 try {
821 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700822 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700823 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700824 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800825 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700826 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700827 } catch (Exception e) {
828 // Ignore exception, if process died other code will cleanup.
829 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800830 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700831 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700832 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700833 }
834 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800835 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700836 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700837 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700838 }
839
840 // If we are not going to sleep, we want to ensure the device is
841 // awake until the next activity is started.
Craig Mautnere11f2b72013-04-01 12:37:17 -0700842 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700843 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700844 }
845
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800846 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700847 // Have the window manager pause its key dispatching until the new
848 // activity has started. If we're pausing the activity just because
849 // the screen is being turned off and the UI is sleeping, don't interrupt
850 // key dispatch; the same activity will pick it up again on wakeup.
851 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800852 prev.pauseKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700853 } else {
854 if (DEBUG_PAUSE) Slog.v(TAG, "Key dispatch not paused for screen off");
855 }
856
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700857 if (dontWait) {
858 // If the caller said they don't want to wait for the pause, then complete
859 // the pause now.
860 completePauseLocked(false);
861 return false;
862
863 } else {
864 // Schedule a pause timeout in case the app doesn't respond.
865 // We don't give it much time because this directly impacts the
866 // responsiveness seen by the user.
867 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
868 msg.obj = prev;
869 prev.pauseTime = SystemClock.uptimeMillis();
870 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
871 if (DEBUG_PAUSE) Slog.v(TAG, "Waiting for pause to complete...");
872 return true;
873 }
874
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700875 } else {
876 // This activity failed to schedule the
877 // pause, so just treat it as being paused now.
878 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700879 if (!resuming) {
880 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
881 }
882 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700883 }
884 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700885
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700886 final void activityPausedLocked(IBinder token, boolean timeout) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700887 if (DEBUG_PAUSE) Slog.v(
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800888 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700889
Craig Mautnerd2328952013-03-05 12:46:26 -0800890 final ActivityRecord r = isInStackLocked(token);
891 if (r != null) {
892 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
893 if (mPausingActivity == r) {
894 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
895 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700896 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800897 } else {
898 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
899 r.userId, System.identityHashCode(r), r.shortComponentName,
900 mPausingActivity != null
901 ? mPausingActivity.shortComponentName : "(none)");
louis_chang047dfd42015-04-08 16:35:55 +0800902 if (r.finishing && r.state == ActivityState.PAUSING) {
903 if (DEBUG_PAUSE) Slog.v(TAG,
904 "Executing finish of failed to pause activity: " + r);
905 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
906 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700907 }
908 }
909 }
910
Craig Mautnera0026042014-04-23 11:45:37 -0700911 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
912 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700913 if (r.state != ActivityState.STOPPING) {
914 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
915 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
916 return;
917 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700918 if (persistentState != null) {
919 r.persistentState = persistentState;
920 mService.notifyTaskPersisterLocked(r.task, false);
921 }
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700922 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700923 if (icicle != null) {
924 // If icicle is null, this is happening due to a timeout, so we
925 // haven't really saved the state.
926 r.icicle = icicle;
927 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800928 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -0800929 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700930 }
931 if (!r.stopped) {
932 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
933 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
934 r.stopped = true;
935 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -0700936 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
937 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700938 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700939 if (r.finishing) {
940 r.clearOptionsLocked();
941 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700942 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700943 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700944 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700945 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700946 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800947 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700948 }
949 }
950 }
951
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700952 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800953 ActivityRecord prev = mPausingActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700954 if (DEBUG_PAUSE) Slog.v(TAG, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800955
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800956 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700957 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800958 if (prev.finishing) {
959 if (DEBUG_PAUSE) Slog.v(TAG, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700960 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800961 } else if (prev.app != null) {
962 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
963 if (prev.waitingVisible) {
964 prev.waitingVisible = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700965 mStackSupervisor.mWaitingVisibleActivities.remove(prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800966 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(
967 TAG, "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800968 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800969 if (prev.configDestroy) {
970 // The previous is being paused because the configuration
971 // is changing, which means it is actually stopping...
972 // To juggle the fact that we are also starting a new
973 // instance right now, we need to first completely stop
974 // the current instance before starting the new one.
975 if (DEBUG_PAUSE) Slog.v(TAG, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700976 destroyActivityLocked(prev, true, "pause-config");
Jose Lima4b6c6692014-08-12 17:41:12 -0700977 } else if (!hasVisibleBehindActivity()) {
978 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -0700979 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700980 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -0700981 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
982 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800983 // If we already have a few activities waiting to stop,
984 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -0700985 // them out. Or if r is the last of activity of the last task the stack
986 // will be empty and must be cleared immediately.
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800987 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -0700988 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800989 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -0700990 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800991 }
992 }
993 } else {
994 if (DEBUG_PAUSE) Slog.v(TAG, "App died during pause, not stopping: " + prev);
995 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800996 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800997 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700998 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800999
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001000 if (resumeNext) {
1001 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1002 if (!mService.isSleepingOrShuttingDown()) {
1003 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1004 } else {
1005 mStackSupervisor.checkReadyForSleepLocked();
1006 ActivityRecord top = topStack.topRunningActivityLocked(null);
1007 if (top == null || (prev != null && top != prev)) {
1008 // If there are no more activities available to run,
1009 // do resume anyway to start something. Also if the top
1010 // activity on the stack is not the just paused activity,
1011 // we need to go ahead and resume it to ensure we complete
1012 // an in-flight app switch.
1013 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1014 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001015 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001016 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001017
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001018 if (prev != null) {
1019 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001020
Craig Mautner525f3d92013-05-07 14:01:50 -07001021 if (prev.app != null && prev.cpuTimeAtResume > 0
1022 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001023 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1024 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001025 if (diff > 0) {
1026 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1027 synchronized (bsi) {
1028 BatteryStatsImpl.Uid.Proc ps =
1029 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001030 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001031 if (ps != null) {
1032 ps.addForegroundTimeLocked(diff);
1033 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001034 }
1035 }
1036 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001037 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001038 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001039
1040 // Notfiy when the task stack has changed
1041 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001042 }
1043
1044 /**
1045 * Once we know that we have asked an application to put an activity in
1046 * the resumed state (either by launching it or explicitly telling it),
1047 * this function updates the rest of our state to match that fact.
1048 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001049 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001050 next.idle = false;
1051 next.results = null;
1052 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001053
1054 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1055 ProcessRecord app = next.task.mActivities.get(0).app;
1056 if (app != null && app != mService.mHomeProcess) {
1057 mService.mHomeProcess = app;
1058 }
1059 }
1060
Craig Mautner07566322013-09-26 16:42:55 -07001061 if (next.nowVisible) {
1062 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001063 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001064 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001065
1066 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001067 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001068
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001069 mStackSupervisor.reportResumedActivityLocked(next);
1070
1071 next.resumeKeyDispatchingLocked();
1072 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001073
1074 // Mark the point when the activity is resuming
1075 // TODO: To be more accurate, the mark should be before the onCreate,
1076 // not after the onResume. But for subsequent starts, onResume is fine.
1077 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001078 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001079 } else {
1080 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1081 }
Winson Chung376543b2014-05-21 17:43:28 -07001082
George Mount6ba042b2014-07-28 11:12:28 -07001083 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001084
1085 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1086 // When resuming an activity, require it to call requestVisibleBehind() again.
1087 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1088 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001089 }
1090
Craig Mautnere3a00d72014-04-16 08:31:19 -07001091 private void setVisibile(ActivityRecord r, boolean visible) {
1092 r.visible = visible;
1093 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001094 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001095 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001096 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001097 container.setVisible(visible);
1098 }
1099 }
1100
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001101 // Find the first visible activity above the passed activity and if it is translucent return it
1102 // otherwise return null;
1103 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1104 TaskRecord task = r.task;
1105 if (task == null) {
1106 return null;
1107 }
1108
1109 ActivityStack stack = task.stack;
1110 if (stack == null) {
1111 return null;
1112 }
1113
1114 int stackNdx = mStacks.indexOf(stack);
1115
1116 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1117 int taskNdx = tasks.indexOf(task);
1118
1119 ArrayList<ActivityRecord> activities = task.mActivities;
1120 int activityNdx = activities.indexOf(r) + 1;
1121
1122 final int numStacks = mStacks.size();
1123 while (stackNdx < numStacks) {
1124 tasks = mStacks.get(stackNdx).mTaskHistory;
1125 final int numTasks = tasks.size();
1126 while (taskNdx < numTasks) {
1127 activities = tasks.get(taskNdx).mActivities;
1128 final int numActivities = activities.size();
1129 while (activityNdx < numActivities) {
1130 final ActivityRecord activity = activities.get(activityNdx);
1131 if (!activity.finishing) {
1132 return activity.fullscreen ? null : activity;
1133 }
1134 ++activityNdx;
1135 }
1136 activityNdx = 0;
1137 ++taskNdx;
1138 }
1139 taskNdx = 0;
1140 ++stackNdx;
1141 }
1142
1143 return null;
1144 }
1145
Jose Lima7ba71252014-04-30 12:59:27 -07001146 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1147 // If so, this stack is hidden, otherwise it is visible.
1148 private boolean isStackVisible() {
1149 if (!isAttached()) {
1150 return false;
1151 }
1152
1153 if (mStackSupervisor.isFrontStack(this)) {
1154 return true;
1155 }
1156
Jose Lima729cb232014-05-05 15:59:40 -07001157 /**
1158 * Start at the task above this one and go up, looking for a visible
1159 * fullscreen activity, or a translucent activity that requested the
1160 * wallpaper to be shown behind it.
1161 */
Jose Lima7ba71252014-04-30 12:59:27 -07001162 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
1163 final ArrayList<TaskRecord> tasks = mStacks.get(i).getAllTasks();
1164 for (int taskNdx = 0; taskNdx < tasks.size(); taskNdx++) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001165 final TaskRecord task = tasks.get(taskNdx);
1166 final ArrayList<ActivityRecord> activities = task.mActivities;
Jose Lima7ba71252014-04-30 12:59:27 -07001167 for (int activityNdx = 0; activityNdx < activities.size(); activityNdx++) {
1168 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001169
1170 // Conditions for an activity to obscure the stack we're
1171 // examining:
1172 // 1. Not Finishing AND Visible AND:
1173 // 2. Either:
1174 // - Full Screen Activity OR
1175 // - On top of Home and our stack is NOT home
1176 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001177 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001178 return false;
1179 }
1180 }
1181 }
1182 }
1183
1184 return true;
1185 }
1186
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001187 /**
1188 * Make sure that all activities that need to be visible (that is, they
1189 * currently can be seen by the user) actually are.
1190 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001191 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1192 ActivityRecord top = topRunningActivityLocked(null);
1193 if (top == null) {
1194 return;
1195 }
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001196 if (DEBUG_VISBILITY) Slog.v(
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001197 TAG, "ensureActivitiesVisible behind " + top
1198 + " configChanges=0x" + Integer.toHexString(configChanges));
1199
Craig Mautner5eda9b32013-07-02 11:58:16 -07001200 if (mTranslucentActivityWaiting != top) {
1201 mUndrawnActivitiesBelowTopTranslucent.clear();
1202 if (mTranslucentActivityWaiting != null) {
1203 // Call the callback with a timeout indication.
1204 notifyActivityDrawnLocked(null);
1205 mTranslucentActivityWaiting = null;
1206 }
1207 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1208 }
1209
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001210 // If the top activity is not fullscreen, then we need to
1211 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001212 boolean aboveTop = true;
Jose Lima7ba71252014-04-30 12:59:27 -07001213 boolean behindFullscreen = !isStackVisible();
1214
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001215 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001216 final TaskRecord task = mTaskHistory.get(taskNdx);
1217 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001218 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1219 final ActivityRecord r = activities.get(activityNdx);
1220 if (r.finishing) {
1221 continue;
1222 }
1223 if (aboveTop && r != top) {
1224 continue;
1225 }
1226 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001227 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1228 // but must be drawn initially for the animation as though they were visible.
1229 if (!behindFullscreen || r.mLaunchTaskBehind) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001230 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001231 TAG, "Make visible? " + r + " finishing=" + r.finishing
1232 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001233
Craig Mautnerd44711d2013-02-23 11:24:36 -08001234 // First: if this is not the current activity being started, make
1235 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001236 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001237 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001238 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001239
1240 if (r.app == null || r.app.thread == null) {
Craig Mautnerbb742462014-07-07 15:28:55 -07001241 // This activity needs to be visible, but isn't even
1242 // running... get it started, but don't resume it
1243 // at this point.
1244 if (DEBUG_VISBILITY) Slog.v(TAG, "Start and freeze screen for " + r);
1245 if (r != starting) {
1246 r.startFreezingScreenLocked(r.app, configChanges);
1247 }
1248 if (!r.visible || r.mLaunchTaskBehind) {
1249 if (DEBUG_VISBILITY) Slog.v(
1250 TAG, "Starting and making visible: " + r);
1251 setVisibile(r, true);
1252 }
1253 if (r != starting) {
1254 mStackSupervisor.startSpecificActivityLocked(r, false, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001255 }
1256
1257 } else if (r.visible) {
1258 // If this activity is already visible, then there is nothing
1259 // else to do here.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001260 if (DEBUG_VISBILITY) Slog.v(TAG, "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001261 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001262 try {
George Mount6ba042b2014-07-28 11:12:28 -07001263 if (r.returningOptions != null) {
1264 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1265 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001266 }
1267 } catch(RemoteException e) {
1268 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001269 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001270 // This activity is not currently visible, but is running.
1271 // Tell it to become visible.
1272 r.visible = true;
1273 if (r.state != ActivityState.RESUMED && r != starting) {
1274 // If this activity is paused, tell it
1275 // to now show its window.
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001276 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001277 TAG, "Making visible and scheduling visibility: " + r);
1278 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001279 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001280 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001281 mUndrawnActivitiesBelowTopTranslucent.add(r);
1282 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001283 setVisibile(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001284 r.sleeping = false;
1285 r.app.pendingUiClean = true;
1286 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1287 r.stopFreezingScreenLocked(false);
1288 } catch (Exception e) {
1289 // Just skip on any failure; we'll make it
1290 // visible when it next restarts.
1291 Slog.w(TAG, "Exception thrown making visibile: "
1292 + r.intent.getComponent(), e);
1293 }
1294 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001295 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001296
Craig Mautnerd44711d2013-02-23 11:24:36 -08001297 // Aggregate current change flags.
1298 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001299
Craig Mautnerd44711d2013-02-23 11:24:36 -08001300 if (r.fullscreen) {
1301 // At this point, nothing else needs to be shown
Craig Mautner580ea812013-04-25 12:58:38 -07001302 if (DEBUG_VISBILITY) Slog.v(TAG, "Fullscreen: at " + r);
1303 behindFullscreen = true;
Craig Mautner84984fa2014-06-19 11:19:20 -07001304 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001305 if (DEBUG_VISBILITY) Slog.v(TAG, "Showing home: at " + r);
Jose Lima729cb232014-05-05 15:59:40 -07001306 behindFullscreen = true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001307 }
1308 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001309 if (DEBUG_VISBILITY) Slog.v(
1310 TAG, "Make invisible? " + r + " finishing=" + r.finishing
1311 + " state=" + r.state
1312 + " behindFullscreen=" + behindFullscreen);
1313 // Now for any activities that aren't visible to the user, make
1314 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001315 if (r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001316 if (DEBUG_VISBILITY) Slog.v(TAG, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001317 try {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001318 setVisibile(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001319 switch (r.state) {
1320 case STOPPING:
1321 case STOPPED:
1322 if (r.app != null && r.app.thread != null) {
1323 if (DEBUG_VISBILITY) Slog.v(
1324 TAG, "Scheduling invisibility: " + r);
1325 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1326 }
1327 break;
1328
1329 case INITIALIZING:
1330 case RESUMED:
1331 case PAUSING:
1332 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001333 // This case created for transitioning activities from
1334 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001335 if (getVisibleBehindActivity() == r) {
1336 releaseBackgroundResources();
Craig Mautneree2e45a2014-06-27 12:10:03 -07001337 } else {
1338 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1339 mStackSupervisor.mStoppingActivities.add(r);
1340 }
1341 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001342 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001343 break;
1344
1345 default:
1346 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001347 }
1348 } catch (Exception e) {
1349 // Just skip on any failure; we'll make it
1350 // visible when it next restarts.
1351 Slog.w(TAG, "Exception thrown making hidden: "
1352 + r.intent.getComponent(), e);
1353 }
1354 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001355 if (DEBUG_VISBILITY) Slog.v(TAG, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001356 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001357 }
1358 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001359 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001360
1361 if (mTranslucentActivityWaiting != null &&
1362 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1363 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1364 notifyActivityDrawnLocked(null);
1365 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001366 }
Craig Mautner58547802013-03-05 08:23:53 -08001367
George Mount6ba042b2014-07-28 11:12:28 -07001368 void convertToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001369 mTranslucentActivityWaiting = r;
1370 mUndrawnActivitiesBelowTopTranslucent.clear();
1371 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1372 }
1373
1374 /**
1375 * Called as activities below the top translucent activity are redrawn. When the last one is
1376 * redrawn notify the top activity by calling
1377 * {@link Activity#onTranslucentConversionComplete}.
1378 *
1379 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1380 * occurred and the activity will be notified immediately.
1381 */
1382 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001383 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001384 if ((r == null)
1385 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1386 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1387 // The last undrawn activity below the top has just been drawn. If there is an
1388 // opaque activity at the top, notify it that it can become translucent safely now.
1389 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1390 mTranslucentActivityWaiting = null;
1391 mUndrawnActivitiesBelowTopTranslucent.clear();
1392 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1393
Craig Mautner71dd1b62014-02-18 15:48:52 -08001394 if (waitingActivity != null) {
1395 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1396 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1397 try {
1398 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1399 waitingActivity.appToken, r != null);
1400 } catch (RemoteException e) {
1401 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001402 }
1403 }
1404 }
1405 }
1406
Craig Mautnera61bc652013-10-28 15:43:18 -07001407 /** If any activities below the top running one are in the INITIALIZING state and they have a
1408 * starting window displayed then remove that starting window. It is possible that the activity
1409 * in this state will never resumed in which case that starting window will be orphaned. */
1410 void cancelInitializingActivities() {
1411 final ActivityRecord topActivity = topRunningActivityLocked(null);
1412 boolean aboveTop = true;
1413 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1414 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1415 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1416 final ActivityRecord r = activities.get(activityNdx);
1417 if (aboveTop) {
1418 if (r == topActivity) {
1419 aboveTop = false;
1420 }
1421 continue;
1422 }
1423
1424 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
1425 if (DEBUG_VISBILITY) Slog.w(TAG, "Found orphaned starting window " + r);
1426 r.mStartingWindowShown = false;
1427 mWindowManager.removeAppStartingWindow(r.appToken);
1428 }
1429 }
1430 }
1431 }
1432
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001433 /**
1434 * Ensure that the top activity in the stack is resumed.
1435 *
1436 * @param prev The previously resumed activity, for when in the process
1437 * of pausing; can be null to call from elsewhere.
1438 *
1439 * @return Returns true if something is being resumed, or false if
1440 * nothing happened.
1441 */
1442 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001443 return resumeTopActivityLocked(prev, null);
1444 }
1445
1446 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001447 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001448 // Don't even start recursing.
1449 return false;
1450 }
1451
1452 boolean result = false;
1453 try {
1454 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001455 mStackSupervisor.inResumeTopActivity = true;
1456 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1457 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001458 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001459 }
Craig Mautner544efa72014-09-04 16:41:20 -07001460 result = resumeTopActivityInnerLocked(prev, options);
1461 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001462 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001463 }
1464 return result;
1465 }
1466
1467 final boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Craig Mautner5314a402013-09-26 12:40:16 -07001468 if (ActivityManagerService.DEBUG_LOCKSCREEN) mService.logLockScreen("");
1469
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001470 if (!mService.mBooting && !mService.mBooted) {
1471 // Not ready yet!
1472 return false;
1473 }
1474
Craig Mautnerdf88d732014-01-27 09:21:32 -08001475 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001476 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001477 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001478 // Do not resume this stack if its parent is not resumed.
1479 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1480 return false;
1481 }
1482
Craig Mautnera61bc652013-10-28 15:43:18 -07001483 cancelInitializingActivities();
1484
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001485 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001486 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001487
1488 // Remember how we'll process this pause/resume situation, and ensure
1489 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001490 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1491 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001492
Craig Mautner84984fa2014-06-19 11:19:20 -07001493 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001494 if (next == null) {
1495 // There are no more activities! Let's just start up the
1496 // Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001497 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001498 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001499 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001500 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001501 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1502 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1503 return isOnHomeDisplay() &&
Craig Mautner299f9602015-01-26 09:47:33 -08001504 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "noMoreActivities");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001505 }
1506
1507 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001508
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001509 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001510 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1511 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001512 // Make sure we have executed any pending transitions, since there
1513 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001514 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001515 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001516 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001517 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001518 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001519 return false;
1520 }
1521
Craig Mautner525f3d92013-05-07 14:01:50 -07001522 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001523 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001524 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001525 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001526 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001527 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001528 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001529 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001530 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001531 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001532 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001533 } else if (!isOnHomeDisplay()) {
1534 return false;
1535 } else if (!isHomeStack()){
1536 if (DEBUG_STATES) Slog.d(TAG,
Craig Mautnere0a38842013-12-16 16:14:02 -08001537 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001538 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1539 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
Craig Mautner299f9602015-01-26 09:47:33 -08001540 return mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001541 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001542 }
1543
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001544 // If we are sleeping, and there is no resumed activity, and the top
1545 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001546 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001547 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001548 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001549 // Make sure we have executed any pending transitions, since there
1550 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001551 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001552 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001553 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001554 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001555 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001556 return false;
1557 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001558
1559 // Make sure that the user who owns this activity is started. If not,
1560 // we will just leave it as is because someone should be bringing
1561 // another user's activities to the top of the stack.
1562 if (mService.mStartedUsers.get(next.userId) == null) {
1563 Slog.w(TAG, "Skipping resume of top activity " + next
1564 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001565 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001566 return false;
1567 }
1568
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001569 // The activity may be waiting for stop, but that is no longer
1570 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001571 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001572 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001573 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001574 mStackSupervisor.mWaitingVisibleActivities.remove(next);
louis_chang1110f552014-12-19 17:30:45 +08001575 next.waitingVisible = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001576
1577 if (DEBUG_SWITCH) Slog.v(TAG, "Resuming " + next);
1578
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001579 // If we are currently pausing an activity, then don't do anything
1580 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001581 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001582 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG,
1583 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001584 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001585 return false;
1586 }
1587
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001588 // Okay we are now going to start a switch, to 'next'. We may first
1589 // have to pause the current activity, but this is an important point
1590 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001591 // XXX "App Redirected" dialog is getting too many false positives
1592 // at this point, so turn off for now.
1593 if (false) {
1594 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1595 long now = SystemClock.uptimeMillis();
1596 final boolean inTime = mLastStartedActivity.startTime != 0
1597 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1598 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1599 final int nextUid = next.info.applicationInfo.uid;
1600 if (inTime && lastUid != nextUid
1601 && lastUid != next.launchedFromUid
1602 && mService.checkPermission(
1603 android.Manifest.permission.STOP_APP_SWITCHES,
1604 -1, next.launchedFromUid)
1605 != PackageManager.PERMISSION_GRANTED) {
1606 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1607 } else {
1608 next.startTime = now;
1609 mLastStartedActivity = next;
1610 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001611 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001612 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001613 mLastStartedActivity = next;
1614 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001615 }
Craig Mautner58547802013-03-05 08:23:53 -08001616
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001617 // We need to start pausing the current activity so the top one
1618 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001619 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1620 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001621 if (mResumedActivity != null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001622 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001623 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001624 }
1625 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001626 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1627 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001628 // At this point we want to put the upcoming activity's process
1629 // at the top of the LRU list, since we know we will be needing it
1630 // very soon and it would be a waste to let it get killed if it
1631 // happens to be sitting towards the end.
1632 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001633 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001634 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001635 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001636 return true;
1637 }
1638
Christopher Tated3f175c2012-06-14 14:16:54 -07001639 // If the most recent activity was noHistory but was only stopped rather
1640 // than stopped+finished because the device went to sleep, we need to make
1641 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001642 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001643 !mLastNoHistoryActivity.finishing) {
1644 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1645 " on new resume");
1646 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
1647 null, "no-history", false);
1648 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001649 }
1650
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001651 if (prev != null && prev != next) {
1652 if (!prev.waitingVisible && next != null && !next.nowVisible) {
1653 prev.waitingVisible = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001654 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001655 if (DEBUG_SWITCH) Slog.v(
1656 TAG, "Resuming top, waiting visible to hide: " + prev);
1657 } else {
1658 // The next activity is already visible, so hide the previous
1659 // activity's windows right now so we can show the new one ASAP.
1660 // We only do this if the previous is finishing, which should mean
1661 // it is on top of the one being resumed so hiding it quickly
1662 // is good. Otherwise, we want to do the normal route of allowing
1663 // the resumed activity to be shown so we can decide if the
1664 // previous should actually be hidden depending on whether the
1665 // new one is found to be full-screen or not.
1666 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001667 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001668 if (DEBUG_SWITCH) Slog.v(TAG, "Not waiting for visible to hide: "
1669 + prev + ", waitingVisible="
1670 + (prev != null ? prev.waitingVisible : null)
1671 + ", nowVisible=" + next.nowVisible);
1672 } else {
1673 if (DEBUG_SWITCH) Slog.v(TAG, "Previous already visible but still waiting to hide: "
1674 + prev + ", waitingVisible="
1675 + (prev != null ? prev.waitingVisible : null)
1676 + ", nowVisible=" + next.nowVisible);
1677 }
1678 }
1679 }
1680
Dianne Hackborne7f97212011-02-24 14:40:20 -08001681 // Launching this app's activity, make sure the app is no longer
1682 // considered stopped.
1683 try {
1684 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001685 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001686 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001687 } catch (IllegalArgumentException e) {
1688 Slog.w(TAG, "Failed trying to unstop package "
1689 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001690 }
1691
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001692 // We are starting up the next activity, so tell the window manager
1693 // that the previous one will be hidden soon. This way it can know
1694 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001695 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001696 if (prev != null) {
1697 if (prev.finishing) {
1698 if (DEBUG_TRANSITION) Slog.v(TAG,
1699 "Prepare close transition: prev=" + prev);
1700 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001701 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001702 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001703 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001704 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001705 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1706 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001707 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001708 mWindowManager.setAppWillBeHidden(prev.appToken);
1709 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001710 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001711 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001712 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001713 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001714 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001715 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001716 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001717 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001718 : next.mLaunchTaskBehind
1719 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1720 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001721 }
1722 }
1723 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001724 mWindowManager.setAppWillBeHidden(prev.appToken);
1725 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001726 }
Craig Mautner967212c2013-04-13 21:10:58 -07001727 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001728 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001729 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001730 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001731 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001732 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001733 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001734 }
1735 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001736
1737 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001738 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001739 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1740 if (opts != null) {
1741 resumeAnimOptions = opts.toBundle();
1742 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001743 next.applyOptionsLocked();
1744 } else {
1745 next.clearOptionsLocked();
1746 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001747
Craig Mautnercf910b02013-04-23 11:23:27 -07001748 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001749 if (next.app != null && next.app.thread != null) {
1750 if (DEBUG_SWITCH) Slog.v(TAG, "Resume running: " + next);
1751
1752 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001753 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001754
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001755 // schedule launch ticks to collect information about slow apps.
1756 next.startLaunchTickingLocked();
1757
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001758 ActivityRecord lastResumedActivity =
1759 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001760 ActivityState lastState = next.state;
1761
1762 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001763
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001764 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001765 next.state = ActivityState.RESUMED;
1766 mResumedActivity = next;
1767 next.task.touchActiveTime();
Craig Mautnerd2328952013-03-05 12:46:26 -08001768 mService.addRecentTaskLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001769 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001770 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001771 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001772
1773 // Have the window manager re-evaluate the orientation of
1774 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001775 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001776 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001777 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001778 mService.mConfiguration,
1779 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1780 if (config != null) {
1781 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001782 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001783 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001784 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001785
Craig Mautner525f3d92013-05-07 14:01:50 -07001786 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001787 // The configuration update wasn't able to keep the existing
1788 // instance of the activity, and instead started a new one.
1789 // We should be all done, but let's just make sure our activity
1790 // is still at the top and schedule another run if something
1791 // weird happened.
1792 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001793 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001794 "Activity config changed during resume: " + next
1795 + ", new next: " + nextNext);
1796 if (nextNext != next) {
1797 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001798 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001799 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001800 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001801 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001802 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001803 return true;
1804 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001805 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001806 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001807 }
Craig Mautner58547802013-03-05 08:23:53 -08001808
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001809 try {
1810 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001811 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001812 if (a != null) {
1813 final int N = a.size();
1814 if (!next.finishing && N > 0) {
1815 if (DEBUG_RESULTS) Slog.v(
1816 TAG, "Delivering results to " + next
1817 + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001818 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001819 }
1820 }
1821
1822 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001823 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001824 }
1825
Craig Mautner299f9602015-01-26 09:47:33 -08001826 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
1827 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001828
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001829 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001830 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001831 next.app.pendingUiClean = true;
Dianne Hackborna413dc02013-07-12 12:02:55 -07001832 next.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_TOP);
George Mount2c92c972014-03-20 09:38:23 -07001833 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001834 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001835 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001836
Craig Mautner0eea92c2013-05-16 13:35:39 -07001837 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001838
Craig Mautnerac6f8432013-07-17 13:24:59 -07001839 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001840 } catch (Exception e) {
1841 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001842 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1843 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001844 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001845 if (lastStack != null) {
1846 lastStack.mResumedActivity = lastResumedActivity;
1847 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001848 Slog.i(TAG, "Restarting because process died: " + next);
1849 if (!next.hasBeenLaunched) {
1850 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001851 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1852 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001853 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001854 next.appToken, next.packageName, next.theme,
1855 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001856 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1857 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 }
George Mount2c92c972014-03-20 09:38:23 -07001859 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001860 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001861 return true;
1862 }
1863
1864 // From this point on, if something goes wrong there is no way
1865 // to recover the activity.
1866 try {
1867 next.visible = true;
1868 completeResumeLocked(next);
1869 } catch (Exception e) {
1870 // If any exception gets thrown, toss away this
1871 // activity and try the next one.
1872 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001873 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001874 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001875 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001876 return true;
1877 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001878 next.stopped = false;
1879
1880 } else {
1881 // Whoops, need to restart this activity!
1882 if (!next.hasBeenLaunched) {
1883 next.hasBeenLaunched = true;
1884 } else {
1885 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001886 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001887 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001888 mService.compatibilityInfoForPackageLocked(
1889 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001890 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001891 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001892 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001893 }
1894 if (DEBUG_SWITCH) Slog.v(TAG, "Restarting: " + next);
1895 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001896 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07001897 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001898 }
1899
Craig Mautnercf910b02013-04-23 11:23:27 -07001900 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001901 return true;
1902 }
1903
riddle_hsuc215a4f2014-12-27 12:10:45 +08001904 private TaskRecord getNextTask(TaskRecord targetTask) {
1905 final int index = mTaskHistory.indexOf(targetTask);
1906 if (index >= 0) {
1907 final int numTasks = mTaskHistory.size();
1908 for (int i = index + 1; i < numTasks; ++i) {
1909 TaskRecord task = mTaskHistory.get(i);
1910 if (task.userId == targetTask.userId) {
1911 return task;
1912 }
1913 }
1914 }
1915 return null;
1916 }
1917
Craig Mautnerac6f8432013-07-17 13:24:59 -07001918 private void insertTaskAtTop(TaskRecord task) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08001919 // If the moving task is over home stack, transfer its return type to next task
1920 if (task.isOverHomeStack()) {
1921 final TaskRecord nextTask = getNextTask(task);
1922 if (nextTask != null) {
1923 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
1924 }
1925 }
1926
Craig Mautner9c85c202013-10-04 20:11:26 -07001927 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08001928 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08001929 if (isOnHomeDisplay()) {
1930 ActivityStack lastStack = mStackSupervisor.getLastStack();
1931 final boolean fromHome = lastStack.isHomeStack();
1932 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07001933 task.setTaskToReturnTo(fromHome
1934 ? lastStack.topTask() == null
1935 ? HOME_ACTIVITY_TYPE
1936 : lastStack.topTask().taskType
1937 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08001938 }
1939 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07001940 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07001941 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001942
Craig Mautnerac6f8432013-07-17 13:24:59 -07001943 mTaskHistory.remove(task);
1944 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07001945 int taskNdx = mTaskHistory.size();
Kenny Guy2a764942014-04-02 13:29:20 +01001946 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001947 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07001948 while (--taskNdx >= 0) {
1949 if (!isCurrentProfileLocked(mTaskHistory.get(taskNdx).userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001950 break;
1951 }
1952 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001953 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07001954 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001955 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001956 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001957 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001958
Craig Mautner8849a5e2013-04-02 16:41:03 -07001959 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001960 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001961 TaskRecord rTask = r.task;
1962 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07001963 // mLaunchTaskBehind tasks get placed at the back of the task stack.
1964 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08001965 // Last activity in task had been removed or ActivityManagerService is reusing task.
1966 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001967 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001968 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001969 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001970 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001971 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001972 if (!newTask) {
1973 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001974 boolean startIt = true;
1975 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1976 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08001977 if (task.getTopActivity() == null) {
1978 // All activities in task are finishing.
1979 continue;
1980 }
Craig Mautner70a86932013-02-28 22:37:44 -08001981 if (task == r.task) {
1982 // Here it is! Now, if this is not yet visible to the
1983 // user, then just add it without starting; it will
1984 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08001985 if (!startIt) {
1986 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
1987 + task, new RuntimeException("here").fillInStackTrace());
1988 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001989 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001990 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
1991 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001992 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautnerbb742462014-07-07 15:28:55 -07001993 r.userId, r.info.configChanges, task.voiceSession != null,
1994 r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001995 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001996 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001997 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001998 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001999 return;
2000 }
2001 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002002 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002003 startIt = false;
2004 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002005 }
2006 }
2007
2008 // Place a new activity at top of stack, so it is next to interact
2009 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002010
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002011 // If we are not placing the new activity frontmost, we do not want
2012 // to deliver the onUserLeaving callback to the actual frontmost
2013 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002014 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002015 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08002016 if (DEBUG_USER_LEAVING) Slog.v(TAG,
2017 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002018 }
Craig Mautner70a86932013-02-28 22:37:44 -08002019
2020 task = r.task;
2021
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002022 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002023 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002024 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002025 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002026 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002027
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002028 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002029 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002030 // We want to show the starting preview window if we are
2031 // switching to a new task, or the next activity's process is
2032 // not currently running.
2033 boolean showStartingIcon = newTask;
2034 ProcessRecord proc = r.app;
2035 if (proc == null) {
2036 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2037 }
2038 if (proc == null || proc.thread == null) {
2039 showStartingIcon = true;
2040 }
2041 if (DEBUG_TRANSITION) Slog.v(TAG,
2042 "Prepare open transition: starting " + r);
2043 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002044 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002045 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002046 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002047 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002048 ? r.mLaunchTaskBehind
2049 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2050 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002051 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002052 mNoAnimActivities.remove(r);
2053 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002054 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08002055 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002056 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002057 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002058 boolean doShow = true;
2059 if (newTask) {
2060 // Even though this activity is starting fresh, we still need
2061 // to reset it to make sure we apply affinities to move any
2062 // existing activities from other tasks in to it.
2063 // If the caller has requested that the target task be
2064 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002065 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002066 resetTaskIfNeededLocked(r, r);
2067 doShow = topRunningNonDelayedActivityLocked(null) == r;
2068 }
George Mount70778d72014-07-01 16:33:45 -07002069 } else if (options != null && new ActivityOptions(options).getAnimationType()
2070 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2071 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002072 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002073 if (r.mLaunchTaskBehind) {
2074 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2075 // tell WindowManager that r is visible even though it is at the back of the stack.
2076 mWindowManager.setAppVisibility(r.appToken, true);
2077 ensureActivitiesVisibleLocked(null, 0);
2078 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002079 // Figure out if we are transitioning from another activity that is
2080 // "has the same starting icon" as the next one. This allows the
2081 // window manager to keep the previous window it had previously
2082 // created, if it still had one.
2083 ActivityRecord prev = mResumedActivity;
2084 if (prev != null) {
2085 // We don't want to reuse the previous starting preview if:
2086 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002087 if (prev.task != r.task) {
2088 prev = null;
2089 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002090 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002091 else if (prev.nowVisible) {
2092 prev = null;
2093 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002094 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002095 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002096 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002097 mService.compatibilityInfoForPackageLocked(
2098 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002099 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002100 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002101 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002102 }
2103 } else {
2104 // If this is the first activity, don't do any fancy animations,
2105 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002106 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08002107 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002108 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002109 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002110 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002111 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002112 }
2113 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002114 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002115 }
2116
2117 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002118 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002119 }
2120 }
2121
Dianne Hackbornbe707852011-11-11 14:32:10 -08002122 final void validateAppTokensLocked() {
2123 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002124 mValidateAppTokens.ensureCapacity(numActivities());
2125 final int numTasks = mTaskHistory.size();
2126 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2127 TaskRecord task = mTaskHistory.get(taskNdx);
2128 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002129 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002130 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002131 }
Craig Mautner000f0022013-02-26 15:04:29 -08002132 TaskGroup group = new TaskGroup();
2133 group.taskId = task.taskId;
2134 mValidateAppTokens.add(group);
2135 final int numActivities = activities.size();
2136 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2137 final ActivityRecord r = activities.get(activityNdx);
2138 group.tokens.add(r.appToken);
2139 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002140 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002141 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002142 }
2143
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002144 /**
2145 * Perform a reset of the given task, if needed as part of launching it.
2146 * Returns the new HistoryRecord at the top of the task.
2147 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002148 /**
2149 * Helper method for #resetTaskIfNeededLocked.
2150 * We are inside of the task being reset... we'll either finish this activity, push it out
2151 * for another task, or leave it as-is.
2152 * @param task The task containing the Activity (taskTop) that might be reset.
2153 * @param forceReset
2154 * @return An ActivityOptions that needs to be processed.
2155 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002156 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002157 ActivityOptions topOptions = null;
2158
2159 int replyChainEnd = -1;
2160 boolean canMoveOptions = true;
2161
2162 // We only do this for activities that are not the root of the task (since if we finish
2163 // the root, we may no longer have the task!).
2164 final ArrayList<ActivityRecord> activities = task.mActivities;
2165 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002166 final int rootActivityNdx = task.findEffectiveRootIndex();
2167 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002168 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002169 if (target.frontOfTask)
2170 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002171
2172 final int flags = target.info.flags;
2173 final boolean finishOnTaskLaunch =
2174 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2175 final boolean allowTaskReparenting =
2176 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2177 final boolean clearWhenTaskReset =
2178 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2179
2180 if (!finishOnTaskLaunch
2181 && !clearWhenTaskReset
2182 && target.resultTo != null) {
2183 // If this activity is sending a reply to a previous
2184 // activity, we can't do anything with it now until
2185 // we reach the start of the reply chain.
2186 // XXX note that we are assuming the result is always
2187 // to the previous activity, which is almost always
2188 // the case but we really shouldn't count on.
2189 if (replyChainEnd < 0) {
2190 replyChainEnd = i;
2191 }
2192 } else if (!finishOnTaskLaunch
2193 && !clearWhenTaskReset
2194 && allowTaskReparenting
2195 && target.taskAffinity != null
2196 && !target.taskAffinity.equals(task.affinity)) {
2197 // If this activity has an affinity for another
2198 // task, then we need to move it out of here. We will
2199 // move it as far out of the way as possible, to the
2200 // bottom of the activity stack. This also keeps it
2201 // correctly ordered with any activities we previously
2202 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002203 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002204 final ActivityRecord bottom =
2205 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002206 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002207 if (bottom != null && target.taskAffinity != null
2208 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002209 // If the activity currently at the bottom has the
2210 // same task affinity as the one we are moving,
2211 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002212 targetTask = bottom.task;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002213 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002214 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002215 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002216 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002217 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002218 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002219 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
2220 + " out to new task " + target.task);
2221 }
2222
Craig Mautnere3a74d52013-02-22 14:14:58 -08002223 final int targetTaskId = targetTask.taskId;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002224 mWindowManager.setAppGroupId(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002225
Craig Mautner525f3d92013-05-07 14:01:50 -07002226 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002227 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2228 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002229 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002230 if (p.finishing) {
2231 continue;
2232 }
2233
Craig Mautnere3a74d52013-02-22 14:14:58 -08002234 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002235 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002236 topOptions = p.takeOptionsLocked();
2237 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002238 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002239 }
2240 }
2241 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08002242 + task + " adding to task=" + targetTask
2243 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08002244 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
2245 + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002246 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002247 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002248
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002249 mWindowManager.setAppGroupId(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002250 }
2251
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002252 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002253 if (VALIDATE_TOKENS) {
2254 validateAppTokensLocked();
2255 }
2256
2257 replyChainEnd = -1;
2258 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2259 // If the activity should just be removed -- either
2260 // because it asks for it, or the task should be
2261 // cleared -- then finish it and anything that is
2262 // part of its reply chain.
2263 int end;
2264 if (clearWhenTaskReset) {
2265 // In this case, we want to finish this activity
2266 // and everything above it, so be sneaky and pretend
2267 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002268 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002269 } else if (replyChainEnd < 0) {
2270 end = i;
2271 } else {
2272 end = replyChainEnd;
2273 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002274 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002275 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002276 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002277 if (p.finishing) {
2278 continue;
2279 }
2280 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002281 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002282 topOptions = p.takeOptionsLocked();
2283 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002284 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002285 }
2286 }
Craig Mautner58547802013-03-05 08:23:53 -08002287 if (DEBUG_TASKS) Slog.w(TAG,
2288 "resetTaskIntendedTask: calling finishActivity on " + p);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002289 if (finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002290 end--;
2291 srcPos--;
2292 }
2293 }
2294 replyChainEnd = -1;
2295 } else {
2296 // If we were in the middle of a chain, well the
2297 // activity that started it all doesn't want anything
2298 // special, so leave it all as-is.
2299 replyChainEnd = -1;
2300 }
2301 }
2302
2303 return topOptions;
2304 }
2305
2306 /**
2307 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2308 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2309 * @param affinityTask The task we are looking for an affinity to.
2310 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2311 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2312 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2313 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002314 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002315 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002316 int replyChainEnd = -1;
2317 final int taskId = task.taskId;
2318 final String taskAffinity = task.affinity;
2319
2320 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2321 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002322 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2323
2324 // Do not operate on or below the effective root Activity.
2325 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002326 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002327 if (target.frontOfTask)
2328 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002329
2330 final int flags = target.info.flags;
2331 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2332 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2333
2334 if (target.resultTo != null) {
2335 // If this activity is sending a reply to a previous
2336 // activity, we can't do anything with it now until
2337 // we reach the start of the reply chain.
2338 // XXX note that we are assuming the result is always
2339 // to the previous activity, which is almost always
2340 // the case but we really shouldn't count on.
2341 if (replyChainEnd < 0) {
2342 replyChainEnd = i;
2343 }
2344 } else if (topTaskIsHigher
2345 && allowTaskReparenting
2346 && taskAffinity != null
2347 && taskAffinity.equals(target.taskAffinity)) {
2348 // This activity has an affinity for our task. Either remove it if we are
2349 // clearing or move it over to our task. Note that
2350 // we currently punt on the case where we are resetting a
2351 // task that is not at the top but who has activities above
2352 // with an affinity to it... this is really not a normal
2353 // case, and we will need to later pull that task to the front
2354 // and usually at that point we will do the reset and pick
2355 // up those remaining activities. (This only happens if
2356 // someone starts an activity in a new task from an activity
2357 // in a task that is not currently on top.)
2358 if (forceReset || finishOnTaskLaunch) {
2359 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2360 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2361 for (int srcPos = start; srcPos >= i; --srcPos) {
2362 final ActivityRecord p = activities.get(srcPos);
2363 if (p.finishing) {
2364 continue;
2365 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08002366 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "reset", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002367 }
2368 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002369 if (taskInsertionPoint < 0) {
2370 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002371
Craig Mautner77878772013-03-04 19:46:24 -08002372 }
Craig Mautner77878772013-03-04 19:46:24 -08002373
2374 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2375 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2376 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2377 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002378 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002379 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002380 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002381
Craig Mautnere3a74d52013-02-22 14:14:58 -08002382 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2383 + " to stack at " + task,
2384 new RuntimeException("here").fillInStackTrace());
2385 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2386 + " in to resetting task " + task);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002387 mWindowManager.setAppGroupId(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002388 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002389 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002390 if (VALIDATE_TOKENS) {
2391 validateAppTokensLocked();
2392 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002393
2394 // Now we've moved it in to place... but what if this is
2395 // a singleTop activity and we have put it on top of another
2396 // instance of the same activity? Then we drop the instance
2397 // below so it remains singleTop.
2398 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2399 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002400 int targetNdx = taskActivities.indexOf(target);
2401 if (targetNdx > 0) {
2402 ActivityRecord p = taskActivities.get(targetNdx - 1);
2403 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002404 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2405 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002406 }
2407 }
2408 }
2409 }
2410
2411 replyChainEnd = -1;
2412 }
2413 }
Craig Mautner77878772013-03-04 19:46:24 -08002414 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002415 }
2416
Craig Mautner8849a5e2013-04-02 16:41:03 -07002417 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002418 ActivityRecord newActivity) {
2419 boolean forceReset =
2420 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2421 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2422 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2423 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2424 forceReset = true;
2425 }
2426 }
2427
2428 final TaskRecord task = taskTop.task;
2429
2430 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2431 * for remaining tasks. Used for later tasks to reparent to task. */
2432 boolean taskFound = false;
2433
2434 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2435 ActivityOptions topOptions = null;
2436
Craig Mautner77878772013-03-04 19:46:24 -08002437 // Preserve the location for reparenting in the new task.
2438 int reparentInsertionPoint = -1;
2439
Craig Mautnere3a74d52013-02-22 14:14:58 -08002440 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2441 final TaskRecord targetTask = mTaskHistory.get(i);
2442
2443 if (targetTask == task) {
2444 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2445 taskFound = true;
2446 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002447 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2448 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002449 }
2450 }
2451
Craig Mautner70a86932013-02-28 22:37:44 -08002452 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002453 if (taskNdx >= 0) {
2454 do {
2455 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2456 } while (taskTop == null && taskNdx >= 0);
2457 }
Craig Mautner70a86932013-02-28 22:37:44 -08002458
Craig Mautnere3a74d52013-02-22 14:14:58 -08002459 if (topOptions != null) {
2460 // If we got some ActivityOptions from an activity on top that
2461 // was removed from the task, propagate them to the new real top.
2462 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002463 taskTop.updateOptionsLocked(topOptions);
2464 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002465 topOptions.abort();
2466 }
2467 }
2468
2469 return taskTop;
2470 }
2471
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002472 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2473 String resultWho, int requestCode, int resultCode, Intent data) {
2474
2475 if (callingUid > 0) {
2476 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002477 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002478 }
2479
2480 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2481 + " : who=" + resultWho + " req=" + requestCode
2482 + " res=" + resultCode + " data=" + data);
2483 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2484 try {
2485 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2486 list.add(new ResultInfo(resultWho, requestCode,
2487 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002488 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002489 return;
2490 } catch (Exception e) {
2491 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2492 }
2493 }
2494
2495 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2496 }
2497
Craig Mautner299f9602015-01-26 09:47:33 -08002498 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002499 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2500 ActivityRecord next = topRunningActivityLocked(null);
2501 if (next != r) {
2502 final TaskRecord task = r.task;
Craig Mautner84984fa2014-06-19 11:19:20 -07002503 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08002504 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(),
2505 reason + " adjustFocus");
Craig Mautner04f0b702013-10-22 12:31:01 -07002506 }
2507 }
Winson Chung648c83b2014-04-28 15:11:56 -07002508 ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
2509 if (top != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002510 mService.setFocusedActivityLocked(top, reason + " adjustTopFocus");
Winson Chung648c83b2014-04-28 15:11:56 -07002511 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002512 }
2513 }
2514
Craig Mautnerf3333272013-04-22 10:55:53 -07002515 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002516 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2517 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2518 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2519 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002520 if (!mService.isSleeping()) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002521 if (DEBUG_STATES) {
2522 Slog.d(TAG, "no-history finish of " + r);
2523 }
2524 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002525 "no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002526 } else {
2527 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2528 + " on stop because we're just sleeping");
2529 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002530 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002531 }
2532
2533 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002534 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002535 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002536 try {
2537 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002538 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2539 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002540 r.state = ActivityState.STOPPING;
2541 if (DEBUG_VISBILITY) Slog.v(
2542 TAG, "Stopping visible=" + r.visible + " for " + r);
2543 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002544 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002545 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002546 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002547 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002548 r.setSleeping(true);
2549 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002550 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002551 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002552 } catch (Exception e) {
2553 // Maybe just ignore exceptions here... if the process
2554 // has crashed, our death notification will clean things
2555 // up.
2556 Slog.w(TAG, "Exception thrown during pause", e);
2557 // Just in case, assume it to be stopped.
2558 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002559 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002560 r.state = ActivityState.STOPPED;
2561 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002562 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002563 }
2564 }
2565 }
2566 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002567
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002568 /**
2569 * @return Returns true if the activity is being finished, false if for
2570 * some reason it is being left as-is.
2571 */
2572 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002573 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002574 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002575 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002576 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002577 + ", result=" + resultCode + ", data=" + resultData
2578 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002579 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002580 return false;
2581 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002582
Craig Mautnerd44711d2013-02-23 11:24:36 -08002583 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002584 return true;
2585 }
2586
Craig Mautnerd2328952013-03-05 12:46:26 -08002587 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002588 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2589 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2590 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2591 ActivityRecord r = activities.get(activityNdx);
2592 if (r.resultTo == self && r.requestCode == requestCode) {
2593 if ((r.resultWho == null && resultWho == null) ||
2594 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2595 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2596 false);
2597 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002598 }
2599 }
2600 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002601 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002602 }
2603
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002604 final void finishTopRunningActivityLocked(ProcessRecord app) {
2605 ActivityRecord r = topRunningActivityLocked(null);
2606 if (r != null && r.app == app) {
2607 // If the top running activity is from this crashing
2608 // process, then terminate it to avoid getting in a loop.
Sungsoo Lim48248c82014-12-24 17:30:00 +09002609 Slog.w(TAG, " Force finishing activity 1 "
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002610 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002611 int taskNdx = mTaskHistory.indexOf(r.task);
2612 int activityNdx = r.task.mActivities.indexOf(r);
Craig Mautnerd2328952013-03-05 12:46:26 -08002613 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002614 // Also terminate any activities below it that aren't yet
2615 // stopped, to avoid a situation where one will get
2616 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002617 --activityNdx;
2618 if (activityNdx < 0) {
2619 do {
2620 --taskNdx;
2621 if (taskNdx < 0) {
2622 break;
2623 }
2624 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2625 } while (activityNdx < 0);
2626 }
2627 if (activityNdx >= 0) {
2628 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002629 if (r.state == ActivityState.RESUMED
2630 || r.state == ActivityState.PAUSING
2631 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002632 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Sungsoo Lim48248c82014-12-24 17:30:00 +09002633 Slog.w(TAG, " Force finishing activity 2 "
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002634 + r.intent.getComponent().flattenToShortString());
Craig Mautnerd2328952013-03-05 12:46:26 -08002635 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "crashed", false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002636 }
2637 }
2638 }
2639 }
2640 }
2641
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002642 final void finishVoiceTask(IVoiceInteractionSession session) {
2643 IBinder sessionBinder = session.asBinder();
2644 boolean didOne = false;
2645 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2646 TaskRecord tr = mTaskHistory.get(taskNdx);
2647 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2648 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2649 ActivityRecord r = tr.mActivities.get(activityNdx);
2650 if (!r.finishing) {
2651 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2652 false);
2653 didOne = true;
2654 }
2655 }
2656 }
2657 }
2658 if (didOne) {
2659 mService.updateOomAdjLocked();
2660 }
2661 }
2662
Craig Mautnerd2328952013-03-05 12:46:26 -08002663 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002664 ArrayList<ActivityRecord> activities = r.task.mActivities;
2665 for (int index = activities.indexOf(r); index >= 0; --index) {
2666 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002667 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002668 break;
2669 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002670 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002671 }
2672 return true;
2673 }
2674
Dianne Hackborn5c607432012-02-28 14:44:19 -08002675 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2676 // send the result
2677 ActivityRecord resultTo = r.resultTo;
2678 if (resultTo != null) {
2679 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2680 + " who=" + r.resultWho + " req=" + r.requestCode
2681 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002682 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002683 if (resultData != null) {
Nicolas Prevotd1c99b12014-07-04 16:56:17 +01002684 resultData.setContentUserHint(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002685 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002686 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002687 if (r.info.applicationInfo.uid > 0) {
2688 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2689 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002690 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002691 }
2692 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2693 resultData);
2694 r.resultTo = null;
2695 }
2696 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2697
2698 // Make sure this HistoryRecord is not holding on to other resources,
2699 // because clients have remote IPC references to this object so we
2700 // can't assume that will go away and want to avoid circular IPC refs.
2701 r.results = null;
2702 r.pendingResults = null;
2703 r.newIntents = null;
2704 r.icicle = null;
2705 }
2706
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002707 /**
2708 * @return Returns true if this activity has been removed from the history
2709 * list, or false if it is still in the list and will be removed later.
2710 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002711 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2712 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002713 if (r.finishing) {
2714 Slog.w(TAG, "Duplicate finish request for " + r);
2715 return false;
2716 }
2717
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002718 r.makeFinishing();
Craig Mautneraea74a52014-03-08 14:23:10 -08002719 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002720 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002721 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002722 task.taskId, r.shortComponentName, reason);
2723 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002724 final int index = activities.indexOf(r);
2725 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002726 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002727 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002728 // If the caller asked that this activity (and all above it)
2729 // be cleared when the task is reset, don't lose that information,
2730 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002731 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002732 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002733 }
2734 }
2735
2736 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002737
Craig Mautner299f9602015-01-26 09:47:33 -08002738 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002739
Dianne Hackborn5c607432012-02-28 14:44:19 -08002740 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002741
Craig Mautnerde4ef022013-04-07 19:01:33 -07002742 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002743 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002744 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002745 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002746 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002747 ? AppTransition.TRANSIT_TASK_CLOSE
2748 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002749
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002750 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002751 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002752
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002753 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002754 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2755 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002756 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002757 }
2758
Craig Mautneraea74a52014-03-08 14:23:10 -08002759 if (endTask) {
2760 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
2761 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002762 } else if (r.state != ActivityState.PAUSING) {
2763 // If the activity is PAUSING, we will complete the finish once
2764 // it is done pausing; else we can just directly finish it here.
2765 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002766 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002767 } else {
2768 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2769 }
2770
2771 return false;
2772 }
2773
Craig Mautnerf3333272013-04-22 10:55:53 -07002774 static final int FINISH_IMMEDIATELY = 0;
2775 static final int FINISH_AFTER_PAUSE = 1;
2776 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002777
Craig Mautnerf3333272013-04-22 10:55:53 -07002778 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002779 // First things first: if this activity is currently visible,
2780 // and the resumed activity is not yet visible, then hold off on
2781 // finishing until the resumed one becomes visible.
2782 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002783 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2784 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002785 if (mStackSupervisor.mStoppingActivities.size() > 3
2786 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002787 // If we already have a few activities waiting to stop,
2788 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002789 // them out. Or if r is the last of activity of the last task the stack
2790 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002791 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002792 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002793 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002794 }
2795 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002796 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2797 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002798 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002799 if (oomAdj) {
2800 mService.updateOomAdjLocked();
2801 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002802 return r;
2803 }
2804
2805 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002806 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002807 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002808 mStackSupervisor.mWaitingVisibleActivities.remove(r);
louis_chang1110f552014-12-19 17:30:45 +08002809 r.waitingVisible = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002810 if (mResumedActivity == r) {
2811 mResumedActivity = null;
2812 }
2813 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002814 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002815 r.state = ActivityState.FINISHING;
2816
2817 if (mode == FINISH_IMMEDIATELY
2818 || prevState == ActivityState.STOPPED
2819 || prevState == ActivityState.INITIALIZING) {
2820 // If this activity is already stopped, we can just finish
2821 // it right now.
Craig Mautnerd163e752014-06-13 17:18:47 -07002822 r.makeFinishing();
Craig Mautneree2e45a2014-06-27 12:10:03 -07002823 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002824 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002825 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002826 }
Craig Mautnerd163e752014-06-13 17:18:47 -07002827 if (DEBUG_CONTAINERS) Slog.d(TAG,
2828 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
2829 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002830 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002831 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002832
2833 // Need to go through the full pause cycle to get this
2834 // activity into the stopped state and then finish it.
2835 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002836 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002837 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002838 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002839 return r;
2840 }
2841
Craig Mautneree36c772014-07-16 14:56:05 -07002842 void finishAllActivitiesLocked(boolean immediately) {
2843 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002844 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2845 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2846 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2847 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07002848 noActivitiesInStack = false;
2849 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002850 continue;
2851 }
Craig Mautneree36c772014-07-16 14:56:05 -07002852 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002853 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2854 }
2855 }
Craig Mautneree36c772014-07-16 14:56:05 -07002856 if (noActivitiesInStack) {
2857 mActivityContainer.onTaskListEmptyLocked();
2858 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002859 }
2860
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002861 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
2862 // Basic case: for simple app-centric recents, we need to recreate
2863 // the task if the affinity has changed.
2864 if (srec == null || srec.task.affinity == null ||
2865 !srec.task.affinity.equals(destAffinity)) {
2866 return true;
2867 }
2868 // Document-centric case: an app may be split in to multiple documents;
2869 // they need to re-create their task if this current activity is the root
2870 // of a document, unless simply finishing it will return them to the the
2871 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07002872 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
2873 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002874 // Okay, this activity is at the root of its task. What to do, what to do...
2875 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
2876 // Finishing won't return to an application, so we need to recreate.
2877 return true;
2878 }
2879 // We now need to get the task below it to determine what to do.
2880 int taskIdx = mTaskHistory.indexOf(srec.task);
2881 if (taskIdx <= 0) {
2882 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
2883 return false;
2884 }
2885 if (taskIdx == 0) {
2886 // At the bottom of the stack, nothing to go back to.
2887 return true;
2888 }
2889 TaskRecord prevTask = mTaskHistory.get(taskIdx);
2890 if (!srec.task.affinity.equals(prevTask.affinity)) {
2891 // These are different apps, so need to recreate.
2892 return true;
2893 }
2894 }
2895 return false;
2896 }
2897
Craig Mautnerd2328952013-03-05 12:46:26 -08002898 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002899 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002900 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002901 final TaskRecord task = srec.task;
2902 final ArrayList<ActivityRecord> activities = task.mActivities;
2903 final int start = activities.indexOf(srec);
2904 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002905 return false;
2906 }
2907 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002908 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002909 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002910 final ComponentName dest = destIntent.getComponent();
2911 if (start > 0 && dest != null) {
2912 for (int i = finishTo; i >= 0; i--) {
2913 ActivityRecord r = activities.get(i);
2914 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002915 r.info.name.equals(dest.getClassName())) {
2916 finishTo = i;
2917 parent = r;
2918 foundParentInTask = true;
2919 break;
2920 }
2921 }
2922 }
2923
2924 IActivityController controller = mService.mController;
2925 if (controller != null) {
2926 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2927 if (next != null) {
2928 // ask watcher if this is allowed
2929 boolean resumeOK = true;
2930 try {
2931 resumeOK = controller.activityResuming(next.packageName);
2932 } catch (RemoteException e) {
2933 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002934 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002935 }
2936
2937 if (!resumeOK) {
2938 return false;
2939 }
2940 }
2941 }
2942 final long origId = Binder.clearCallingIdentity();
2943 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002944 ActivityRecord r = activities.get(i);
2945 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002946 // Only return the supplied result for the first activity finished
2947 resultCode = Activity.RESULT_CANCELED;
2948 resultData = null;
2949 }
2950
2951 if (parent != null && foundParentInTask) {
2952 final int parentLaunchMode = parent.info.launchMode;
2953 final int destIntentFlags = destIntent.getFlags();
2954 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2955 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2956 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2957 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08002958 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
2959 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002960 } else {
2961 try {
2962 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2963 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002964 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002965 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002966 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborn95465202014-09-15 16:21:55 -07002967 -1, parent.launchedFromUid, 0, null, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002968 foundParentInTask = res == ActivityManager.START_SUCCESS;
2969 } catch (RemoteException e) {
2970 foundParentInTask = false;
2971 }
2972 requestFinishActivityLocked(parent.appToken, resultCode,
2973 resultData, "navigate-up", true);
2974 }
2975 }
2976 Binder.restoreCallingIdentity(origId);
2977 return foundParentInTask;
2978 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002979 /**
2980 * Perform the common clean-up of an activity record. This is called both
2981 * as part of destroyActivityLocked() (when destroying the client-side
2982 * representation) and cleaning things up as a result of its hosting
2983 * processing going away, in which case there is no remaining client-side
2984 * state to destroy so only the cleanup here is needed.
2985 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002986 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
2987 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002988 if (mResumedActivity == r) {
2989 mResumedActivity = null;
2990 }
Craig Mautner1872ce32014-03-28 23:05:42 +00002991 if (mPausingActivity == r) {
2992 mPausingActivity = null;
2993 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07002994 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002995
2996 r.configDestroy = false;
2997 r.frozenBeforeDestroy = false;
2998
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002999 if (setState) {
3000 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
3001 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003002 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003003 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003004 }
3005
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003006 // Make sure this record is no longer in the pending finishes list.
3007 // This could happen, for example, if we are trimming activities
3008 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003009 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003010 mStackSupervisor.mWaitingVisibleActivities.remove(r);
louis_chang1110f552014-12-19 17:30:45 +08003011 r.waitingVisible = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07003012
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003013 // Remove any pending results.
3014 if (r.finishing && r.pendingResults != null) {
3015 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3016 PendingIntentRecord rec = apr.get();
3017 if (rec != null) {
3018 mService.cancelIntentSenderLocked(rec, false);
3019 }
3020 }
3021 r.pendingResults = null;
3022 }
3023
3024 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003025 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003026 }
3027
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003028 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003029 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003030 if (getVisibleBehindActivity() == r) {
3031 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003032 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003033 }
3034
3035 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003036 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003037 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003038 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003039 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003040 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003041 }
3042
Craig Mautner299f9602015-01-26 09:47:33 -08003043 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003044 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003045 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
3046 r.makeFinishing();
3047 if (DEBUG_ADD_REMOVE) {
3048 RuntimeException here = new RuntimeException("here");
3049 here.fillInStackTrace();
3050 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003051 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003052 r.takeFromHistory();
3053 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003054 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003055 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003056 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003057 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003058 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003059 if (VALIDATE_TOKENS) {
3060 validateAppTokensLocked();
3061 }
Craig Mautner312ba862014-02-10 17:55:01 -08003062 final TaskRecord task = r.task;
3063 if (task != null && task.removeActivity(r)) {
3064 if (DEBUG_STACK) Slog.i(TAG,
3065 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003066 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3067 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003068 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003069 }
Craig Mautner299f9602015-01-26 09:47:33 -08003070 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003071 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003072 cleanUpActivityServicesLocked(r);
3073 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003074 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003075
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003076 /**
3077 * Perform clean-up of service connections in an activity record.
3078 */
3079 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3080 // Throw away any services that have been bound by this activity.
3081 if (r.connections != null) {
3082 Iterator<ConnectionRecord> it = r.connections.iterator();
3083 while (it.hasNext()) {
3084 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003085 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003086 }
3087 r.connections = null;
3088 }
3089 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003090
Craig Mautneree2e45a2014-06-27 12:10:03 -07003091 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003092 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003093 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003094 mHandler.sendMessage(msg);
3095 }
3096
Craig Mautneree2e45a2014-06-27 12:10:03 -07003097 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003098 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003099 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003100 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3101 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3102 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3103 final ActivityRecord r = activities.get(activityNdx);
3104 if (r.finishing) {
3105 continue;
3106 }
3107 if (r.fullscreen) {
3108 lastIsOpaque = true;
3109 }
3110 if (owner != null && r.app != owner) {
3111 continue;
3112 }
3113 if (!lastIsOpaque) {
3114 continue;
3115 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003116 if (r.isDestroyable()) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003117 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3118 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003119 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003120 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003121 activityRemoved = true;
3122 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003123 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003124 }
3125 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003126 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003127 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003128 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003129 }
3130
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003131 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3132 if (r.isDestroyable()) {
3133 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3134 + " resumed=" + mResumedActivity
3135 + " pausing=" + mPausingActivity + " for reason " + reason);
3136 return destroyActivityLocked(r, true, reason);
3137 }
3138 return false;
3139 }
3140
3141 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3142 String reason) {
3143 // Iterate over tasks starting at the back (oldest) first.
3144 if (DEBUG_RELEASE) Slog.d(TAG, "Trying to release some activities in " + app);
3145 int maxTasks = tasks.size() / 4;
3146 if (maxTasks < 1) {
3147 maxTasks = 1;
3148 }
3149 int numReleased = 0;
3150 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3151 final TaskRecord task = mTaskHistory.get(taskNdx);
3152 if (!tasks.contains(task)) {
3153 continue;
3154 }
3155 if (DEBUG_RELEASE) Slog.d(TAG, "Looking for activities to release in " + task);
3156 int curNum = 0;
3157 final ArrayList<ActivityRecord> activities = task.mActivities;
3158 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3159 final ActivityRecord activity = activities.get(actNdx);
3160 if (activity.app == app && activity.isDestroyable()) {
3161 if (DEBUG_RELEASE) Slog.v(TAG, "Destroying " + activity
3162 + " in state " + activity.state + " resumed=" + mResumedActivity
3163 + " pausing=" + mPausingActivity + " for reason " + reason);
3164 destroyActivityLocked(activity, true, reason);
3165 if (activities.get(actNdx) != activity) {
3166 // Was removed from list, back up so we don't miss the next one.
3167 actNdx--;
3168 }
3169 curNum++;
3170 }
3171 }
3172 if (curNum > 0) {
3173 numReleased += curNum;
3174 maxTasks--;
3175 if (mTaskHistory.get(taskNdx) != task) {
3176 // The entire task got removed, back up so we don't miss the next one.
3177 taskNdx--;
3178 }
3179 }
3180 }
3181 if (DEBUG_RELEASE) Slog.d(TAG, "Done releasing: did " + numReleased + " activities");
3182 return numReleased;
3183 }
3184
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003185 /**
3186 * Destroy the current CLIENT SIDE instance of an activity. This may be
3187 * called both when actually finishing an activity, or when performing
3188 * a configuration switch where we destroy the current client-side object
3189 * but then create a new client-side object for this same HistoryRecord.
3190 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003191 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003192 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003193 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003194 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
3195 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003196 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003197 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003198
3199 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003200
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003201 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003202
3203 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003204
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003205 if (hadApp) {
3206 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003207 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003208 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3209 mService.mHeavyWeightProcess = null;
3210 mService.mHandler.sendEmptyMessage(
3211 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3212 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003213 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003214 // Update any services we are bound to that might care about whether
3215 // their client may have activities.
3216 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003217 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003218 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003219 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003220 }
3221 }
3222
3223 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003224
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003225 try {
3226 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003227 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003228 r.configChangeFlags);
3229 } catch (Exception e) {
3230 // We can just ignore exceptions here... if the process
3231 // has crashed, our death notification will clean things
3232 // up.
3233 //Slog.w(TAG, "Exception thrown during finish", e);
3234 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003235 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003236 removedFromHistory = true;
3237 skipDestroy = true;
3238 }
3239 }
3240
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003241 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003242
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003243 // If the activity is finishing, we need to wait on removing it
3244 // from the list to give it a chance to do its cleanup. During
3245 // that time it may make calls back with its token so we need to
3246 // be able to find it on the list and so we don't want to remove
3247 // it from the list yet. Otherwise, we can just immediately put
3248 // it in the destroyed state since we are not removing it from the
3249 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003250 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003251 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
3252 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003253 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003254 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003255 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3256 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003257 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003258 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003259 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003260 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003261 }
3262 } else {
3263 // remove this record from the history.
3264 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003265 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003266 removedFromHistory = true;
3267 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003268 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003269 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003270 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003271 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003272 }
3273 }
3274
3275 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003276
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003277 if (!mLRUActivities.remove(r) && hadApp) {
3278 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3279 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003280
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003281 return removedFromHistory;
3282 }
3283
Craig Mautner299f9602015-01-26 09:47:33 -08003284 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003285 final long origId = Binder.clearCallingIdentity();
3286 try {
3287 ActivityRecord r = ActivityRecord.forToken(token);
3288 if (r != null) {
3289 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003290 }
Craig Mautnerd163e752014-06-13 17:18:47 -07003291 if (DEBUG_CONTAINERS) Slog.d(TAG, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003292
3293 if (isInStackLocked(token) != null) {
3294 if (r.state == ActivityState.DESTROYING) {
3295 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003296 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003297 }
3298 }
Craig Mautner05d29032013-05-03 13:40:13 -07003299 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003300 } finally {
3301 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003302 }
3303 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003304
Jose Lima4b6c6692014-08-12 17:41:12 -07003305 void releaseBackgroundResources() {
3306 if (hasVisibleBehindActivity() &&
3307 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
3308 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautner64ccb702014-10-01 09:38:40 -07003309 if (r == topRunningActivityLocked(null)) {
3310 // Don't release the top activity if it has requested to run behind the next
3311 // activity.
3312 return;
3313 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003314 if (DEBUG_STATES) Slog.d(TAG, "releaseBackgroundResources activtyDisplay=" +
3315 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003316 " thread=" + r.app.thread);
3317 if (r != null && r.app != null && r.app.thread != null) {
3318 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003319 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003320 } catch (RemoteException e) {
3321 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003322 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003323 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003324 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003325 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003326 }
3327 }
3328 }
3329
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003330 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003331 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3332 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003333 if (r != null) {
3334 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003335 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003336 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003337 }
3338 mStackSupervisor.resumeTopActivitiesLocked();
3339 }
3340
Jose Lima4b6c6692014-08-12 17:41:12 -07003341 boolean hasVisibleBehindActivity() {
3342 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003343 }
3344
Jose Lima4b6c6692014-08-12 17:41:12 -07003345 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003346 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003347 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003348 }
3349 }
3350
Jose Lima4b6c6692014-08-12 17:41:12 -07003351 ActivityRecord getVisibleBehindActivity() {
3352 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003353 }
3354
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003355 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3356 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003357 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003358 if (DEBUG_CLEANUP) Slog.v(
3359 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003360 + " with " + i + " entries");
3361 while (i > 0) {
3362 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003363 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003364 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003365 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003366 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003367 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003368 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003369 }
3370 }
3371 }
3372
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003373 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3374 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003375 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3376 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003377 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3378 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003379 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003380 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003381 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3382 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003383
3384 boolean hasVisibleActivities = false;
3385
3386 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003387 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003388 if (DEBUG_CLEANUP) Slog.v(
3389 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003390 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3391 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3392 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3393 final ActivityRecord r = activities.get(activityNdx);
3394 --i;
3395 if (DEBUG_CLEANUP) Slog.v(
3396 TAG, "Record #" + i + " " + r + ": app=" + r.app);
3397 if (r.app == app) {
3398 boolean remove;
3399 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3400 // Don't currently have state for the activity, or
3401 // it is finishing -- always remove it.
3402 remove = true;
3403 } else if (r.launchCount > 2 &&
3404 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3405 // We have launched this activity too many times since it was
3406 // able to run, so give up and remove it.
3407 remove = true;
3408 } else {
3409 // The process may be gone, but the activity lives on!
3410 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003411 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003412 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003413 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003414 RuntimeException here = new RuntimeException("here");
3415 here.fillInStackTrace();
3416 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
3417 + ": haveState=" + r.haveState
3418 + " stateNotNeeded=" + r.stateNotNeeded
3419 + " finishing=" + r.finishing
3420 + " state=" + r.state, here);
3421 }
3422 if (!r.finishing) {
3423 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3424 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3425 r.userId, System.identityHashCode(r),
3426 r.task.taskId, r.shortComponentName,
3427 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003428 if (r.state == ActivityState.RESUMED) {
3429 mService.updateUsageStats(r, false);
3430 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003431 }
Craig Mautner299f9602015-01-26 09:47:33 -08003432 removeActivityFromHistoryLocked(r, "appDied");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003433
Craig Mautner0247fc82013-02-28 14:32:06 -08003434 } else {
3435 // We have the current state for this activity, so
3436 // it can be restarted later when needed.
3437 if (localLOGV) Slog.v(
3438 TAG, "Keeping entry, setting app to null");
3439 if (r.visible) {
3440 hasVisibleActivities = true;
3441 }
3442 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
3443 + r);
3444 r.app = null;
3445 r.nowVisible = false;
3446 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003447 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08003448 "App died, clearing saved state of " + r);
3449 r.icicle = null;
3450 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003451 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003452
Craig Mautnerd2328952013-03-05 12:46:26 -08003453 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003454 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003455 }
3456 }
3457
3458 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003459 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003460
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003461 final void updateTransitLocked(int transit, Bundle options) {
3462 if (options != null) {
3463 ActivityRecord r = topRunningActivityLocked(null);
3464 if (r != null && r.state != ActivityState.RESUMED) {
3465 r.updateOptionsLocked(options);
3466 } else {
3467 ActivityOptions.abort(options);
3468 }
3469 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003470 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003471 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003472
Craig Mautner21d24a22014-04-23 11:45:37 -07003473 void updateTaskMovement(TaskRecord task, boolean toFront) {
3474 if (task.isPersistable) {
3475 task.mLastTimeMoved = System.currentTimeMillis();
3476 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3477 // recently will be most negative, tasks sent to the bottom before that will be less
3478 // negative. Similarly for recent tasks moved to the top which will be most positive.
3479 if (!toFront) {
3480 task.mLastTimeMoved *= -1;
3481 }
3482 }
3483 }
3484
Craig Mautner84984fa2014-06-19 11:19:20 -07003485 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003486 final int top = mTaskHistory.size() - 1;
3487 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3488 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003489 if (task.taskType == homeStackTaskType) {
3490 if (DEBUG_TASKS || DEBUG_STACK)
3491 Slog.d(TAG, "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003492 mTaskHistory.remove(taskNdx);
3493 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003494 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003495 mWindowManager.moveTaskToTop(task.taskId);
3496 return;
3497 }
3498 }
3499 }
3500
Craig Mautner299f9602015-01-26 09:47:33 -08003501 final void moveTaskToFrontLocked(TaskRecord tr, ActivityRecord source, Bundle options,
3502 String reason) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003503 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003504
Craig Mautner11bf9a52013-02-19 14:08:51 -08003505 final int numTasks = mTaskHistory.size();
3506 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003507 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003508 // nothing to do!
Craig Mautner299f9602015-01-26 09:47:33 -08003509 if (source != null &&
3510 (source.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003511 ActivityOptions.abort(options);
3512 } else {
3513 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3514 }
3515 return;
3516 }
3517
3518 // Shift all activities with this task up to the top
3519 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003520 insertTaskAtTop(tr);
Craig Mautner299f9602015-01-26 09:47:33 -08003521 moveToFront(reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003522
3523 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Craig Mautner299f9602015-01-26 09:47:33 -08003524 if (source != null &&
3525 (source.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003526 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003527 ActivityRecord r = topRunningActivityLocked(null);
3528 if (r != null) {
3529 mNoAnimActivities.add(r);
3530 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003531 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003532 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003533 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003534 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003535
Craig Mautner05d29032013-05-03 13:40:13 -07003536 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003537 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003538
3539 if (VALIDATE_TOKENS) {
3540 validateAppTokensLocked();
3541 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003542 }
3543
3544 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003545 * Worker method for rearranging history stack. Implements the function of moving all
3546 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003547 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003548 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003549 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3550 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003551 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003552 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003553 * @return Returns true if the move completed, false if not.
3554 */
Craig Mautner299f9602015-01-26 09:47:33 -08003555 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003556 final TaskRecord tr = taskForIdLocked(taskId);
3557 if (tr == null) {
3558 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3559 return false;
3560 }
3561
3562 Slog.i(TAG, "moveTaskToBack: " + tr);
3563
3564 mStackSupervisor.endLockTaskModeIfTaskEnding(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003565
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003566 // If we have a watcher, preflight the move before committing to it. First check
3567 // for *other* available tasks, but if none are available, then try again allowing the
3568 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003569 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003570 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003571 if (next == null) {
3572 next = topRunningActivityLocked(null, 0);
3573 }
3574 if (next != null) {
3575 // ask watcher if this is allowed
3576 boolean moveOK = true;
3577 try {
3578 moveOK = mService.mController.activityResuming(next.packageName);
3579 } catch (RemoteException e) {
3580 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003581 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003582 }
3583 if (!moveOK) {
3584 return false;
3585 }
3586 }
3587 }
3588
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003589 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003590 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003591
riddle_hsuc215a4f2014-12-27 12:10:45 +08003592 boolean prevIsHome = false;
3593 if (tr.isOverHomeStack()) {
3594 final TaskRecord nextTask = getNextTask(tr);
3595 if (nextTask != null) {
3596 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3597 } else {
3598 prevIsHome = true;
3599 }
3600 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003601 mTaskHistory.remove(tr);
3602 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003603 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003604
Craig Mautnerc8143c62013-09-03 12:15:57 -07003605 // There is an assumption that moving a task to the back moves it behind the home activity.
3606 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003607 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003608 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3609 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003610 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003611 break;
3612 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003613 if (taskNdx == 1) {
3614 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003615 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003616 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003617 }
3618
Craig Mautner299f9602015-01-26 09:47:33 -08003619 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003620 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003621
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003622 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003623 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003624 }
3625
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003626 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
riddle_hsuc215a4f2014-12-27 12:10:45 +08003627 if (prevIsHome || task == tr && tr.isOverHomeStack()
3628 || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003629 if (!mService.mBooting && !mService.mBooted) {
3630 // Not ready yet!
3631 return false;
3632 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003633 final int taskToReturnTo = tr.getTaskToReturnTo();
3634 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003635 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003636 }
3637
Craig Mautner05d29032013-05-03 13:40:13 -07003638 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003639 return true;
3640 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003641
Craig Mautner8849a5e2013-04-02 16:41:03 -07003642 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003643 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003644 final Uri data = r.intent.getData();
3645 final String strData = data != null ? data.toSafeString() : null;
3646
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003647 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003648 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003649 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003650 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003651 }
3652
3653 /**
3654 * Make sure the given activity matches the current configuration. Returns
3655 * false if the activity had to be destroyed. Returns true if the
3656 * configuration is the same, or the activity will remain running as-is
3657 * for whatever reason. Ensures the HistoryRecord is updated with the
3658 * correct configuration and all other bookkeeping is handled.
3659 */
3660 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3661 int globalChanges) {
3662 if (mConfigWillChange) {
3663 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3664 "Skipping config check (will change): " + r);
3665 return true;
3666 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003667
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003668 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3669 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003670
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003671 // Short circuit: if the two configurations are the exact same
3672 // object (the common case), then there is nothing to do.
3673 Configuration newConfig = mService.mConfiguration;
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003674 if (r.configuration == newConfig && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003675 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3676 "Configuration unchanged in " + r);
3677 return true;
3678 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003679
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003680 // We don't worry about activities that are finishing.
3681 if (r.finishing) {
3682 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3683 "Configuration doesn't matter in finishing " + r);
3684 r.stopFreezingScreenLocked(false);
3685 return true;
3686 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003687
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003688 // Okay we now are going to make this activity have the new config.
3689 // But then we need to figure out how it needs to deal with that.
3690 Configuration oldConfig = r.configuration;
3691 r.configuration = newConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003692
3693 // Determine what has changed. May be nothing, if this is a config
3694 // that has come back from the app after going idle. In that case
3695 // we just want to leave the official config object now in the
3696 // activity and do nothing else.
3697 final int changes = oldConfig.diff(newConfig);
3698 if (changes == 0 && !r.forceNewConfig) {
3699 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3700 "Configuration no differences in " + r);
3701 return true;
3702 }
3703
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003704 // If the activity isn't currently running, just leave the new
3705 // configuration and it will pick that up next time it starts.
3706 if (r.app == null || r.app.thread == null) {
3707 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3708 "Configuration doesn't matter not running " + r);
3709 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003710 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003711 return true;
3712 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003713
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003714 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003715 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3716 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3717 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003718 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003719 + ", newConfig=" + newConfig);
3720 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003721 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003722 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3723 r.configChangeFlags |= changes;
3724 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003725 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003726 if (r.app == null || r.app.thread == null) {
3727 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003728 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003729 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003730 } else if (r.state == ActivityState.PAUSING) {
3731 // A little annoying: we are waiting for this activity to
3732 // finish pausing. Let's not do anything now, but just
3733 // flag that it needs to be restarted when done pausing.
3734 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003735 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003736 r.configDestroy = true;
3737 return true;
3738 } else if (r.state == ActivityState.RESUMED) {
3739 // Try to optimize this case: the configuration is changing
3740 // and we need to restart the top, resumed activity.
3741 // Instead of doing the normal handshaking, just say
3742 // "restart!".
3743 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003744 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003745 relaunchActivityLocked(r, r.configChangeFlags, true);
3746 r.configChangeFlags = 0;
3747 } else {
3748 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003749 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003750 relaunchActivityLocked(r, r.configChangeFlags, false);
3751 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003752 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003753
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003754 // All done... tell the caller we weren't able to keep this
3755 // activity around.
3756 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003757 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003758
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003759 // Default case: the activity can handle this new configuration, so
3760 // hand it over. Note that we don't need to give it the new
3761 // configuration, since we always send configuration changes to all
3762 // process when they happen so it can just use whatever configuration
3763 // it last got.
3764 if (r.app != null && r.app.thread != null) {
3765 try {
3766 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003767 r.app.thread.scheduleActivityConfigurationChanged(r.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003768 } catch (RemoteException e) {
3769 // If process died, whatever.
3770 }
3771 }
3772 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003773
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003774 return true;
3775 }
3776
Craig Mautnerc8143c62013-09-03 12:15:57 -07003777 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003778 int changes, boolean andResume) {
3779 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003780 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003781 if (andResume) {
3782 results = r.results;
3783 newIntents = r.newIntents;
3784 }
3785 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3786 + " with results=" + results + " newIntents=" + newIntents
3787 + " andResume=" + andResume);
3788 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003789 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003790 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003791
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003792 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003793
Craig Mautner34b73df2014-01-12 21:11:08 -08003794 mStackSupervisor.removeChildActivityContainers(r);
3795
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003796 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003797 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3798 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3799 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003800 r.forceNewConfig = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08003801 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents,
Dianne Hackborn813075a62011-11-14 17:45:19 -08003802 changes, !andResume, new Configuration(mService.mConfiguration));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003803 // Note: don't need to call pauseIfSleepingLocked() here, because
3804 // the caller will only pass in 'andResume' if this activity is
3805 // currently resumed, which implies we aren't sleeping.
3806 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003807 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003808 }
3809
3810 if (andResume) {
3811 r.results = null;
3812 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003813 r.state = ActivityState.RESUMED;
3814 } else {
3815 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3816 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003817 }
3818
3819 return true;
3820 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003821
3822 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003823 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3824 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3825 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3826 final ActivityRecord r = activities.get(activityNdx);
3827 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003828 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003829 }
3830 if (r.fullscreen && !r.finishing) {
3831 return false;
3832 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003833 }
3834 }
Craig Mautner34b73df2014-01-12 21:11:08 -08003835 final ActivityRecord r = ActivityRecord.forToken(token);
3836 if (r == null) {
3837 return false;
3838 }
3839 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3840 + " would have returned true for r=" + r);
3841 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003842 }
3843
3844 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003845 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3846 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3847 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3848 final ActivityRecord r = activities.get(activityNdx);
3849 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003850 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003851 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003852 }
3853 }
3854 }
3855
3856 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3857 boolean didSomething = false;
3858 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003859 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003860 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3861 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3862 int numActivities = activities.size();
3863 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3864 ActivityRecord r = activities.get(activityNdx);
3865 final boolean samePackage = r.packageName.equals(name)
3866 || (name == null && r.userId == userId);
3867 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3868 && (samePackage || r.task == lastTask)
3869 && (r.app == null || evenPersistent || !r.app.persistent)) {
3870 if (!doit) {
3871 if (r.finishing) {
3872 // If this activity is just finishing, then it is not
3873 // interesting as far as something to stop.
3874 continue;
3875 }
3876 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003877 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003878 if (r.isHomeActivity()) {
3879 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
3880 Slog.i(TAG, "Skip force-stop again " + r);
3881 continue;
3882 } else {
3883 homeActivity = r.realActivity;
3884 }
3885 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003886 didSomething = true;
Sungsoo Lim48248c82014-12-24 17:30:00 +09003887 Slog.i(TAG, " Force finishing activity 3 " + r);
Craig Mautner56f52db2013-02-25 10:03:01 -08003888 if (samePackage) {
3889 if (r.app != null) {
3890 r.app.removed = true;
3891 }
3892 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003893 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003894 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003895 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3896 true)) {
3897 // r has been deleted from mActivities, accommodate.
3898 --numActivities;
3899 --activityNdx;
3900 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003901 }
3902 }
3903 }
3904 return didSomething;
3905 }
3906
Dianne Hackborn09233282014-04-30 11:33:59 -07003907 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003908 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003909 final TaskRecord task = mTaskHistory.get(taskNdx);
3910 ActivityRecord r = null;
3911 ActivityRecord top = null;
3912 int numActivities = 0;
3913 int numRunning = 0;
3914 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003915 if (activities.isEmpty()) {
3916 continue;
3917 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07003918 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07003919 continue;
3920 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003921 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3922 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003923
Craig Mautneraab647e2013-02-28 16:31:36 -08003924 // Initialize state for next task if needed.
3925 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3926 top = r;
3927 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003928 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003929
3930 // Add 'r' into the current task.
3931 numActivities++;
3932 if (r.app != null && r.app.thread != null) {
3933 numRunning++;
3934 }
3935
3936 if (localLOGV) Slog.v(
3937 TAG, r.intent.getComponent().flattenToShortString()
3938 + ": task=" + r.task);
3939 }
3940
3941 RunningTaskInfo ci = new RunningTaskInfo();
3942 ci.id = task.taskId;
3943 ci.baseActivity = r.intent.getComponent();
3944 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003945 ci.lastActiveTime = task.lastActiveTime;
3946
Craig Mautnerc0ffce52014-07-01 12:38:52 -07003947 if (top.task != null) {
3948 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08003949 }
3950 ci.numActivities = numActivities;
3951 ci.numRunning = numRunning;
3952 //System.out.println(
3953 // "#" + maxNum + ": " + " descr=" + ci.description);
Craig Mautneraab647e2013-02-28 16:31:36 -08003954 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08003955 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003956 }
3957
3958 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08003959 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08003960 if (DEBUG_SWITCH) Slog.d(
3961 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08003962 if (top >= 0) {
3963 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
3964 int activityTop = activities.size() - 1;
3965 if (activityTop > 0) {
3966 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
3967 "unhandled-back", true);
3968 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003969 }
3970 }
3971
Craig Mautner6b74cb52013-09-27 17:02:21 -07003972 /**
3973 * Reset local parameters because an app's activity died.
3974 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07003975 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07003976 */
3977 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07003978 if (mPausingActivity != null && mPausingActivity.app == app) {
3979 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
3980 "App died while pausing: " + mPausingActivity);
3981 mPausingActivity = null;
3982 }
3983 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
3984 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07003985 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07003986 }
3987
Craig Mautner19091252013-10-05 00:03:53 -07003988 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07003989 }
3990
Craig Mautnercae015f2013-02-08 14:31:27 -08003991 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003992 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3993 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3994 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3995 final ActivityRecord r = activities.get(activityNdx);
3996 if (r.app == app) {
Sungsoo Lim48248c82014-12-24 17:30:00 +09003997 Slog.w(TAG, " Force finishing activity 4 "
Craig Mautnerd44711d2013-02-23 11:24:36 -08003998 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07003999 // Force the destroy to skip right to removal.
4000 r.app = null;
4001 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004002 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004003 }
4004 }
4005 }
4006
Dianne Hackborn390517b2013-05-30 15:03:32 -07004007 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004008 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004009 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004010 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4011 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004012 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4013 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004014 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07004015 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004016 if (printed) {
4017 header = null;
4018 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004019 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004020 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004021 }
4022
4023 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4024 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4025
4026 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004027 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4028 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004029 }
4030 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004031 final int top = mTaskHistory.size() - 1;
4032 if (top >= 0) {
4033 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4034 int listTop = list.size() - 1;
4035 if (listTop >= 0) {
4036 activities.add(list.get(listTop));
4037 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004038 }
4039 } else {
4040 ItemMatcher matcher = new ItemMatcher();
4041 matcher.build(name);
4042
Craig Mautneraab647e2013-02-28 16:31:36 -08004043 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4044 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4045 if (matcher.match(r1, r1.intent.getComponent())) {
4046 activities.add(r1);
4047 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004048 }
4049 }
4050 }
4051
4052 return activities;
4053 }
4054
4055 ActivityRecord restartPackage(String packageName) {
4056 ActivityRecord starting = topRunningActivityLocked(null);
4057
4058 // All activities that came from the package must be
4059 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004060 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4061 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4062 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4063 final ActivityRecord a = activities.get(activityNdx);
4064 if (a.info.packageName.equals(packageName)) {
4065 a.forceNewConfig = true;
4066 if (starting != null && a == starting && a.visible) {
4067 a.startFreezingScreenLocked(starting.app,
4068 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4069 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004070 }
4071 }
4072 }
4073
4074 return starting;
4075 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004076
Craig Mautner299f9602015-01-26 09:47:33 -08004077 void removeTask(TaskRecord task, String reason) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004078 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
Craig Mautner04a0ea62014-01-13 12:51:26 -08004079 mWindowManager.removeTask(task.taskId);
4080 final ActivityRecord r = mResumedActivity;
4081 if (r != null && r.task == task) {
4082 mResumedActivity = null;
4083 }
4084
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004085 final int taskNdx = mTaskHistory.indexOf(task);
4086 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004087 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4088 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4089 if (!nextTask.isOverHomeStack()) {
4090 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4091 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004092 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004093 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004094 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004095
4096 if (task.mActivities.isEmpty()) {
4097 final boolean isVoiceSession = task.voiceSession != null;
4098 if (isVoiceSession) {
4099 try {
4100 task.voiceSession.taskFinished(task.intent, task.taskId);
4101 } catch (RemoteException e) {
4102 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004103 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004104 if (task.autoRemoveFromRecents() || isVoiceSession) {
4105 // Task creator asked to remove this when done, or this task was a voice
4106 // interaction, so it should not remain on the recent tasks list.
4107 mService.mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004108 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004109 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004110 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004111
4112 if (mTaskHistory.isEmpty()) {
4113 if (DEBUG_STACK) Slog.i(TAG, "removeTask: moving to back stack=" + this);
4114 if (isOnHomeDisplay()) {
Craig Mautner299f9602015-01-26 09:47:33 -08004115 mStackSupervisor.moveHomeStack(!isHomeStack(), reason + " leftTaskHistoryEmpty");
Craig Mautner04a0ea62014-01-13 12:51:26 -08004116 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004117 if (mStacks != null) {
4118 mStacks.remove(this);
4119 mStacks.add(0, this);
4120 }
Craig Mautnerd163e752014-06-13 17:18:47 -07004121 mActivityContainer.onTaskListEmptyLocked();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004122 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004123 }
4124
Dianne Hackborn91097de2014-04-04 18:02:06 -07004125 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4126 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4127 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004128 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4129 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004130 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004131 return task;
4132 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004133
4134 ArrayList<TaskRecord> getAllTasks() {
4135 return new ArrayList<TaskRecord>(mTaskHistory);
4136 }
4137
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004138 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004139 task.stack = this;
4140 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07004141 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004142 } else {
4143 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004144 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004145 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004146 if (!moving && task.voiceSession != null) {
4147 try {
4148 task.voiceSession.taskStarted(task.intent, task.taskId);
4149 } catch (RemoteException e) {
4150 }
4151 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004152 }
4153
4154 public int getStackId() {
4155 return mStackId;
4156 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004157
4158 @Override
4159 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004160 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4161 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004162 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004163}