blob: 73c8439fd4d86d2856490624ac206198e430644b [file] [log] [blame]
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
Craig Mautner0eea92c2013-05-16 13:35:39 -070019import static com.android.server.am.ActivityManagerService.TAG;
20import static com.android.server.am.ActivityManagerService.localLOGV;
21import static com.android.server.am.ActivityManagerService.DEBUG_CLEANUP;
22import static com.android.server.am.ActivityManagerService.DEBUG_CONFIGURATION;
23import static com.android.server.am.ActivityManagerService.DEBUG_PAUSE;
24import static com.android.server.am.ActivityManagerService.DEBUG_RESULTS;
25import static com.android.server.am.ActivityManagerService.DEBUG_STACK;
26import static com.android.server.am.ActivityManagerService.DEBUG_SWITCH;
27import static com.android.server.am.ActivityManagerService.DEBUG_TASKS;
28import static com.android.server.am.ActivityManagerService.DEBUG_TRANSITION;
29import static com.android.server.am.ActivityManagerService.DEBUG_USER_LEAVING;
30import static com.android.server.am.ActivityManagerService.DEBUG_VISBILITY;
31import static com.android.server.am.ActivityManagerService.VALIDATE_TOKENS;
32
Craig Mautner84984fa2014-06-19 11:19:20 -070033import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
34import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070035
Craig Mautner0eea92c2013-05-16 13:35:39 -070036import static com.android.server.am.ActivityStackSupervisor.DEBUG_ADD_REMOVE;
37import static com.android.server.am.ActivityStackSupervisor.DEBUG_APP;
Craig Mautnerd163e752014-06-13 17:18:47 -070038import static com.android.server.am.ActivityStackSupervisor.DEBUG_CONTAINERS;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070039import static com.android.server.am.ActivityStackSupervisor.DEBUG_RELEASE;
Craig Mautner0eea92c2013-05-16 13:35:39 -070040import static com.android.server.am.ActivityStackSupervisor.DEBUG_SAVED_STATE;
Winson Chung376543b2014-05-21 17:43:28 -070041import static com.android.server.am.ActivityStackSupervisor.DEBUG_SCREENSHOTS;
Craig Mautner0eea92c2013-05-16 13:35:39 -070042import static com.android.server.am.ActivityStackSupervisor.DEBUG_STATES;
Craig Mautnerde4ef022013-04-07 19:01:33 -070043import static com.android.server.am.ActivityStackSupervisor.HOME_STACK_ID;
44
Dianne Hackborn89ad4562014-08-24 16:45:38 -070045import android.util.ArraySet;
Dianne Hackborn91097de2014-04-04 18:02:06 -070046import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080047import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070048import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070049import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080050import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080051import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080052import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080053import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070054import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055
56import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070057import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070058import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080060import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080062import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070064import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070065import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080068import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080069import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070070import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070071import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080072import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070073import android.os.Handler;
74import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090075import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070076import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070077import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import android.os.RemoteException;
79import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080080import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070081import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070082import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070083import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070084import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070085import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086
Craig Mautnercae015f2013-02-08 14:31:27 -080087import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080088import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070089import java.lang.ref.WeakReference;
90import java.util.ArrayList;
91import java.util.Iterator;
92import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080093import java.util.Objects;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070094
95/**
96 * State and management of a single stack of activities.
97 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070098final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080099
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700100 // Ticks during which we check progress while waiting for an app to launch.
101 static final int LAUNCH_TICK = 500;
102
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700103 // How long we wait until giving up on the last activity to pause. This
104 // is short because it directly impacts the responsiveness of starting the
105 // next activity.
106 static final int PAUSE_TIMEOUT = 500;
107
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700108 // How long we wait for the activity to tell us it has stopped before
109 // giving up. This is a good amount of time because we really need this
110 // from the application in order to get its saved state.
111 static final int STOP_TIMEOUT = 10*1000;
112
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700113 // How long we wait until giving up on an activity telling us it has
114 // finished destroying itself.
115 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800116
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700117 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800118 // disabled.
119 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800120
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700121 // How long between activity launches that we consider safe to not warn
122 // the user about an unexpected activity being launched on top.
123 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800124
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700125 // Set to false to disable the preview that is shown while a new activity
126 // is being started.
127 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800128
Craig Mautner5eda9b32013-07-02 11:58:16 -0700129 // How long to wait for all background Activities to redraw following a call to
130 // convertToTranslucent().
131 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
132
Craig Mautnera61bc652013-10-28 15:43:18 -0700133 static final boolean SCREENSHOT_FORCE_565 = ActivityManager.isLowRamDeviceStatic();
John Reck172e87c2013-10-02 16:55:16 -0700134
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700135 enum ActivityState {
136 INITIALIZING,
137 RESUMED,
138 PAUSING,
139 PAUSED,
140 STOPPING,
141 STOPPED,
142 FINISHING,
143 DESTROYING,
144 DESTROYED
145 }
146
147 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700148 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800149 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800150
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700151 /**
152 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800153 * running) activities. It contains #TaskRecord objects.
154 */
155 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<TaskRecord>();
156
157 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800158 * Used for validating app tokens with window manager.
159 */
Craig Mautnerb1fd65c02013-02-05 13:34:57 -0800160 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<TaskGroup>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800161
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700162 /**
163 * List of running activities, sorted by recent usage.
164 * The first entry in the list is the least recently used.
165 * It contains HistoryRecord objects.
166 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700167 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700168
169 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700170 * Animations that for the current transition have requested not to
171 * be considered for the transition animation.
172 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700173 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<ActivityRecord>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700174
175 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700176 * When we are in the process of pausing an activity, before starting the
177 * next one, this variable holds the activity that is currently being paused.
178 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800179 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700180
181 /**
182 * This is the last activity that we put into the paused state. This is
183 * used to determine if we need to do an activity transition while sleeping,
184 * when we normally hold the top activity paused.
185 */
186 ActivityRecord mLastPausedActivity = null;
187
188 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700189 * Activities that specify No History must be removed once the user navigates away from them.
190 * If the device goes to sleep with such an activity in the paused state then we save it here
191 * and finish it later if another activity replaces it on wakeup.
192 */
193 ActivityRecord mLastNoHistoryActivity = null;
194
195 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700196 * Current activity that is resumed, or null if there is none.
197 */
198 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800199
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700200 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700201 * This is the last activity that has been started. It is only used to
202 * identify when multiple activities are started at once so that the user
203 * can be warned they may not be in the activity they think they are.
204 */
205 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800206
Craig Mautner5eda9b32013-07-02 11:58:16 -0700207 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
208 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
209 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
210 // Activity in mTranslucentActivityWaiting is notified via
211 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
212 // background activity being drawn then the same call will be made with a true value.
213 ActivityRecord mTranslucentActivityWaiting = null;
Craig Mautnereb8abf72014-07-02 15:04:09 -0700214 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
Craig Mautner5eda9b32013-07-02 11:58:16 -0700215 new ArrayList<ActivityRecord>();
216
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700217 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700218 * Set when we know we are going to be calling updateConfiguration()
219 * soon, so want to skip intermediate config checks.
220 */
221 boolean mConfigWillChange;
222
Todd Kennedyaab56db2015-01-30 09:39:53 -0800223 // Whether or not this stack covers the entire screen; by default stacks are full screen
224 boolean mFullscreen = true;
225
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700226 long mLaunchStartTime = 0;
227 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800228
Craig Mautner858d8a62013-04-23 17:08:34 -0700229 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700230
Craig Mautnerc00204b2013-03-05 15:02:14 -0800231 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800232 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800233 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
234 ArrayList<ActivityStack> mStacks;
235 /** The attached Display's unique identifier, or -1 if detached */
236 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800237
Craig Mautner27084302013-03-25 08:05:25 -0700238 /** Run all ActivityStacks through this */
239 final ActivityStackSupervisor mStackSupervisor;
240
Wale Ogunwale60454db2015-01-23 16:05:07 -0800241 Configuration mOverrideConfig;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800242 /** True if the stack was forced to full screen because {@link TaskRecord#mResizeable} is false
243 * and the stack was previously resized. */
244 private boolean mForcedFullscreen = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -0800245
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700246 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700247 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
248 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
249 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
250 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700251 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700252 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700253 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700254
255 static class ScheduleDestroyArgs {
256 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700257 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700258 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700259 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700260 mReason = reason;
261 }
262 }
263
Zoran Marcetaf958b322012-08-09 20:27:12 +0900264 final Handler mHandler;
265
266 final class ActivityStackHandler extends Handler {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700267 //public Handler() {
268 // if (localLOGV) Slog.v(TAG, "Handler started!");
269 //}
Craig Mautnerc8143c62013-09-03 12:15:57 -0700270 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900271 super(looper);
272 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700273
Zoran Marcetaf958b322012-08-09 20:27:12 +0900274 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700275 public void handleMessage(Message msg) {
276 switch (msg.what) {
277 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800278 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700279 // We don't at this point know if the activity is fullscreen,
280 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800281 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700282 synchronized (mService) {
283 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700284 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700285 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700286 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800287 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700288 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700289 case LAUNCH_TICK_MSG: {
290 ActivityRecord r = (ActivityRecord)msg.obj;
291 synchronized (mService) {
292 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700293 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700294 }
295 }
296 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700297 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800298 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700299 // We don't at this point know if the activity is fullscreen,
300 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800301 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800302 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800303 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800304 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700305 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700306 case STOP_TIMEOUT_MSG: {
307 ActivityRecord r = (ActivityRecord)msg.obj;
308 // We don't at this point know if the activity is fullscreen,
309 // so we need to be conservative and assume it isn't.
310 Slog.w(TAG, "Activity stop timeout for " + r);
311 synchronized (mService) {
312 if (r.isInHistory()) {
313 activityStoppedLocked(r, null, null, null);
314 }
315 }
316 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700317 case DESTROY_ACTIVITIES_MSG: {
318 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
319 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700320 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700321 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700322 } break;
323 case TRANSLUCENT_TIMEOUT_MSG: {
324 synchronized (mService) {
325 notifyActivityDrawnLocked(null);
326 }
327 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700328 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700329 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700330 final ActivityRecord r = getVisibleBehindActivity();
331 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700332 if (r != null) {
333 mService.killAppAtUsersRequest(r.app, null);
334 }
335 }
336 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700337 }
338 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800339 }
340
Craig Mautner34b73df2014-01-12 21:11:08 -0800341 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800342 int count = 0;
343 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
344 count += mTaskHistory.get(taskNdx).mActivities.size();
345 }
346 return count;
347 }
348
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800349 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
350 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800351 mActivityContainer = activityContainer;
352 mStackSupervisor = activityContainer.getOuter();
353 mService = mStackSupervisor.mService;
354 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
355 mWindowManager = mService.mWindowManager;
356 mStackId = activityContainer.mStackId;
357 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800358 mRecentTasks = recentTasks;
Wale Ogunwale60454db2015-01-23 16:05:07 -0800359 mOverrideConfig = Configuration.EMPTY;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700360 }
Craig Mautner5962b122012-10-05 14:45:52 -0700361
Amith Yamasani734983f2014-03-04 16:48:05 -0800362 /**
Kenny Guy2a764942014-04-02 13:29:20 +0100363 * Checks whether the userid is a profile of the current user.
Amith Yamasani734983f2014-03-04 16:48:05 -0800364 */
Kenny Guy2a764942014-04-02 13:29:20 +0100365 private boolean isCurrentProfileLocked(int userId) {
Kenny Guyf4824a02014-04-02 19:17:41 +0100366 if (userId == mCurrentUser) return true;
Kenny Guy2a764942014-04-02 13:29:20 +0100367 for (int i = 0; i < mService.mCurrentProfileIds.length; i++) {
368 if (mService.mCurrentProfileIds[i] == userId) return true;
Amith Yamasani734983f2014-03-04 16:48:05 -0800369 }
370 return false;
371 }
372
373 boolean okToShowLocked(ActivityRecord r) {
Kenny Guy2a764942014-04-02 13:29:20 +0100374 return isCurrentProfileLocked(r.userId)
Craig Mautner5962b122012-10-05 14:45:52 -0700375 || (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0;
376 }
377
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700378 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800379 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700380 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
381 if (r != null) {
382 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800383 }
384 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700385 return null;
386 }
387
388 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800389 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
390 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800391 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800392 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
393 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800394 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800395 return r;
396 }
397 }
398 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700399 return null;
400 }
401
402 /**
403 * This is a simplified version of topRunningActivityLocked that provides a number of
404 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800405 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700406 * @param token If non-null, any history records matching this token will be skipped.
407 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800408 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700409 * @return Returns the HistoryRecord of the next activity on the stack.
410 */
411 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800412 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
413 TaskRecord task = mTaskHistory.get(taskNdx);
414 if (task.taskId == taskId) {
415 continue;
416 }
417 ArrayList<ActivityRecord> activities = task.mActivities;
418 for (int i = activities.size() - 1; i >= 0; --i) {
419 final ActivityRecord r = activities.get(i);
420 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800421 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800422 return r;
423 }
424 }
425 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700426 return null;
427 }
428
Craig Mautner8849a5e2013-04-02 16:41:03 -0700429 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700430 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
431 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700432 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
433 final ActivityRecord r = activities.get(activityNdx);
434 if (!r.finishing) {
435 return r;
436 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700437 }
438 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700439 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700440 }
441
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700442 final TaskRecord topTask() {
443 final int size = mTaskHistory.size();
444 if (size > 0) {
445 return mTaskHistory.get(size - 1);
446 }
447 return null;
448 }
449
Craig Mautnerd2328952013-03-05 12:46:26 -0800450 TaskRecord taskForIdLocked(int id) {
451 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
452 final TaskRecord task = mTaskHistory.get(taskNdx);
453 if (task.taskId == id) {
454 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800455 }
456 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700457 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700458 }
459
Craig Mautnerd2328952013-03-05 12:46:26 -0800460 ActivityRecord isInStackLocked(IBinder token) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800461 final ActivityRecord r = ActivityRecord.forToken(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800462 return isInStackLocked(r);
463 }
464
465 ActivityRecord isInStackLocked(ActivityRecord r) {
466 if (r == null) {
467 return null;
468 }
469 final TaskRecord task = r.task;
470 if (task != null && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
471 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800472 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800473 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800474 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800475 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800476 }
477
Craig Mautner2420ead2013-04-01 17:13:20 -0700478 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700479 final boolean hadit = mLRUActivities.remove(r);
480 mLRUActivities.add(r);
481 return hadit;
482 }
483
Craig Mautnerde4ef022013-04-07 19:01:33 -0700484 final boolean isHomeStack() {
485 return mStackId == HOME_STACK_ID;
486 }
487
Craig Mautnere0a38842013-12-16 16:14:02 -0800488 final boolean isOnHomeDisplay() {
489 return isAttached() &&
490 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
491 }
492
Craig Mautner299f9602015-01-26 09:47:33 -0800493 final void moveToFront(String reason) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800494 if (isAttached()) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800495 if (isOnHomeDisplay()) {
Craig Mautner299f9602015-01-26 09:47:33 -0800496 mStackSupervisor.moveHomeStack(isHomeStack(), reason);
Craig Mautnere0a38842013-12-16 16:14:02 -0800497 }
Craig Mautnerfefeef82014-01-10 08:40:23 -0800498 mStacks.remove(this);
499 mStacks.add(this);
Craig Mautner6b904ef2014-12-17 15:45:03 -0800500 final TaskRecord task = topTask();
501 if (task != null) {
502 mWindowManager.moveTaskToTop(task.taskId);
503 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800504 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800505 }
506
507 final boolean isAttached() {
508 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800509 }
510
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700511 /**
512 * Returns the top activity in any existing task matching the given
513 * Intent. Returns null if no such task is found.
514 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700515 ActivityRecord findTaskLocked(ActivityRecord target) {
516 Intent intent = target.intent;
517 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700518 ComponentName cls = intent.getComponent();
519 if (info.targetActivity != null) {
520 cls = new ComponentName(info.packageName, info.targetActivity);
521 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700522 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700523 boolean isDocument = intent != null & intent.isDocument();
524 // If documentData is non-null then it must match the existing task data.
525 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800526
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700527 if (DEBUG_TASKS) Slog.d(TAG, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800528 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
529 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700530 if (task.voiceSession != null) {
531 // We never match voice sessions; those always run independently.
532 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": voice session");
533 continue;
534 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700535 if (task.userId != userId) {
536 // Looking for a different task.
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700537 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700538 continue;
539 }
Craig Mautner000f0022013-02-26 15:04:29 -0800540 final ActivityRecord r = task.getTopActivity();
541 if (r == null || r.finishing || r.userId != userId ||
542 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700543 if (DEBUG_TASKS) Slog.d(TAG, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800544 continue;
545 }
546
Craig Mautnerd00f4742014-03-12 14:17:26 -0700547 final Intent taskIntent = task.intent;
548 final Intent affinityIntent = task.affinityIntent;
549 final boolean taskIsDocument;
550 final Uri taskDocumentData;
551 if (taskIntent != null && taskIntent.isDocument()) {
552 taskIsDocument = true;
553 taskDocumentData = taskIntent.getData();
554 } else if (affinityIntent != null && affinityIntent.isDocument()) {
555 taskIsDocument = true;
556 taskDocumentData = affinityIntent.getData();
557 } else {
558 taskIsDocument = false;
559 taskDocumentData = null;
560 }
561
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700562 if (DEBUG_TASKS) Slog.d(TAG, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700563 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700564 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700565 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700566 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
567 if (task.rootAffinity.equals(target.taskAffinity)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700568 if (DEBUG_TASKS) Slog.d(TAG, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700569 return r;
570 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700571 } else if (taskIntent != null && taskIntent.getComponent() != null &&
572 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700573 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700574 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800575 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700576 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
577 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800578 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700579 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
580 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700581 Objects.equals(documentData, taskDocumentData)) {
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700582 if (DEBUG_TASKS) Slog.d(TAG, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800583 //dump();
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700584 if (DEBUG_TASKS) Slog.d(TAG, "For Intent " + intent + " bringing to top: "
585 + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800586 return r;
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700587 } else if (DEBUG_TASKS) {
588 Slog.d(TAG, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700589 }
590 }
591
592 return null;
593 }
594
595 /**
596 * Returns the first activity (starting from the top of the stack) that
597 * is the same as the given activity. Returns null if no such activity
598 * is found.
599 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700600 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700601 ComponentName cls = intent.getComponent();
602 if (info.targetActivity != null) {
603 cls = new ComponentName(info.packageName, info.targetActivity);
604 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700605 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700606
Craig Mautner000f0022013-02-26 15:04:29 -0800607 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700608 TaskRecord task = mTaskHistory.get(taskNdx);
Kenny Guy2a764942014-04-02 13:29:20 +0100609 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700610 return null;
611 }
612 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner000f0022013-02-26 15:04:29 -0800613 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
614 ActivityRecord r = activities.get(activityNdx);
615 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700616 //Slog.i(TAG, "Found matching class!");
617 //dump();
618 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
619 return r;
620 }
621 }
622 }
623
624 return null;
625 }
626
Amith Yamasani742a6712011-05-04 14:49:28 -0700627 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700628 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700629 */
Craig Mautner93529a42013-10-04 15:03:13 -0700630 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800631 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700632 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800633 }
634 mCurrentUser = userId;
635
636 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800637 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800638 for (int i = 0; i < index; ) {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700639 TaskRecord task = mTaskHistory.get(i);
Kenny Guy2a764942014-04-02 13:29:20 +0100640 if (isCurrentProfileLocked(task.userId)) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700641 if (DEBUG_TASKS) Slog.d(TAG, "switchUserLocked: stack=" + getStackId() +
642 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800643 mTaskHistory.remove(i);
644 mTaskHistory.add(task);
645 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800646 // Use same value for i.
647 } else {
648 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800649 }
650 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700651 if (VALIDATE_TOKENS) {
652 validateAppTokensLocked();
653 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700654 }
655
Craig Mautner2420ead2013-04-01 17:13:20 -0700656 void minimalResumeActivityLocked(ActivityRecord r) {
657 r.state = ActivityState.RESUMED;
658 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
659 + " (starting new instance)");
660 r.stopped = false;
661 mResumedActivity = r;
662 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800663 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700664 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700665 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700666 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700667 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700668 }
669
Dianne Hackborncee04b52013-07-03 17:01:28 -0700670 private void startLaunchTraces() {
671 if (mFullyDrawnStartTime != 0) {
672 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
673 }
674 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
675 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
676 }
677
678 private void stopFullyDrawnTraceIfNeeded() {
679 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
680 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
681 mFullyDrawnStartTime = 0;
682 }
683 }
684
Craig Mautnere79d42682013-04-01 19:01:53 -0700685 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700686 if (r.displayStartTime == 0) {
687 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
688 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700689 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700690 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700691 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700692 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700693 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700694 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700695 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700696 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800697
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700698 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700699 // Make sure that there is no activity waiting for this to launch.
700 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
701 r.displayStartTime = r.fullyDrawnStartTime = 0;
702 } else {
703 mStackSupervisor.removeTimeoutsForActivityLocked(r);
704 mStackSupervisor.scheduleIdleTimeoutLocked(r);
705 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700706 }
707
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800708 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800709 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800710 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
711 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
712 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
713 activities.get(activityNdx).setSleeping(false);
714 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800715 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800716 if (mPausingActivity != null) {
717 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
718 activityPausedLocked(mPausingActivity.appToken, true);
719 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800720 }
721
Craig Mautner0eea92c2013-05-16 13:35:39 -0700722 /**
723 * @return true if something must be done before going to sleep.
724 */
725 boolean checkReadyForSleepLocked() {
726 if (mResumedActivity != null) {
727 // Still have something resumed; can't sleep until it is paused.
728 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep needs to pause " + mResumedActivity);
729 if (DEBUG_USER_LEAVING) Slog.v(TAG, "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700730 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700731 return true;
732 }
733 if (mPausingActivity != null) {
734 // Still waiting for something to pause; can't sleep yet.
735 if (DEBUG_PAUSE) Slog.v(TAG, "Sleep still waiting to pause " + mPausingActivity);
736 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800737 }
738
Craig Mautner0eea92c2013-05-16 13:35:39 -0700739 return false;
740 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800741
Craig Mautner0eea92c2013-05-16 13:35:39 -0700742 void goToSleep() {
743 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800744
Craig Mautner0eea92c2013-05-16 13:35:39 -0700745 // Make sure any stopped but visible activities are now sleeping.
746 // This ensures that the activity's onStop() is called.
747 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
748 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
749 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
750 final ActivityRecord r = activities.get(activityNdx);
751 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
752 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800753 }
754 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800755 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700756 }
Craig Mautner59c00972012-07-30 12:10:24 -0700757
Dianne Hackbornd2835932010-12-13 16:28:46 -0800758 public final Bitmap screenshotActivities(ActivityRecord who) {
Winson Chung376543b2014-05-21 17:43:28 -0700759 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800760 if (who.noDisplay) {
Winson Chung376543b2014-05-21 17:43:28 -0700761 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800762 return null;
763 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800764
Winson Chung083baf92014-07-11 10:32:42 -0700765 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700766 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800767 // we can just go ahead and skip taking the screenshot if this is the home stack.
768 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700769 return null;
770 }
771
Winson Chung48a10a52014-08-27 14:36:51 -0700772 int w = mService.mThumbnailWidth;
773 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800774 if (w > 0) {
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800775 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tTaking screenshot");
776 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
777 w, h, SCREENSHOT_FORCE_565);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800778 }
Winson Chung376543b2014-05-21 17:43:28 -0700779 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800780 return null;
781 }
782
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700783 /**
784 * Start pausing the currently resumed activity. It is an error to call this if there
785 * is already an activity being paused or there is no resumed activity.
786 *
787 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
788 * @param uiSleeping True if this is happening with the user interface going to sleep (the
789 * screen turning off).
790 * @param resuming True if this is being called as part of resuming the top activity, so
791 * we shouldn't try to instigate a resume here.
792 * @param dontWait True if the caller does not want to wait for the pause to complete. If
793 * set to true, we will immediately complete the pause here before returning.
794 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
795 * it to tell us when it is done.
796 */
797 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
798 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800799 if (mPausingActivity != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700800 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity);
801 completePauseLocked(false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800802 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700803 ActivityRecord prev = mResumedActivity;
804 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700805 if (!resuming) {
806 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
807 mStackSupervisor.resumeTopActivitiesLocked();
808 }
809 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700810 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800811
812 if (mActivityContainer.mParentActivity == null) {
813 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700814 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800815 }
816
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700817 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
818 else if (DEBUG_PAUSE) Slog.v(TAG, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700819 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800820 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700821 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700822 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
823 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700824 prev.state = ActivityState.PAUSING;
825 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700826 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700827 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwaled3e2a082014-11-04 16:09:19 -0800828 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800829 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700830 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700831 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700832
833 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800834
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700835 if (prev.app != null && prev.app.thread != null) {
836 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending pause: " + prev);
837 try {
838 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700839 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700840 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700841 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800842 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700843 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700844 } catch (Exception e) {
845 // Ignore exception, if process died other code will cleanup.
846 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800847 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700848 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700849 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700850 }
851 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800852 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700853 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700854 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700855 }
856
857 // If we are not going to sleep, we want to ensure the device is
858 // awake until the next activity is started.
Craig Mautnere11f2b72013-04-01 12:37:17 -0700859 if (!mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700860 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700861 }
862
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800863 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700864 // Have the window manager pause its key dispatching until the new
865 // activity has started. If we're pausing the activity just because
866 // the screen is being turned off and the UI is sleeping, don't interrupt
867 // key dispatch; the same activity will pick it up again on wakeup.
868 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800869 prev.pauseKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700870 } else {
871 if (DEBUG_PAUSE) Slog.v(TAG, "Key dispatch not paused for screen off");
872 }
873
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700874 if (dontWait) {
875 // If the caller said they don't want to wait for the pause, then complete
876 // the pause now.
877 completePauseLocked(false);
878 return false;
879
880 } else {
881 // Schedule a pause timeout in case the app doesn't respond.
882 // We don't give it much time because this directly impacts the
883 // responsiveness seen by the user.
884 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
885 msg.obj = prev;
886 prev.pauseTime = SystemClock.uptimeMillis();
887 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
888 if (DEBUG_PAUSE) Slog.v(TAG, "Waiting for pause to complete...");
889 return true;
890 }
891
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700892 } else {
893 // This activity failed to schedule the
894 // pause, so just treat it as being paused now.
895 if (DEBUG_PAUSE) Slog.v(TAG, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700896 if (!resuming) {
897 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
898 }
899 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700900 }
901 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700902
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700903 final void activityPausedLocked(IBinder token, boolean timeout) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700904 if (DEBUG_PAUSE) Slog.v(
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800905 TAG, "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700906
Craig Mautnerd2328952013-03-05 12:46:26 -0800907 final ActivityRecord r = isInStackLocked(token);
908 if (r != null) {
909 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
910 if (mPausingActivity == r) {
911 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
912 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700913 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800914 } else {
915 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
916 r.userId, System.identityHashCode(r), r.shortComponentName,
917 mPausingActivity != null
918 ? mPausingActivity.shortComponentName : "(none)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700919 }
920 }
921 }
922
Craig Mautnera0026042014-04-23 11:45:37 -0700923 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
924 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700925 if (r.state != ActivityState.STOPPING) {
926 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
927 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
928 return;
929 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700930 if (persistentState != null) {
931 r.persistentState = persistentState;
932 mService.notifyTaskPersisterLocked(r.task, false);
933 }
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700934 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700935 if (icicle != null) {
936 // If icicle is null, this is happening due to a timeout, so we
937 // haven't really saved the state.
938 r.icicle = icicle;
939 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800940 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -0800941 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700942 }
943 if (!r.stopped) {
944 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
945 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
946 r.stopped = true;
947 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -0700948 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
949 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700950 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700951 if (r.finishing) {
952 r.clearOptionsLocked();
953 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700954 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700955 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700956 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700957 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700958 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800959 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700960 }
961 }
962 }
963
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700964 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800965 ActivityRecord prev = mPausingActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700966 if (DEBUG_PAUSE) Slog.v(TAG, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800967
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800968 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700969 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800970 if (prev.finishing) {
971 if (DEBUG_PAUSE) Slog.v(TAG, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700972 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800973 } else if (prev.app != null) {
974 if (DEBUG_PAUSE) Slog.v(TAG, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -0800975 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800976 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(
977 TAG, "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -0800978 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800979 if (prev.configDestroy) {
980 // The previous is being paused because the configuration
981 // is changing, which means it is actually stopping...
982 // To juggle the fact that we are also starting a new
983 // instance right now, we need to first completely stop
984 // the current instance before starting the new one.
985 if (DEBUG_PAUSE) Slog.v(TAG, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700986 destroyActivityLocked(prev, true, "pause-config");
Jose Lima4b6c6692014-08-12 17:41:12 -0700987 } else if (!hasVisibleBehindActivity()) {
988 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -0700989 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700990 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -0700991 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
992 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800993 // If we already have a few activities waiting to stop,
994 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -0700995 // them out. Or if r is the last of activity of the last task the stack
996 // will be empty and must be cleared immediately.
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800997 if (DEBUG_PAUSE) Slog.v(TAG, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -0700998 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800999 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001000 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001001 }
1002 }
1003 } else {
1004 if (DEBUG_PAUSE) Slog.v(TAG, "App died during pause, not stopping: " + prev);
1005 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001006 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001007 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001008 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001009
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001010 if (resumeNext) {
1011 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1012 if (!mService.isSleepingOrShuttingDown()) {
1013 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1014 } else {
1015 mStackSupervisor.checkReadyForSleepLocked();
1016 ActivityRecord top = topStack.topRunningActivityLocked(null);
1017 if (top == null || (prev != null && top != prev)) {
1018 // If there are no more activities available to run,
1019 // do resume anyway to start something. Also if the top
1020 // activity on the stack is not the just paused activity,
1021 // we need to go ahead and resume it to ensure we complete
1022 // an in-flight app switch.
1023 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1024 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001025 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001026 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001027
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001028 if (prev != null) {
1029 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001030
Craig Mautner525f3d92013-05-07 14:01:50 -07001031 if (prev.app != null && prev.cpuTimeAtResume > 0
1032 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001033 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1034 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001035 if (diff > 0) {
1036 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1037 synchronized (bsi) {
1038 BatteryStatsImpl.Uid.Proc ps =
1039 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001040 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001041 if (ps != null) {
1042 ps.addForegroundTimeLocked(diff);
1043 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001044 }
1045 }
1046 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001047 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001048 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001049
1050 // Notfiy when the task stack has changed
1051 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001052 }
1053
1054 /**
1055 * Once we know that we have asked an application to put an activity in
1056 * the resumed state (either by launching it or explicitly telling it),
1057 * this function updates the rest of our state to match that fact.
1058 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001059 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001060 next.idle = false;
1061 next.results = null;
1062 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001063
1064 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1065 ProcessRecord app = next.task.mActivities.get(0).app;
1066 if (app != null && app != mService.mHomeProcess) {
1067 mService.mHomeProcess = app;
1068 }
1069 }
1070
Craig Mautner07566322013-09-26 16:42:55 -07001071 if (next.nowVisible) {
1072 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001073 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001074 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001075
1076 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001077 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001078
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001079 mStackSupervisor.reportResumedActivityLocked(next);
1080
1081 next.resumeKeyDispatchingLocked();
1082 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001083
1084 // Mark the point when the activity is resuming
1085 // TODO: To be more accurate, the mark should be before the onCreate,
1086 // not after the onResume. But for subsequent starts, onResume is fine.
1087 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001088 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001089 } else {
1090 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1091 }
Winson Chung376543b2014-05-21 17:43:28 -07001092
George Mount6ba042b2014-07-28 11:12:28 -07001093 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001094
1095 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1096 // When resuming an activity, require it to call requestVisibleBehind() again.
1097 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1098 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001099 }
1100
Craig Mautnere3a00d72014-04-16 08:31:19 -07001101 private void setVisibile(ActivityRecord r, boolean visible) {
1102 r.visible = visible;
1103 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001104 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001105 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001106 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001107 container.setVisible(visible);
1108 }
1109 }
1110
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001111 // Find the first visible activity above the passed activity and if it is translucent return it
1112 // otherwise return null;
1113 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1114 TaskRecord task = r.task;
1115 if (task == null) {
1116 return null;
1117 }
1118
1119 ActivityStack stack = task.stack;
1120 if (stack == null) {
1121 return null;
1122 }
1123
1124 int stackNdx = mStacks.indexOf(stack);
1125
1126 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1127 int taskNdx = tasks.indexOf(task);
1128
1129 ArrayList<ActivityRecord> activities = task.mActivities;
1130 int activityNdx = activities.indexOf(r) + 1;
1131
1132 final int numStacks = mStacks.size();
1133 while (stackNdx < numStacks) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001134 ActivityStack historyStack = mStacks.get(stackNdx);
1135 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001136 final int numTasks = tasks.size();
1137 while (taskNdx < numTasks) {
1138 activities = tasks.get(taskNdx).mActivities;
1139 final int numActivities = activities.size();
1140 while (activityNdx < numActivities) {
1141 final ActivityRecord activity = activities.get(activityNdx);
1142 if (!activity.finishing) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001143 return historyStack.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001144 }
1145 ++activityNdx;
1146 }
1147 activityNdx = 0;
1148 ++taskNdx;
1149 }
1150 taskNdx = 0;
1151 ++stackNdx;
1152 }
1153
1154 return null;
1155 }
1156
Jose Lima7ba71252014-04-30 12:59:27 -07001157 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1158 // If so, this stack is hidden, otherwise it is visible.
Todd Kennedyaab56db2015-01-30 09:39:53 -08001159 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001160 if (!isAttached()) {
1161 return false;
1162 }
1163
1164 if (mStackSupervisor.isFrontStack(this)) {
1165 return true;
1166 }
1167
Jose Lima729cb232014-05-05 15:59:40 -07001168 /**
1169 * Start at the task above this one and go up, looking for a visible
1170 * fullscreen activity, or a translucent activity that requested the
1171 * wallpaper to be shown behind it.
1172 */
Jose Lima7ba71252014-04-30 12:59:27 -07001173 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001174 ActivityStack stack = mStacks.get(i);
1175 // stack above isn't full screen, so, we assume we're still visible. at some point
1176 // we should look at the stack bounds to see if we're occluded even if the stack
1177 // isn't fullscreen
1178 if (!stack.mFullscreen) {
1179 continue;
1180 }
1181 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1182 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001183 final TaskRecord task = tasks.get(taskNdx);
1184 final ArrayList<ActivityRecord> activities = task.mActivities;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001185 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Jose Lima7ba71252014-04-30 12:59:27 -07001186 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001187
1188 // Conditions for an activity to obscure the stack we're
1189 // examining:
1190 // 1. Not Finishing AND Visible AND:
1191 // 2. Either:
1192 // - Full Screen Activity OR
1193 // - On top of Home and our stack is NOT home
1194 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001195 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001196 return false;
1197 }
1198 }
1199 }
1200 }
1201
1202 return true;
1203 }
1204
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001205 /**
1206 * Make sure that all activities that need to be visible (that is, they
1207 * currently can be seen by the user) actually are.
1208 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001209 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1210 ActivityRecord top = topRunningActivityLocked(null);
1211 if (top == null) {
1212 return;
1213 }
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001214 if (DEBUG_VISBILITY) Slog.v(
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001215 TAG, "ensureActivitiesVisible behind " + top
1216 + " configChanges=0x" + Integer.toHexString(configChanges));
1217
Craig Mautner5eda9b32013-07-02 11:58:16 -07001218 if (mTranslucentActivityWaiting != top) {
1219 mUndrawnActivitiesBelowTopTranslucent.clear();
1220 if (mTranslucentActivityWaiting != null) {
1221 // Call the callback with a timeout indication.
1222 notifyActivityDrawnLocked(null);
1223 mTranslucentActivityWaiting = null;
1224 }
1225 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1226 }
1227
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001228 // If the top activity is not fullscreen, then we need to
1229 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001230 boolean aboveTop = true;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001231 boolean behindFullscreen = !isStackVisibleLocked();
Jose Lima7ba71252014-04-30 12:59:27 -07001232
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001233 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001234 final TaskRecord task = mTaskHistory.get(taskNdx);
1235 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001236 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1237 final ActivityRecord r = activities.get(activityNdx);
1238 if (r.finishing) {
1239 continue;
1240 }
1241 if (aboveTop && r != top) {
1242 continue;
1243 }
1244 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001245 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1246 // but must be drawn initially for the animation as though they were visible.
1247 if (!behindFullscreen || r.mLaunchTaskBehind) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001248 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001249 TAG, "Make visible? " + r + " finishing=" + r.finishing
1250 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001251
Craig Mautnerd44711d2013-02-23 11:24:36 -08001252 // First: if this is not the current activity being started, make
1253 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001254 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001255 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001256 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001257
1258 if (r.app == null || r.app.thread == null) {
Craig Mautnerbb742462014-07-07 15:28:55 -07001259 // This activity needs to be visible, but isn't even
1260 // running... get it started, but don't resume it
1261 // at this point.
1262 if (DEBUG_VISBILITY) Slog.v(TAG, "Start and freeze screen for " + r);
1263 if (r != starting) {
1264 r.startFreezingScreenLocked(r.app, configChanges);
1265 }
1266 if (!r.visible || r.mLaunchTaskBehind) {
1267 if (DEBUG_VISBILITY) Slog.v(
1268 TAG, "Starting and making visible: " + r);
1269 setVisibile(r, true);
1270 }
1271 if (r != starting) {
1272 mStackSupervisor.startSpecificActivityLocked(r, false, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001273 }
1274
1275 } else if (r.visible) {
1276 // If this activity is already visible, then there is nothing
1277 // else to do here.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001278 if (DEBUG_VISBILITY) Slog.v(TAG, "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001279 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001280 try {
George Mount6ba042b2014-07-28 11:12:28 -07001281 if (r.returningOptions != null) {
1282 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1283 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001284 }
1285 } catch(RemoteException e) {
1286 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001287 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001288 // This activity is not currently visible, but is running.
1289 // Tell it to become visible.
1290 r.visible = true;
1291 if (r.state != ActivityState.RESUMED && r != starting) {
1292 // If this activity is paused, tell it
1293 // to now show its window.
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001294 if (DEBUG_VISBILITY) Slog.v(
Craig Mautnerd44711d2013-02-23 11:24:36 -08001295 TAG, "Making visible and scheduling visibility: " + r);
1296 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001297 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001298 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001299 mUndrawnActivitiesBelowTopTranslucent.add(r);
1300 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001301 setVisibile(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001302 r.sleeping = false;
1303 r.app.pendingUiClean = true;
1304 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1305 r.stopFreezingScreenLocked(false);
1306 } catch (Exception e) {
1307 // Just skip on any failure; we'll make it
1308 // visible when it next restarts.
1309 Slog.w(TAG, "Exception thrown making visibile: "
1310 + r.intent.getComponent(), e);
1311 }
1312 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001313 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001314
Craig Mautnerd44711d2013-02-23 11:24:36 -08001315 // Aggregate current change flags.
1316 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001317
Craig Mautnerd44711d2013-02-23 11:24:36 -08001318 if (r.fullscreen) {
1319 // At this point, nothing else needs to be shown
Craig Mautner580ea812013-04-25 12:58:38 -07001320 if (DEBUG_VISBILITY) Slog.v(TAG, "Fullscreen: at " + r);
1321 behindFullscreen = true;
Craig Mautner84984fa2014-06-19 11:19:20 -07001322 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Craig Mautner39e1c5a2013-10-23 15:14:22 -07001323 if (DEBUG_VISBILITY) Slog.v(TAG, "Showing home: at " + r);
Jose Lima729cb232014-05-05 15:59:40 -07001324 behindFullscreen = true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001325 }
1326 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001327 if (DEBUG_VISBILITY) Slog.v(
1328 TAG, "Make invisible? " + r + " finishing=" + r.finishing
1329 + " state=" + r.state
1330 + " behindFullscreen=" + behindFullscreen);
1331 // Now for any activities that aren't visible to the user, make
1332 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001333 if (r.visible) {
Craig Mautnera7f2bd42013-10-15 16:13:50 -07001334 if (DEBUG_VISBILITY) Slog.v(TAG, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001335 try {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001336 setVisibile(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001337 switch (r.state) {
1338 case STOPPING:
1339 case STOPPED:
1340 if (r.app != null && r.app.thread != null) {
1341 if (DEBUG_VISBILITY) Slog.v(
1342 TAG, "Scheduling invisibility: " + r);
1343 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1344 }
1345 break;
1346
1347 case INITIALIZING:
1348 case RESUMED:
1349 case PAUSING:
1350 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001351 // This case created for transitioning activities from
1352 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001353 if (getVisibleBehindActivity() == r) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001354 releaseBackgroundResources(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001355 } else {
1356 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1357 mStackSupervisor.mStoppingActivities.add(r);
1358 }
1359 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001360 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001361 break;
1362
1363 default:
1364 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001365 }
1366 } catch (Exception e) {
1367 // Just skip on any failure; we'll make it
1368 // visible when it next restarts.
1369 Slog.w(TAG, "Exception thrown making hidden: "
1370 + r.intent.getComponent(), e);
1371 }
1372 } else {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001373 if (DEBUG_VISBILITY) Slog.v(TAG, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001374 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001375 }
1376 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001377 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001378
1379 if (mTranslucentActivityWaiting != null &&
1380 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1381 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1382 notifyActivityDrawnLocked(null);
1383 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001384 }
Craig Mautner58547802013-03-05 08:23:53 -08001385
Todd Kennedyaab56db2015-01-30 09:39:53 -08001386 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001387 mTranslucentActivityWaiting = r;
1388 mUndrawnActivitiesBelowTopTranslucent.clear();
1389 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1390 }
1391
1392 /**
1393 * Called as activities below the top translucent activity are redrawn. When the last one is
1394 * redrawn notify the top activity by calling
1395 * {@link Activity#onTranslucentConversionComplete}.
1396 *
1397 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1398 * occurred and the activity will be notified immediately.
1399 */
1400 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001401 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001402 if ((r == null)
1403 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1404 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1405 // The last undrawn activity below the top has just been drawn. If there is an
1406 // opaque activity at the top, notify it that it can become translucent safely now.
1407 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1408 mTranslucentActivityWaiting = null;
1409 mUndrawnActivitiesBelowTopTranslucent.clear();
1410 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1411
Craig Mautner71dd1b62014-02-18 15:48:52 -08001412 if (waitingActivity != null) {
1413 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1414 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1415 try {
1416 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1417 waitingActivity.appToken, r != null);
1418 } catch (RemoteException e) {
1419 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001420 }
1421 }
1422 }
1423 }
1424
Craig Mautnera61bc652013-10-28 15:43:18 -07001425 /** If any activities below the top running one are in the INITIALIZING state and they have a
1426 * starting window displayed then remove that starting window. It is possible that the activity
1427 * in this state will never resumed in which case that starting window will be orphaned. */
1428 void cancelInitializingActivities() {
1429 final ActivityRecord topActivity = topRunningActivityLocked(null);
1430 boolean aboveTop = true;
1431 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1432 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1433 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1434 final ActivityRecord r = activities.get(activityNdx);
1435 if (aboveTop) {
1436 if (r == topActivity) {
1437 aboveTop = false;
1438 }
1439 continue;
1440 }
1441
1442 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
1443 if (DEBUG_VISBILITY) Slog.w(TAG, "Found orphaned starting window " + r);
1444 r.mStartingWindowShown = false;
1445 mWindowManager.removeAppStartingWindow(r.appToken);
1446 }
1447 }
1448 }
1449 }
1450
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001451 /**
1452 * Ensure that the top activity in the stack is resumed.
1453 *
1454 * @param prev The previously resumed activity, for when in the process
1455 * of pausing; can be null to call from elsewhere.
1456 *
1457 * @return Returns true if something is being resumed, or false if
1458 * nothing happened.
1459 */
1460 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001461 return resumeTopActivityLocked(prev, null);
1462 }
1463
1464 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001465 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001466 // Don't even start recursing.
1467 return false;
1468 }
1469
1470 boolean result = false;
1471 try {
1472 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001473 mStackSupervisor.inResumeTopActivity = true;
1474 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1475 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001476 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001477 }
Craig Mautner544efa72014-09-04 16:41:20 -07001478 result = resumeTopActivityInnerLocked(prev, options);
1479 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001480 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001481 }
1482 return result;
1483 }
1484
1485 final boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Craig Mautner5314a402013-09-26 12:40:16 -07001486 if (ActivityManagerService.DEBUG_LOCKSCREEN) mService.logLockScreen("");
1487
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001488 if (!mService.mBooting && !mService.mBooted) {
1489 // Not ready yet!
1490 return false;
1491 }
1492
Craig Mautnerdf88d732014-01-27 09:21:32 -08001493 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001494 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001495 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001496 // Do not resume this stack if its parent is not resumed.
1497 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1498 return false;
1499 }
1500
Craig Mautnera61bc652013-10-28 15:43:18 -07001501 cancelInitializingActivities();
1502
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001503 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001504 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001505
1506 // Remember how we'll process this pause/resume situation, and ensure
1507 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001508 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1509 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001510
Craig Mautner84984fa2014-06-19 11:19:20 -07001511 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001512 if (next == null) {
1513 // There are no more activities! Let's just start up the
1514 // Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001515 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001516 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001517 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001518 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001519 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1520 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1521 return isOnHomeDisplay() &&
Craig Mautner299f9602015-01-26 09:47:33 -08001522 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "noMoreActivities");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001523 }
1524
1525 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001526
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001527 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001528 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1529 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001530 // Make sure we have executed any pending transitions, since there
1531 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001532 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001533 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001534 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001535 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001536 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001537 return false;
1538 }
1539
Craig Mautner525f3d92013-05-07 14:01:50 -07001540 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001541 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001542 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001543 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001544 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001545 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001546 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001547 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001548 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001549 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001550 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001551 } else if (!isOnHomeDisplay()) {
1552 return false;
1553 } else if (!isHomeStack()){
1554 if (DEBUG_STATES) Slog.d(TAG,
Craig Mautnere0a38842013-12-16 16:14:02 -08001555 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001556 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1557 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
Craig Mautner299f9602015-01-26 09:47:33 -08001558 return mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001559 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001560 }
1561
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001562 // If we are sleeping, and there is no resumed activity, and the top
1563 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001564 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001565 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001566 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001567 // Make sure we have executed any pending transitions, since there
1568 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001569 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001570 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001571 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001572 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001573 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001574 return false;
1575 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001576
1577 // Make sure that the user who owns this activity is started. If not,
1578 // we will just leave it as is because someone should be bringing
1579 // another user's activities to the top of the stack.
1580 if (mService.mStartedUsers.get(next.userId) == null) {
1581 Slog.w(TAG, "Skipping resume of top activity " + next
1582 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001583 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001584 return false;
1585 }
1586
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001587 // The activity may be waiting for stop, but that is no longer
1588 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001589 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001590 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001591 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001592 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001593
1594 if (DEBUG_SWITCH) Slog.v(TAG, "Resuming " + next);
1595
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001596 // If we are currently pausing an activity, then don't do anything
1597 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001598 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001599 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG,
1600 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001601 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001602 return false;
1603 }
1604
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001605 // Okay we are now going to start a switch, to 'next'. We may first
1606 // have to pause the current activity, but this is an important point
1607 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001608 // XXX "App Redirected" dialog is getting too many false positives
1609 // at this point, so turn off for now.
1610 if (false) {
1611 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1612 long now = SystemClock.uptimeMillis();
1613 final boolean inTime = mLastStartedActivity.startTime != 0
1614 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1615 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1616 final int nextUid = next.info.applicationInfo.uid;
1617 if (inTime && lastUid != nextUid
1618 && lastUid != next.launchedFromUid
1619 && mService.checkPermission(
1620 android.Manifest.permission.STOP_APP_SWITCHES,
1621 -1, next.launchedFromUid)
1622 != PackageManager.PERMISSION_GRANTED) {
1623 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1624 } else {
1625 next.startTime = now;
1626 mLastStartedActivity = next;
1627 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001628 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001629 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001630 mLastStartedActivity = next;
1631 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001632 }
Craig Mautner58547802013-03-05 08:23:53 -08001633
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001634 // We need to start pausing the current activity so the top one
1635 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001636 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1637 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001638 if (mResumedActivity != null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001639 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001640 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001641 }
1642 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001643 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1644 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001645 // At this point we want to put the upcoming activity's process
1646 // at the top of the LRU list, since we know we will be needing it
1647 // very soon and it would be a waste to let it get killed if it
1648 // happens to be sitting towards the end.
1649 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001650 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001651 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001652 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001653 return true;
1654 }
1655
Christopher Tated3f175c2012-06-14 14:16:54 -07001656 // If the most recent activity was noHistory but was only stopped rather
1657 // than stopped+finished because the device went to sleep, we need to make
1658 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001659 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001660 !mLastNoHistoryActivity.finishing) {
1661 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1662 " on new resume");
1663 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001664 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001665 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001666 }
1667
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001668 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001669 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1670 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001671 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001672 if (DEBUG_SWITCH) Slog.v(
1673 TAG, "Resuming top, waiting visible to hide: " + prev);
1674 } else {
1675 // The next activity is already visible, so hide the previous
1676 // activity's windows right now so we can show the new one ASAP.
1677 // We only do this if the previous is finishing, which should mean
1678 // it is on top of the one being resumed so hiding it quickly
1679 // is good. Otherwise, we want to do the normal route of allowing
1680 // the resumed activity to be shown so we can decide if the
1681 // previous should actually be hidden depending on whether the
1682 // new one is found to be full-screen or not.
1683 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001684 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001685 if (DEBUG_SWITCH) Slog.v(TAG, "Not waiting for visible to hide: "
1686 + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001687 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001688 + ", nowVisible=" + next.nowVisible);
1689 } else {
Craig Mautner8c14c152015-01-15 17:32:07 -08001690 if (DEBUG_SWITCH) Slog.v(TAG,
1691 "Previous already visible but still waiting to hide: " + prev
1692 + ", waitingVisible="
1693 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1694 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001695 }
1696 }
1697 }
1698
Dianne Hackborne7f97212011-02-24 14:40:20 -08001699 // Launching this app's activity, make sure the app is no longer
1700 // considered stopped.
1701 try {
1702 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001703 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001704 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001705 } catch (IllegalArgumentException e) {
1706 Slog.w(TAG, "Failed trying to unstop package "
1707 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001708 }
1709
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001710 // We are starting up the next activity, so tell the window manager
1711 // that the previous one will be hidden soon. This way it can know
1712 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001713 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001714 if (prev != null) {
1715 if (prev.finishing) {
1716 if (DEBUG_TRANSITION) Slog.v(TAG,
1717 "Prepare close transition: prev=" + prev);
1718 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001719 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001720 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001721 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001722 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001723 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1724 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001725 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001726 mWindowManager.setAppWillBeHidden(prev.appToken);
1727 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001728 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001729 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001730 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001731 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001732 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001733 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001734 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001735 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001736 : next.mLaunchTaskBehind
1737 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1738 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001739 }
1740 }
1741 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001742 mWindowManager.setAppWillBeHidden(prev.appToken);
1743 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001744 }
Craig Mautner967212c2013-04-13 21:10:58 -07001745 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001746 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001747 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001748 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001749 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001750 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001751 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001752 }
1753 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001754
1755 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001756 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001757 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1758 if (opts != null) {
1759 resumeAnimOptions = opts.toBundle();
1760 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001761 next.applyOptionsLocked();
1762 } else {
1763 next.clearOptionsLocked();
1764 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001765
Craig Mautnercf910b02013-04-23 11:23:27 -07001766 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001767 if (next.app != null && next.app.thread != null) {
1768 if (DEBUG_SWITCH) Slog.v(TAG, "Resume running: " + next);
1769
1770 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001771 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001772
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001773 // schedule launch ticks to collect information about slow apps.
1774 next.startLaunchTickingLocked();
1775
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001776 ActivityRecord lastResumedActivity =
1777 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001778 ActivityState lastState = next.state;
1779
1780 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001781
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001782 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001783 next.state = ActivityState.RESUMED;
1784 mResumedActivity = next;
1785 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08001786 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001787 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001788 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001789 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001790
1791 // Have the window manager re-evaluate the orientation of
1792 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001793 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001794 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001795 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001796 mService.mConfiguration,
1797 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1798 if (config != null) {
1799 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001800 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001801 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001802 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001803
Craig Mautner525f3d92013-05-07 14:01:50 -07001804 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001805 // The configuration update wasn't able to keep the existing
1806 // instance of the activity, and instead started a new one.
1807 // We should be all done, but let's just make sure our activity
1808 // is still at the top and schedule another run if something
1809 // weird happened.
1810 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001811 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001812 "Activity config changed during resume: " + next
1813 + ", new next: " + nextNext);
1814 if (nextNext != next) {
1815 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001816 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001817 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001818 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001819 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001820 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001821 return true;
1822 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001823 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001824 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001825 }
Craig Mautner58547802013-03-05 08:23:53 -08001826
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001827 try {
1828 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001829 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001830 if (a != null) {
1831 final int N = a.size();
1832 if (!next.finishing && N > 0) {
1833 if (DEBUG_RESULTS) Slog.v(
1834 TAG, "Delivering results to " + next
1835 + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001836 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001837 }
1838 }
1839
1840 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001841 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001842 }
1843
Craig Mautner299f9602015-01-26 09:47:33 -08001844 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
1845 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001846
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001847 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001848 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001849 next.app.pendingUiClean = true;
Dianne Hackborna413dc02013-07-12 12:02:55 -07001850 next.app.forceProcessStateUpTo(ActivityManager.PROCESS_STATE_TOP);
George Mount2c92c972014-03-20 09:38:23 -07001851 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001852 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001853 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001854
Craig Mautner0eea92c2013-05-16 13:35:39 -07001855 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001856
Craig Mautnerac6f8432013-07-17 13:24:59 -07001857 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 } catch (Exception e) {
1859 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001860 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1861 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001862 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001863 if (lastStack != null) {
1864 lastStack.mResumedActivity = lastResumedActivity;
1865 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001866 Slog.i(TAG, "Restarting because process died: " + next);
1867 if (!next.hasBeenLaunched) {
1868 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001869 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1870 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001871 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001872 next.appToken, next.packageName, next.theme,
1873 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001874 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1875 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001876 }
George Mount2c92c972014-03-20 09:38:23 -07001877 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001878 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001879 return true;
1880 }
1881
1882 // From this point on, if something goes wrong there is no way
1883 // to recover the activity.
1884 try {
1885 next.visible = true;
1886 completeResumeLocked(next);
1887 } catch (Exception e) {
1888 // If any exception gets thrown, toss away this
1889 // activity and try the next one.
1890 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001891 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001892 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001893 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001894 return true;
1895 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001896 next.stopped = false;
1897
1898 } else {
1899 // Whoops, need to restart this activity!
1900 if (!next.hasBeenLaunched) {
1901 next.hasBeenLaunched = true;
1902 } else {
1903 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001904 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001905 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001906 mService.compatibilityInfoForPackageLocked(
1907 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001908 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001909 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001910 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001911 }
1912 if (DEBUG_SWITCH) Slog.v(TAG, "Restarting: " + next);
1913 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001914 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07001915 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001916 }
1917
Craig Mautnercf910b02013-04-23 11:23:27 -07001918 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001919 return true;
1920 }
1921
Craig Mautnerac6f8432013-07-17 13:24:59 -07001922 private void insertTaskAtTop(TaskRecord task) {
Craig Mautner9c85c202013-10-04 20:11:26 -07001923 // If this is being moved to the top by another activity or being launched from the home
1924 // activity, set mOnTopOfHome accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08001925 if (isOnHomeDisplay()) {
1926 ActivityStack lastStack = mStackSupervisor.getLastStack();
1927 final boolean fromHome = lastStack.isHomeStack();
1928 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07001929 task.setTaskToReturnTo(fromHome
1930 ? lastStack.topTask() == null
1931 ? HOME_ACTIVITY_TYPE
1932 : lastStack.topTask().taskType
1933 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08001934 }
1935 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07001936 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07001937 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001938
Craig Mautnerac6f8432013-07-17 13:24:59 -07001939 mTaskHistory.remove(task);
1940 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07001941 int taskNdx = mTaskHistory.size();
Kenny Guy2a764942014-04-02 13:29:20 +01001942 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001943 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07001944 while (--taskNdx >= 0) {
1945 if (!isCurrentProfileLocked(mTaskHistory.get(taskNdx).userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001946 break;
1947 }
1948 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001949 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07001950 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001951 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001952 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001953 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001954
Craig Mautner8849a5e2013-04-02 16:41:03 -07001955 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001956 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001957 TaskRecord rTask = r.task;
1958 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07001959 // mLaunchTaskBehind tasks get placed at the back of the task stack.
1960 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08001961 // Last activity in task had been removed or ActivityManagerService is reusing task.
1962 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001963 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001964 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001965 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001966 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001967 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001968 if (!newTask) {
1969 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001970 boolean startIt = true;
1971 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1972 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08001973 if (task.getTopActivity() == null) {
1974 // All activities in task are finishing.
1975 continue;
1976 }
Craig Mautner70a86932013-02-28 22:37:44 -08001977 if (task == r.task) {
1978 // Here it is! Now, if this is not yet visible to the
1979 // user, then just add it without starting; it will
1980 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08001981 if (!startIt) {
1982 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
1983 + task, new RuntimeException("here").fillInStackTrace());
1984 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001985 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001986 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
1987 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001988 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautnerbb742462014-07-07 15:28:55 -07001989 r.userId, r.info.configChanges, task.voiceSession != null,
1990 r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001991 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001992 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001993 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07001994 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001995 return;
1996 }
1997 break;
Craig Mautner70a86932013-02-28 22:37:44 -08001998 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001999 startIt = false;
2000 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002001 }
2002 }
2003
2004 // Place a new activity at top of stack, so it is next to interact
2005 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002006
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002007 // If we are not placing the new activity frontmost, we do not want
2008 // to deliver the onUserLeaving callback to the actual frontmost
2009 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002010 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002011 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08002012 if (DEBUG_USER_LEAVING) Slog.v(TAG,
2013 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002014 }
Craig Mautner70a86932013-02-28 22:37:44 -08002015
2016 task = r.task;
2017
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002018 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002019 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002020 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002021 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002022 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002023
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002024 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002025 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002026 // We want to show the starting preview window if we are
2027 // switching to a new task, or the next activity's process is
2028 // not currently running.
2029 boolean showStartingIcon = newTask;
2030 ProcessRecord proc = r.app;
2031 if (proc == null) {
2032 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2033 }
2034 if (proc == null || proc.thread == null) {
2035 showStartingIcon = true;
2036 }
2037 if (DEBUG_TRANSITION) Slog.v(TAG,
2038 "Prepare open transition: starting " + r);
2039 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002040 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002041 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002042 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002043 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002044 ? r.mLaunchTaskBehind
2045 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2046 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002047 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002048 mNoAnimActivities.remove(r);
2049 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002050 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08002051 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002052 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002053 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002054 boolean doShow = true;
2055 if (newTask) {
2056 // Even though this activity is starting fresh, we still need
2057 // to reset it to make sure we apply affinities to move any
2058 // existing activities from other tasks in to it.
2059 // If the caller has requested that the target task be
2060 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002061 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002062 resetTaskIfNeededLocked(r, r);
2063 doShow = topRunningNonDelayedActivityLocked(null) == r;
2064 }
George Mount70778d72014-07-01 16:33:45 -07002065 } else if (options != null && new ActivityOptions(options).getAnimationType()
2066 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2067 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002068 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002069 if (r.mLaunchTaskBehind) {
2070 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2071 // tell WindowManager that r is visible even though it is at the back of the stack.
2072 mWindowManager.setAppVisibility(r.appToken, true);
2073 ensureActivitiesVisibleLocked(null, 0);
2074 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002075 // Figure out if we are transitioning from another activity that is
2076 // "has the same starting icon" as the next one. This allows the
2077 // window manager to keep the previous window it had previously
2078 // created, if it still had one.
2079 ActivityRecord prev = mResumedActivity;
2080 if (prev != null) {
2081 // We don't want to reuse the previous starting preview if:
2082 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002083 if (prev.task != r.task) {
2084 prev = null;
2085 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002086 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002087 else if (prev.nowVisible) {
2088 prev = null;
2089 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002090 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002091 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002092 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002093 mService.compatibilityInfoForPackageLocked(
2094 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002095 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002096 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002097 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002098 }
2099 } else {
2100 // If this is the first activity, don't do any fancy animations,
2101 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002102 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08002103 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002104 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002105 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002106 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002107 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002108 }
2109 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002110 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002111 }
2112
2113 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002114 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002115 }
2116 }
2117
Dianne Hackbornbe707852011-11-11 14:32:10 -08002118 final void validateAppTokensLocked() {
2119 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002120 mValidateAppTokens.ensureCapacity(numActivities());
2121 final int numTasks = mTaskHistory.size();
2122 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2123 TaskRecord task = mTaskHistory.get(taskNdx);
2124 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002125 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002126 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002127 }
Craig Mautner000f0022013-02-26 15:04:29 -08002128 TaskGroup group = new TaskGroup();
2129 group.taskId = task.taskId;
2130 mValidateAppTokens.add(group);
2131 final int numActivities = activities.size();
2132 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2133 final ActivityRecord r = activities.get(activityNdx);
2134 group.tokens.add(r.appToken);
2135 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002136 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002137 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002138 }
2139
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002140 /**
2141 * Perform a reset of the given task, if needed as part of launching it.
2142 * Returns the new HistoryRecord at the top of the task.
2143 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002144 /**
2145 * Helper method for #resetTaskIfNeededLocked.
2146 * We are inside of the task being reset... we'll either finish this activity, push it out
2147 * for another task, or leave it as-is.
2148 * @param task The task containing the Activity (taskTop) that might be reset.
2149 * @param forceReset
2150 * @return An ActivityOptions that needs to be processed.
2151 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002152 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002153 ActivityOptions topOptions = null;
2154
2155 int replyChainEnd = -1;
2156 boolean canMoveOptions = true;
2157
2158 // We only do this for activities that are not the root of the task (since if we finish
2159 // the root, we may no longer have the task!).
2160 final ArrayList<ActivityRecord> activities = task.mActivities;
2161 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002162 final int rootActivityNdx = task.findEffectiveRootIndex();
2163 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002164 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002165 if (target.frontOfTask)
2166 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002167
2168 final int flags = target.info.flags;
2169 final boolean finishOnTaskLaunch =
2170 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2171 final boolean allowTaskReparenting =
2172 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2173 final boolean clearWhenTaskReset =
2174 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2175
2176 if (!finishOnTaskLaunch
2177 && !clearWhenTaskReset
2178 && target.resultTo != null) {
2179 // If this activity is sending a reply to a previous
2180 // activity, we can't do anything with it now until
2181 // we reach the start of the reply chain.
2182 // XXX note that we are assuming the result is always
2183 // to the previous activity, which is almost always
2184 // the case but we really shouldn't count on.
2185 if (replyChainEnd < 0) {
2186 replyChainEnd = i;
2187 }
2188 } else if (!finishOnTaskLaunch
2189 && !clearWhenTaskReset
2190 && allowTaskReparenting
2191 && target.taskAffinity != null
2192 && !target.taskAffinity.equals(task.affinity)) {
2193 // If this activity has an affinity for another
2194 // task, then we need to move it out of here. We will
2195 // move it as far out of the way as possible, to the
2196 // bottom of the activity stack. This also keeps it
2197 // correctly ordered with any activities we previously
2198 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002199 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002200 final ActivityRecord bottom =
2201 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002202 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002203 if (bottom != null && target.taskAffinity != null
2204 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002205 // If the activity currently at the bottom has the
2206 // same task affinity as the one we are moving,
2207 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002208 targetTask = bottom.task;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002209 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002210 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002211 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002212 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002213 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002214 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002215 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
2216 + " out to new task " + target.task);
2217 }
2218
Craig Mautnere3a74d52013-02-22 14:14:58 -08002219 final int targetTaskId = targetTask.taskId;
Craig Mautner83162a92015-01-26 14:43:30 -08002220 mWindowManager.setAppTask(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002221
Craig Mautner525f3d92013-05-07 14:01:50 -07002222 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002223 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2224 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002225 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002226 if (p.finishing) {
2227 continue;
2228 }
2229
Craig Mautnere3a74d52013-02-22 14:14:58 -08002230 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002231 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002232 topOptions = p.takeOptionsLocked();
2233 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002234 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002235 }
2236 }
2237 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08002238 + task + " adding to task=" + targetTask
2239 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08002240 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
2241 + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002242 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002243 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002244
Craig Mautner83162a92015-01-26 14:43:30 -08002245 mWindowManager.setAppTask(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002246 }
2247
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002248 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002249 if (VALIDATE_TOKENS) {
2250 validateAppTokensLocked();
2251 }
2252
2253 replyChainEnd = -1;
2254 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2255 // If the activity should just be removed -- either
2256 // because it asks for it, or the task should be
2257 // cleared -- then finish it and anything that is
2258 // part of its reply chain.
2259 int end;
2260 if (clearWhenTaskReset) {
2261 // In this case, we want to finish this activity
2262 // and everything above it, so be sneaky and pretend
2263 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002264 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002265 } else if (replyChainEnd < 0) {
2266 end = i;
2267 } else {
2268 end = replyChainEnd;
2269 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002270 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002271 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002272 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002273 if (p.finishing) {
2274 continue;
2275 }
2276 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002277 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002278 topOptions = p.takeOptionsLocked();
2279 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002280 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002281 }
2282 }
Craig Mautner58547802013-03-05 08:23:53 -08002283 if (DEBUG_TASKS) Slog.w(TAG,
2284 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002285 if (finishActivityLocked(
2286 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002287 end--;
2288 srcPos--;
2289 }
2290 }
2291 replyChainEnd = -1;
2292 } else {
2293 // If we were in the middle of a chain, well the
2294 // activity that started it all doesn't want anything
2295 // special, so leave it all as-is.
2296 replyChainEnd = -1;
2297 }
2298 }
2299
2300 return topOptions;
2301 }
2302
2303 /**
2304 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2305 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2306 * @param affinityTask The task we are looking for an affinity to.
2307 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2308 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2309 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2310 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002311 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002312 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002313 int replyChainEnd = -1;
2314 final int taskId = task.taskId;
2315 final String taskAffinity = task.affinity;
2316
2317 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2318 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002319 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2320
2321 // Do not operate on or below the effective root Activity.
2322 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002323 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002324 if (target.frontOfTask)
2325 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002326
2327 final int flags = target.info.flags;
2328 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2329 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2330
2331 if (target.resultTo != null) {
2332 // If this activity is sending a reply to a previous
2333 // activity, we can't do anything with it now until
2334 // we reach the start of the reply chain.
2335 // XXX note that we are assuming the result is always
2336 // to the previous activity, which is almost always
2337 // the case but we really shouldn't count on.
2338 if (replyChainEnd < 0) {
2339 replyChainEnd = i;
2340 }
2341 } else if (topTaskIsHigher
2342 && allowTaskReparenting
2343 && taskAffinity != null
2344 && taskAffinity.equals(target.taskAffinity)) {
2345 // This activity has an affinity for our task. Either remove it if we are
2346 // clearing or move it over to our task. Note that
2347 // we currently punt on the case where we are resetting a
2348 // task that is not at the top but who has activities above
2349 // with an affinity to it... this is really not a normal
2350 // case, and we will need to later pull that task to the front
2351 // and usually at that point we will do the reset and pick
2352 // up those remaining activities. (This only happens if
2353 // someone starts an activity in a new task from an activity
2354 // in a task that is not currently on top.)
2355 if (forceReset || finishOnTaskLaunch) {
2356 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2357 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2358 for (int srcPos = start; srcPos >= i; --srcPos) {
2359 final ActivityRecord p = activities.get(srcPos);
2360 if (p.finishing) {
2361 continue;
2362 }
Todd Kennedy539db512014-12-15 09:57:55 -08002363 finishActivityLocked(
2364 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002365 }
2366 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002367 if (taskInsertionPoint < 0) {
2368 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002369
Craig Mautner77878772013-03-04 19:46:24 -08002370 }
Craig Mautner77878772013-03-04 19:46:24 -08002371
2372 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2373 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2374 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2375 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002376 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002377 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002378 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002379
Craig Mautnere3a74d52013-02-22 14:14:58 -08002380 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2381 + " to stack at " + task,
2382 new RuntimeException("here").fillInStackTrace());
2383 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2384 + " in to resetting task " + task);
Craig Mautner83162a92015-01-26 14:43:30 -08002385 mWindowManager.setAppTask(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002386 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002387 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002388 if (VALIDATE_TOKENS) {
2389 validateAppTokensLocked();
2390 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002391
2392 // Now we've moved it in to place... but what if this is
2393 // a singleTop activity and we have put it on top of another
2394 // instance of the same activity? Then we drop the instance
2395 // below so it remains singleTop.
2396 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2397 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002398 int targetNdx = taskActivities.indexOf(target);
2399 if (targetNdx > 0) {
2400 ActivityRecord p = taskActivities.get(targetNdx - 1);
2401 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002402 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2403 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002404 }
2405 }
2406 }
2407 }
2408
2409 replyChainEnd = -1;
2410 }
2411 }
Craig Mautner77878772013-03-04 19:46:24 -08002412 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002413 }
2414
Craig Mautner8849a5e2013-04-02 16:41:03 -07002415 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002416 ActivityRecord newActivity) {
2417 boolean forceReset =
2418 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2419 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2420 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2421 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2422 forceReset = true;
2423 }
2424 }
2425
2426 final TaskRecord task = taskTop.task;
2427
2428 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2429 * for remaining tasks. Used for later tasks to reparent to task. */
2430 boolean taskFound = false;
2431
2432 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2433 ActivityOptions topOptions = null;
2434
Craig Mautner77878772013-03-04 19:46:24 -08002435 // Preserve the location for reparenting in the new task.
2436 int reparentInsertionPoint = -1;
2437
Craig Mautnere3a74d52013-02-22 14:14:58 -08002438 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2439 final TaskRecord targetTask = mTaskHistory.get(i);
2440
2441 if (targetTask == task) {
2442 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2443 taskFound = true;
2444 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002445 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2446 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002447 }
2448 }
2449
Craig Mautner70a86932013-02-28 22:37:44 -08002450 int taskNdx = mTaskHistory.indexOf(task);
2451 do {
2452 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2453 } while (taskTop == null && taskNdx >= 0);
2454
Craig Mautnere3a74d52013-02-22 14:14:58 -08002455 if (topOptions != null) {
2456 // If we got some ActivityOptions from an activity on top that
2457 // was removed from the task, propagate them to the new real top.
2458 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002459 taskTop.updateOptionsLocked(topOptions);
2460 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002461 topOptions.abort();
2462 }
2463 }
2464
2465 return taskTop;
2466 }
2467
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002468 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2469 String resultWho, int requestCode, int resultCode, Intent data) {
2470
2471 if (callingUid > 0) {
2472 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002473 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002474 }
2475
2476 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2477 + " : who=" + resultWho + " req=" + requestCode
2478 + " res=" + resultCode + " data=" + data);
2479 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2480 try {
2481 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2482 list.add(new ResultInfo(resultWho, requestCode,
2483 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002484 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002485 return;
2486 } catch (Exception e) {
2487 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2488 }
2489 }
2490
2491 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2492 }
2493
Craig Mautner299f9602015-01-26 09:47:33 -08002494 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002495 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2496 ActivityRecord next = topRunningActivityLocked(null);
2497 if (next != r) {
2498 final TaskRecord task = r.task;
Craig Mautner84984fa2014-06-19 11:19:20 -07002499 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08002500 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(),
2501 reason + " adjustFocus");
Craig Mautner04f0b702013-10-22 12:31:01 -07002502 }
2503 }
Winson Chung648c83b2014-04-28 15:11:56 -07002504 ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
2505 if (top != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002506 mService.setFocusedActivityLocked(top, reason + " adjustTopFocus");
Winson Chung648c83b2014-04-28 15:11:56 -07002507 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002508 }
2509 }
2510
Craig Mautnerf3333272013-04-22 10:55:53 -07002511 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002512 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2513 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2514 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2515 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002516 if (!mService.isSleeping()) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002517 if (DEBUG_STATES) {
2518 Slog.d(TAG, "no-history finish of " + r);
2519 }
2520 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Todd Kennedy539db512014-12-15 09:57:55 -08002521 "stop-no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002522 } else {
2523 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2524 + " on stop because we're just sleeping");
2525 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002526 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002527 }
2528
2529 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002530 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002531 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002532 try {
2533 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002534 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2535 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002536 r.state = ActivityState.STOPPING;
2537 if (DEBUG_VISBILITY) Slog.v(
2538 TAG, "Stopping visible=" + r.visible + " for " + r);
2539 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002540 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002541 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002542 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002543 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002544 r.setSleeping(true);
2545 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002546 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002547 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002548 } catch (Exception e) {
2549 // Maybe just ignore exceptions here... if the process
2550 // has crashed, our death notification will clean things
2551 // up.
2552 Slog.w(TAG, "Exception thrown during pause", e);
2553 // Just in case, assume it to be stopped.
2554 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002555 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002556 r.state = ActivityState.STOPPED;
2557 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002558 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002559 }
2560 }
2561 }
2562 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002563
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002564 /**
2565 * @return Returns true if the activity is being finished, false if for
2566 * some reason it is being left as-is.
2567 */
2568 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002569 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002570 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002571 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002572 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002573 + ", result=" + resultCode + ", data=" + resultData
2574 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002575 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002576 return false;
2577 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002578
Craig Mautnerd44711d2013-02-23 11:24:36 -08002579 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002580 return true;
2581 }
2582
Craig Mautnerd2328952013-03-05 12:46:26 -08002583 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002584 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2585 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2586 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2587 ActivityRecord r = activities.get(activityNdx);
2588 if (r.resultTo == self && r.requestCode == requestCode) {
2589 if ((r.resultWho == null && resultWho == null) ||
2590 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2591 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2592 false);
2593 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002594 }
2595 }
2596 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002597 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002598 }
2599
Todd Kennedy539db512014-12-15 09:57:55 -08002600 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002601 ActivityRecord r = topRunningActivityLocked(null);
2602 if (r != null && r.app == app) {
2603 // If the top running activity is from this crashing
2604 // process, then terminate it to avoid getting in a loop.
2605 Slog.w(TAG, " Force finishing activity "
2606 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002607 int taskNdx = mTaskHistory.indexOf(r.task);
2608 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002609 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002610 // Also terminate any activities below it that aren't yet
2611 // stopped, to avoid a situation where one will get
2612 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002613 --activityNdx;
2614 if (activityNdx < 0) {
2615 do {
2616 --taskNdx;
2617 if (taskNdx < 0) {
2618 break;
2619 }
2620 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2621 } while (activityNdx < 0);
2622 }
2623 if (activityNdx >= 0) {
2624 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002625 if (r.state == ActivityState.RESUMED
2626 || r.state == ActivityState.PAUSING
2627 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002628 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002629 Slog.w(TAG, " Force finishing activity "
2630 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002631 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002632 }
2633 }
2634 }
2635 }
2636 }
2637
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002638 final void finishVoiceTask(IVoiceInteractionSession session) {
2639 IBinder sessionBinder = session.asBinder();
2640 boolean didOne = false;
2641 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2642 TaskRecord tr = mTaskHistory.get(taskNdx);
2643 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2644 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2645 ActivityRecord r = tr.mActivities.get(activityNdx);
2646 if (!r.finishing) {
2647 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2648 false);
2649 didOne = true;
2650 }
2651 }
2652 }
2653 }
2654 if (didOne) {
2655 mService.updateOomAdjLocked();
2656 }
2657 }
2658
Craig Mautnerd2328952013-03-05 12:46:26 -08002659 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002660 ArrayList<ActivityRecord> activities = r.task.mActivities;
2661 for (int index = activities.indexOf(r); index >= 0; --index) {
2662 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002663 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002664 break;
2665 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002666 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002667 }
2668 return true;
2669 }
2670
Dianne Hackborn5c607432012-02-28 14:44:19 -08002671 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2672 // send the result
2673 ActivityRecord resultTo = r.resultTo;
2674 if (resultTo != null) {
2675 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2676 + " who=" + r.resultWho + " req=" + r.requestCode
2677 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002678 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002679 if (resultData != null) {
Nicolas Prevotd1c99b12014-07-04 16:56:17 +01002680 resultData.setContentUserHint(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002681 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002682 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002683 if (r.info.applicationInfo.uid > 0) {
2684 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2685 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002686 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002687 }
2688 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2689 resultData);
2690 r.resultTo = null;
2691 }
2692 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2693
2694 // Make sure this HistoryRecord is not holding on to other resources,
2695 // because clients have remote IPC references to this object so we
2696 // can't assume that will go away and want to avoid circular IPC refs.
2697 r.results = null;
2698 r.pendingResults = null;
2699 r.newIntents = null;
2700 r.icicle = null;
2701 }
2702
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002703 /**
2704 * @return Returns true if this activity has been removed from the history
2705 * list, or false if it is still in the list and will be removed later.
2706 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002707 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2708 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002709 if (r.finishing) {
2710 Slog.w(TAG, "Duplicate finish request for " + r);
2711 return false;
2712 }
2713
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002714 r.makeFinishing();
Craig Mautneraea74a52014-03-08 14:23:10 -08002715 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002716 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002717 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002718 task.taskId, r.shortComponentName, reason);
2719 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002720 final int index = activities.indexOf(r);
2721 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002722 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002723 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002724 // If the caller asked that this activity (and all above it)
2725 // be cleared when the task is reset, don't lose that information,
2726 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002727 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002728 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002729 }
2730 }
2731
2732 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002733
Craig Mautner299f9602015-01-26 09:47:33 -08002734 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002735
Dianne Hackborn5c607432012-02-28 14:44:19 -08002736 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002737
Craig Mautnerde4ef022013-04-07 19:01:33 -07002738 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002739 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002740 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002741 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002742 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002743 ? AppTransition.TRANSIT_TASK_CLOSE
2744 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002745
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002746 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002747 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002748
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002749 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002750 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2751 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002752 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002753 }
2754
Craig Mautneraea74a52014-03-08 14:23:10 -08002755 if (endTask) {
2756 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
2757 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002758 } else if (r.state != ActivityState.PAUSING) {
2759 // If the activity is PAUSING, we will complete the finish once
2760 // it is done pausing; else we can just directly finish it here.
2761 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002762 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002763 } else {
2764 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2765 }
2766
2767 return false;
2768 }
2769
Craig Mautnerf3333272013-04-22 10:55:53 -07002770 static final int FINISH_IMMEDIATELY = 0;
2771 static final int FINISH_AFTER_PAUSE = 1;
2772 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002773
Craig Mautnerf3333272013-04-22 10:55:53 -07002774 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002775 // First things first: if this activity is currently visible,
2776 // and the resumed activity is not yet visible, then hold off on
2777 // finishing until the resumed one becomes visible.
2778 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002779 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2780 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002781 if (mStackSupervisor.mStoppingActivities.size() > 3
2782 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002783 // If we already have a few activities waiting to stop,
2784 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002785 // them out. Or if r is the last of activity of the last task the stack
2786 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002787 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002788 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002789 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002790 }
2791 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002792 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2793 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002794 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002795 if (oomAdj) {
2796 mService.updateOomAdjLocked();
2797 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002798 return r;
2799 }
2800
2801 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002802 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002803 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002804 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002805 if (mResumedActivity == r) {
2806 mResumedActivity = null;
2807 }
2808 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002809 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002810 r.state = ActivityState.FINISHING;
2811
2812 if (mode == FINISH_IMMEDIATELY
2813 || prevState == ActivityState.STOPPED
2814 || prevState == ActivityState.INITIALIZING) {
2815 // If this activity is already stopped, we can just finish
2816 // it right now.
Craig Mautnerd163e752014-06-13 17:18:47 -07002817 r.makeFinishing();
Craig Mautneree2e45a2014-06-27 12:10:03 -07002818 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002819 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002820 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002821 }
Craig Mautner8c14c152015-01-15 17:32:07 -08002822 if (DEBUG_CONTAINERS) Slog.d(TAG,
Craig Mautnerd163e752014-06-13 17:18:47 -07002823 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
2824 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002825 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002826 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002827
2828 // Need to go through the full pause cycle to get this
2829 // activity into the stopped state and then finish it.
2830 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002831 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002832 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002833 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002834 return r;
2835 }
2836
Craig Mautneree36c772014-07-16 14:56:05 -07002837 void finishAllActivitiesLocked(boolean immediately) {
2838 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002839 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2840 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2841 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2842 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07002843 noActivitiesInStack = false;
2844 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002845 continue;
2846 }
Craig Mautneree36c772014-07-16 14:56:05 -07002847 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002848 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2849 }
2850 }
Craig Mautneree36c772014-07-16 14:56:05 -07002851 if (noActivitiesInStack) {
2852 mActivityContainer.onTaskListEmptyLocked();
2853 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002854 }
2855
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002856 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
2857 // Basic case: for simple app-centric recents, we need to recreate
2858 // the task if the affinity has changed.
2859 if (srec == null || srec.task.affinity == null ||
2860 !srec.task.affinity.equals(destAffinity)) {
2861 return true;
2862 }
2863 // Document-centric case: an app may be split in to multiple documents;
2864 // they need to re-create their task if this current activity is the root
2865 // of a document, unless simply finishing it will return them to the the
2866 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07002867 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
2868 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002869 // Okay, this activity is at the root of its task. What to do, what to do...
2870 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
2871 // Finishing won't return to an application, so we need to recreate.
2872 return true;
2873 }
2874 // We now need to get the task below it to determine what to do.
2875 int taskIdx = mTaskHistory.indexOf(srec.task);
2876 if (taskIdx <= 0) {
2877 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
2878 return false;
2879 }
2880 if (taskIdx == 0) {
2881 // At the bottom of the stack, nothing to go back to.
2882 return true;
2883 }
2884 TaskRecord prevTask = mTaskHistory.get(taskIdx);
2885 if (!srec.task.affinity.equals(prevTask.affinity)) {
2886 // These are different apps, so need to recreate.
2887 return true;
2888 }
2889 }
2890 return false;
2891 }
2892
Craig Mautnerd2328952013-03-05 12:46:26 -08002893 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002894 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002895 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002896 final TaskRecord task = srec.task;
2897 final ArrayList<ActivityRecord> activities = task.mActivities;
2898 final int start = activities.indexOf(srec);
2899 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002900 return false;
2901 }
2902 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002903 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002904 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002905 final ComponentName dest = destIntent.getComponent();
2906 if (start > 0 && dest != null) {
2907 for (int i = finishTo; i >= 0; i--) {
2908 ActivityRecord r = activities.get(i);
2909 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002910 r.info.name.equals(dest.getClassName())) {
2911 finishTo = i;
2912 parent = r;
2913 foundParentInTask = true;
2914 break;
2915 }
2916 }
2917 }
2918
2919 IActivityController controller = mService.mController;
2920 if (controller != null) {
2921 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2922 if (next != null) {
2923 // ask watcher if this is allowed
2924 boolean resumeOK = true;
2925 try {
2926 resumeOK = controller.activityResuming(next.packageName);
2927 } catch (RemoteException e) {
2928 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002929 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002930 }
2931
2932 if (!resumeOK) {
2933 return false;
2934 }
2935 }
2936 }
2937 final long origId = Binder.clearCallingIdentity();
2938 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002939 ActivityRecord r = activities.get(i);
2940 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002941 // Only return the supplied result for the first activity finished
2942 resultCode = Activity.RESULT_CANCELED;
2943 resultData = null;
2944 }
2945
2946 if (parent != null && foundParentInTask) {
2947 final int parentLaunchMode = parent.info.launchMode;
2948 final int destIntentFlags = destIntent.getFlags();
2949 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2950 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2951 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2952 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08002953 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
2954 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002955 } else {
2956 try {
2957 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2958 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002959 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002960 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002961 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborn95465202014-09-15 16:21:55 -07002962 -1, parent.launchedFromUid, 0, null, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002963 foundParentInTask = res == ActivityManager.START_SUCCESS;
2964 } catch (RemoteException e) {
2965 foundParentInTask = false;
2966 }
2967 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08002968 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002969 }
2970 }
2971 Binder.restoreCallingIdentity(origId);
2972 return foundParentInTask;
2973 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002974 /**
2975 * Perform the common clean-up of an activity record. This is called both
2976 * as part of destroyActivityLocked() (when destroying the client-side
2977 * representation) and cleaning things up as a result of its hosting
2978 * processing going away, in which case there is no remaining client-side
2979 * state to destroy so only the cleanup here is needed.
2980 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002981 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
2982 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002983 if (mResumedActivity == r) {
2984 mResumedActivity = null;
2985 }
Craig Mautner1872ce32014-03-28 23:05:42 +00002986 if (mPausingActivity == r) {
2987 mPausingActivity = null;
2988 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07002989 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002990
2991 r.configDestroy = false;
2992 r.frozenBeforeDestroy = false;
2993
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002994 if (setState) {
2995 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
2996 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08002997 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07002998 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002999 }
3000
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003001 // Make sure this record is no longer in the pending finishes list.
3002 // This could happen, for example, if we are trimming activities
3003 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003004 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003005 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003006
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003007 // Remove any pending results.
3008 if (r.finishing && r.pendingResults != null) {
3009 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3010 PendingIntentRecord rec = apr.get();
3011 if (rec != null) {
3012 mService.cancelIntentSenderLocked(rec, false);
3013 }
3014 }
3015 r.pendingResults = null;
3016 }
3017
3018 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003019 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003020 }
3021
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003022 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003023 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003024 if (getVisibleBehindActivity() == r) {
3025 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003026 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003027 }
3028
3029 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003030 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003031 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003032 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003033 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003034 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003035 }
3036
Craig Mautner299f9602015-01-26 09:47:33 -08003037 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003038 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003039 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
3040 r.makeFinishing();
3041 if (DEBUG_ADD_REMOVE) {
3042 RuntimeException here = new RuntimeException("here");
3043 here.fillInStackTrace();
3044 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003045 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003046 r.takeFromHistory();
3047 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003048 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003049 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003050 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003051 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003052 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003053 if (VALIDATE_TOKENS) {
3054 validateAppTokensLocked();
3055 }
Craig Mautner312ba862014-02-10 17:55:01 -08003056 final TaskRecord task = r.task;
3057 if (task != null && task.removeActivity(r)) {
3058 if (DEBUG_STACK) Slog.i(TAG,
3059 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003060 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3061 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003062 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003063 }
Craig Mautner299f9602015-01-26 09:47:33 -08003064 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003065 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003066 cleanUpActivityServicesLocked(r);
3067 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003068 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003069
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003070 /**
3071 * Perform clean-up of service connections in an activity record.
3072 */
3073 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3074 // Throw away any services that have been bound by this activity.
3075 if (r.connections != null) {
3076 Iterator<ConnectionRecord> it = r.connections.iterator();
3077 while (it.hasNext()) {
3078 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003079 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003080 }
3081 r.connections = null;
3082 }
3083 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003084
Craig Mautneree2e45a2014-06-27 12:10:03 -07003085 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003086 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003087 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003088 mHandler.sendMessage(msg);
3089 }
3090
Craig Mautneree2e45a2014-06-27 12:10:03 -07003091 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003092 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003093 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003094 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3095 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3096 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3097 final ActivityRecord r = activities.get(activityNdx);
3098 if (r.finishing) {
3099 continue;
3100 }
3101 if (r.fullscreen) {
3102 lastIsOpaque = true;
3103 }
3104 if (owner != null && r.app != owner) {
3105 continue;
3106 }
3107 if (!lastIsOpaque) {
3108 continue;
3109 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003110 if (r.isDestroyable()) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003111 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3112 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003113 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003114 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003115 activityRemoved = true;
3116 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003117 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003118 }
3119 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003120 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003121 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003122 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003123 }
3124
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003125 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3126 if (r.isDestroyable()) {
3127 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3128 + " resumed=" + mResumedActivity
3129 + " pausing=" + mPausingActivity + " for reason " + reason);
3130 return destroyActivityLocked(r, true, reason);
3131 }
3132 return false;
3133 }
3134
3135 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3136 String reason) {
3137 // Iterate over tasks starting at the back (oldest) first.
3138 if (DEBUG_RELEASE) Slog.d(TAG, "Trying to release some activities in " + app);
3139 int maxTasks = tasks.size() / 4;
3140 if (maxTasks < 1) {
3141 maxTasks = 1;
3142 }
3143 int numReleased = 0;
3144 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3145 final TaskRecord task = mTaskHistory.get(taskNdx);
3146 if (!tasks.contains(task)) {
3147 continue;
3148 }
3149 if (DEBUG_RELEASE) Slog.d(TAG, "Looking for activities to release in " + task);
3150 int curNum = 0;
3151 final ArrayList<ActivityRecord> activities = task.mActivities;
3152 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3153 final ActivityRecord activity = activities.get(actNdx);
3154 if (activity.app == app && activity.isDestroyable()) {
3155 if (DEBUG_RELEASE) Slog.v(TAG, "Destroying " + activity
3156 + " in state " + activity.state + " resumed=" + mResumedActivity
3157 + " pausing=" + mPausingActivity + " for reason " + reason);
3158 destroyActivityLocked(activity, true, reason);
3159 if (activities.get(actNdx) != activity) {
3160 // Was removed from list, back up so we don't miss the next one.
3161 actNdx--;
3162 }
3163 curNum++;
3164 }
3165 }
3166 if (curNum > 0) {
3167 numReleased += curNum;
3168 maxTasks--;
3169 if (mTaskHistory.get(taskNdx) != task) {
3170 // The entire task got removed, back up so we don't miss the next one.
3171 taskNdx--;
3172 }
3173 }
3174 }
3175 if (DEBUG_RELEASE) Slog.d(TAG, "Done releasing: did " + numReleased + " activities");
3176 return numReleased;
3177 }
3178
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003179 /**
3180 * Destroy the current CLIENT SIDE instance of an activity. This may be
3181 * called both when actually finishing an activity, or when performing
3182 * a configuration switch where we destroy the current client-side object
3183 * but then create a new client-side object for this same HistoryRecord.
3184 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003185 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003186 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003187 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003188 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
3189 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003190 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003191 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003192
3193 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003194
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003195 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003196
3197 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003198
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003199 if (hadApp) {
3200 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003201 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003202 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3203 mService.mHeavyWeightProcess = null;
3204 mService.mHandler.sendEmptyMessage(
3205 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3206 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003207 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003208 // Update any services we are bound to that might care about whether
3209 // their client may have activities.
3210 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003211 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003212 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003213 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003214 }
3215 }
3216
3217 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003218
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003219 try {
3220 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003221 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003222 r.configChangeFlags);
3223 } catch (Exception e) {
3224 // We can just ignore exceptions here... if the process
3225 // has crashed, our death notification will clean things
3226 // up.
3227 //Slog.w(TAG, "Exception thrown during finish", e);
3228 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003229 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003230 removedFromHistory = true;
3231 skipDestroy = true;
3232 }
3233 }
3234
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003235 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003236
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003237 // If the activity is finishing, we need to wait on removing it
3238 // from the list to give it a chance to do its cleanup. During
3239 // that time it may make calls back with its token so we need to
3240 // be able to find it on the list and so we don't want to remove
3241 // it from the list yet. Otherwise, we can just immediately put
3242 // it in the destroyed state since we are not removing it from the
3243 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003244 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003245 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
3246 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003247 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003248 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003249 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3250 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003251 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003252 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003253 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003254 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003255 }
3256 } else {
3257 // remove this record from the history.
3258 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003259 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003260 removedFromHistory = true;
3261 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003262 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003263 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003264 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003265 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003266 }
3267 }
3268
3269 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003270
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003271 if (!mLRUActivities.remove(r) && hadApp) {
3272 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3273 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003274
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003275 return removedFromHistory;
3276 }
3277
Craig Mautner299f9602015-01-26 09:47:33 -08003278 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003279 final long origId = Binder.clearCallingIdentity();
3280 try {
3281 ActivityRecord r = ActivityRecord.forToken(token);
3282 if (r != null) {
3283 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003284 }
Craig Mautnerd163e752014-06-13 17:18:47 -07003285 if (DEBUG_CONTAINERS) Slog.d(TAG, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003286
Wale Ogunwale60454db2015-01-23 16:05:07 -08003287 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003288 if (r.state == ActivityState.DESTROYING) {
3289 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003290 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003291 }
3292 }
Craig Mautner05d29032013-05-03 13:40:13 -07003293 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003294 } finally {
3295 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003296 }
3297 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003298
Todd Kennedyaab56db2015-01-30 09:39:53 -08003299 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003300 if (hasVisibleBehindActivity() &&
3301 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003302 if (r == topRunningActivityLocked(null)) {
3303 // Don't release the top activity if it has requested to run behind the next
3304 // activity.
3305 return;
3306 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003307 if (DEBUG_STATES) Slog.d(TAG, "releaseBackgroundResources activtyDisplay=" +
3308 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003309 " thread=" + r.app.thread);
3310 if (r != null && r.app != null && r.app.thread != null) {
3311 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003312 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003313 } catch (RemoteException e) {
3314 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003315 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003316 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003317 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003318 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003319 }
3320 }
3321 }
3322
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003323 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003324 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3325 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003326 if (r != null) {
3327 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003328 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003329 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003330 }
3331 mStackSupervisor.resumeTopActivitiesLocked();
3332 }
3333
Jose Lima4b6c6692014-08-12 17:41:12 -07003334 boolean hasVisibleBehindActivity() {
3335 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003336 }
3337
Jose Lima4b6c6692014-08-12 17:41:12 -07003338 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003339 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003340 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003341 }
3342 }
3343
Jose Lima4b6c6692014-08-12 17:41:12 -07003344 ActivityRecord getVisibleBehindActivity() {
3345 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003346 }
3347
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003348 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3349 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003350 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003351 if (DEBUG_CLEANUP) Slog.v(
3352 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003353 + " with " + i + " entries");
3354 while (i > 0) {
3355 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003356 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003357 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003358 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003359 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003360 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003361 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003362 }
3363 }
3364 }
3365
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003366 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3367 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003368 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3369 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003370 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3371 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003372 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003373 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003374 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3375 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003376
3377 boolean hasVisibleActivities = false;
3378
3379 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003380 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003381 if (DEBUG_CLEANUP) Slog.v(
3382 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003383 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3384 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3385 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3386 final ActivityRecord r = activities.get(activityNdx);
3387 --i;
3388 if (DEBUG_CLEANUP) Slog.v(
3389 TAG, "Record #" + i + " " + r + ": app=" + r.app);
3390 if (r.app == app) {
3391 boolean remove;
3392 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3393 // Don't currently have state for the activity, or
3394 // it is finishing -- always remove it.
3395 remove = true;
3396 } else if (r.launchCount > 2 &&
3397 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3398 // We have launched this activity too many times since it was
3399 // able to run, so give up and remove it.
3400 remove = true;
3401 } else {
3402 // The process may be gone, but the activity lives on!
3403 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003404 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003405 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003406 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003407 RuntimeException here = new RuntimeException("here");
3408 here.fillInStackTrace();
3409 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
3410 + ": haveState=" + r.haveState
3411 + " stateNotNeeded=" + r.stateNotNeeded
3412 + " finishing=" + r.finishing
3413 + " state=" + r.state, here);
3414 }
3415 if (!r.finishing) {
3416 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3417 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3418 r.userId, System.identityHashCode(r),
3419 r.task.taskId, r.shortComponentName,
3420 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003421 if (r.state == ActivityState.RESUMED) {
3422 mService.updateUsageStats(r, false);
3423 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003424 }
Craig Mautner299f9602015-01-26 09:47:33 -08003425 removeActivityFromHistoryLocked(r, "appDied");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003426
Craig Mautner0247fc82013-02-28 14:32:06 -08003427 } else {
3428 // We have the current state for this activity, so
3429 // it can be restarted later when needed.
3430 if (localLOGV) Slog.v(
3431 TAG, "Keeping entry, setting app to null");
3432 if (r.visible) {
3433 hasVisibleActivities = true;
3434 }
3435 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
3436 + r);
3437 r.app = null;
3438 r.nowVisible = false;
3439 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003440 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08003441 "App died, clearing saved state of " + r);
3442 r.icicle = null;
3443 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003444 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003445
Craig Mautnerd2328952013-03-05 12:46:26 -08003446 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003447 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003448 }
3449 }
3450
3451 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003452 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003453
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003454 final void updateTransitLocked(int transit, Bundle options) {
3455 if (options != null) {
3456 ActivityRecord r = topRunningActivityLocked(null);
3457 if (r != null && r.state != ActivityState.RESUMED) {
3458 r.updateOptionsLocked(options);
3459 } else {
3460 ActivityOptions.abort(options);
3461 }
3462 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003463 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003464 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003465
Craig Mautner21d24a22014-04-23 11:45:37 -07003466 void updateTaskMovement(TaskRecord task, boolean toFront) {
3467 if (task.isPersistable) {
3468 task.mLastTimeMoved = System.currentTimeMillis();
3469 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3470 // recently will be most negative, tasks sent to the bottom before that will be less
3471 // negative. Similarly for recent tasks moved to the top which will be most positive.
3472 if (!toFront) {
3473 task.mLastTimeMoved *= -1;
3474 }
3475 }
3476 }
3477
Craig Mautner84984fa2014-06-19 11:19:20 -07003478 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003479 final int top = mTaskHistory.size() - 1;
3480 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3481 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003482 if (task.taskType == homeStackTaskType) {
3483 if (DEBUG_TASKS || DEBUG_STACK)
3484 Slog.d(TAG, "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003485 mTaskHistory.remove(taskNdx);
3486 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003487 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003488 mWindowManager.moveTaskToTop(task.taskId);
3489 return;
3490 }
3491 }
3492 }
3493
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003494 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Craig Mautner299f9602015-01-26 09:47:33 -08003495 String reason) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003496 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003497
Craig Mautner11bf9a52013-02-19 14:08:51 -08003498 final int numTasks = mTaskHistory.size();
3499 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003500 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003501 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003502 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003503 ActivityOptions.abort(options);
3504 } else {
3505 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3506 }
3507 return;
3508 }
3509
3510 // Shift all activities with this task up to the top
3511 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003512 insertTaskAtTop(tr);
Craig Mautner299f9602015-01-26 09:47:33 -08003513 moveToFront(reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003514
3515 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003516 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003517 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003518 ActivityRecord r = topRunningActivityLocked(null);
3519 if (r != null) {
3520 mNoAnimActivities.add(r);
3521 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003522 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003523 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003524 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003525 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003526
Craig Mautner05d29032013-05-03 13:40:13 -07003527 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003528 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003529
3530 if (VALIDATE_TOKENS) {
3531 validateAppTokensLocked();
3532 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003533 }
3534
3535 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003536 * Worker method for rearranging history stack. Implements the function of moving all
3537 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003538 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003539 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003540 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3541 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003542 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003543 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003544 * @return Returns true if the move completed, false if not.
3545 */
Craig Mautner299f9602015-01-26 09:47:33 -08003546 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003547 final TaskRecord tr = taskForIdLocked(taskId);
3548 if (tr == null) {
3549 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3550 return false;
3551 }
3552
3553 Slog.i(TAG, "moveTaskToBack: " + tr);
3554
3555 mStackSupervisor.endLockTaskModeIfTaskEnding(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003556
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003557 // If we have a watcher, preflight the move before committing to it. First check
3558 // for *other* available tasks, but if none are available, then try again allowing the
3559 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003560 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003561 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003562 if (next == null) {
3563 next = topRunningActivityLocked(null, 0);
3564 }
3565 if (next != null) {
3566 // ask watcher if this is allowed
3567 boolean moveOK = true;
3568 try {
3569 moveOK = mService.mController.activityResuming(next.packageName);
3570 } catch (RemoteException e) {
3571 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003572 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003573 }
3574 if (!moveOK) {
3575 return false;
3576 }
3577 }
3578 }
3579
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003580 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003581 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003582
Craig Mautner11bf9a52013-02-19 14:08:51 -08003583 mTaskHistory.remove(tr);
3584 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003585 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003586
Craig Mautnerc8143c62013-09-03 12:15:57 -07003587 // There is an assumption that moving a task to the back moves it behind the home activity.
3588 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003589 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003590 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3591 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003592 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003593 break;
3594 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003595 if (taskNdx == 1) {
3596 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003597 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003598 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003599 }
3600
Craig Mautner299f9602015-01-26 09:47:33 -08003601 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003602 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003603
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003604 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003605 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003606 }
3607
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003608 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Craig Mautner84984fa2014-06-19 11:19:20 -07003609 if (task == tr && tr.isOverHomeStack() || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003610 if (!mService.mBooting && !mService.mBooted) {
3611 // Not ready yet!
3612 return false;
3613 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003614 final int taskToReturnTo = tr.getTaskToReturnTo();
3615 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003616 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003617 }
3618
Craig Mautner05d29032013-05-03 13:40:13 -07003619 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003620 return true;
3621 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003622
Craig Mautner8849a5e2013-04-02 16:41:03 -07003623 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003624 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003625 final Uri data = r.intent.getData();
3626 final String strData = data != null ? data.toSafeString() : null;
3627
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003628 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003629 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003630 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003631 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003632 }
3633
3634 /**
3635 * Make sure the given activity matches the current configuration. Returns
3636 * false if the activity had to be destroyed. Returns true if the
3637 * configuration is the same, or the activity will remain running as-is
3638 * for whatever reason. Ensures the HistoryRecord is updated with the
3639 * correct configuration and all other bookkeeping is handled.
3640 */
3641 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3642 int globalChanges) {
3643 if (mConfigWillChange) {
3644 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3645 "Skipping config check (will change): " + r);
3646 return true;
3647 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003648
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003649 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3650 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003651
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08003652 // Make sure the current stack override configuration is supported by the top task
3653 // before continuing.
3654 final TaskRecord topTask = topTask();
3655 if (topTask != null && ((topTask.mResizeable && mForcedFullscreen)
3656 || (!topTask.mResizeable && !mFullscreen))) {
3657 final boolean prevFullscreen = mFullscreen;
3658 final Configuration newOverrideConfig =
3659 mWindowManager.forceStackToFullscreen(mStackId, !topTask.mResizeable);
3660 updateOverrideConfiguration(newOverrideConfig);
3661 mForcedFullscreen = !prevFullscreen && mFullscreen;
3662 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3663 "Updated stack config to support task=" + topTask
3664 + " resizeable=" + topTask.mResizeable
3665 + " mForcedFullscreen=" + mForcedFullscreen
3666 + " prevFullscreen=" + prevFullscreen
3667 + " mFullscreen=" + mFullscreen);
3668 }
3669
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003670 // Short circuit: if the two configurations are the exact same
3671 // object (the common case), then there is nothing to do.
3672 Configuration newConfig = mService.mConfiguration;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003673 if (r.configuration == newConfig
3674 && r.stackConfigOverride == mOverrideConfig
3675 && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003676 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3677 "Configuration unchanged in " + r);
3678 return true;
3679 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003680
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003681 // We don't worry about activities that are finishing.
3682 if (r.finishing) {
3683 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3684 "Configuration doesn't matter in finishing " + r);
3685 r.stopFreezingScreenLocked(false);
3686 return true;
3687 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003688
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003689 // Okay we now are going to make this activity have the new config.
3690 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003691 final Configuration oldConfig = r.configuration;
3692 final Configuration oldStackOverride = r.stackConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003693 r.configuration = newConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003694 r.stackConfigOverride = mOverrideConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003695
3696 // Determine what has changed. May be nothing, if this is a config
3697 // that has come back from the app after going idle. In that case
3698 // we just want to leave the official config object now in the
3699 // activity and do nothing else.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003700 int stackChanges = oldStackOverride.diff(mOverrideConfig);
3701 if (stackChanges == 0 && !oldStackOverride.equals(mOverrideConfig)) {
3702 // Assume size change if diff didn't report any changes,
3703 // but configurations are not equal.
3704 stackChanges = ActivityInfo.CONFIG_SCREEN_SIZE;
3705 }
3706 final int changes = oldConfig.diff(newConfig) | stackChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003707 if (changes == 0 && !r.forceNewConfig) {
3708 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3709 "Configuration no differences in " + r);
3710 return true;
3711 }
3712
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003713 // If the activity isn't currently running, just leave the new
3714 // configuration and it will pick that up next time it starts.
3715 if (r.app == null || r.app.thread == null) {
3716 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3717 "Configuration doesn't matter not running " + r);
3718 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003719 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003720 return true;
3721 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003722
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003723 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003724 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3725 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3726 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003727 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003728 + ", newConfig=" + newConfig);
3729 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003730 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003731 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3732 r.configChangeFlags |= changes;
3733 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003734 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003735 if (r.app == null || r.app.thread == null) {
3736 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003737 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003738 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003739 } else if (r.state == ActivityState.PAUSING) {
3740 // A little annoying: we are waiting for this activity to
3741 // finish pausing. Let's not do anything now, but just
3742 // flag that it needs to be restarted when done pausing.
3743 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003744 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003745 r.configDestroy = true;
3746 return true;
3747 } else if (r.state == ActivityState.RESUMED) {
3748 // Try to optimize this case: the configuration is changing
3749 // and we need to restart the top, resumed activity.
3750 // Instead of doing the normal handshaking, just say
3751 // "restart!".
3752 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003753 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003754 relaunchActivityLocked(r, r.configChangeFlags, true);
3755 r.configChangeFlags = 0;
3756 } else {
3757 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003758 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003759 relaunchActivityLocked(r, r.configChangeFlags, false);
3760 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003761 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003762
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003763 // All done... tell the caller we weren't able to keep this
3764 // activity around.
3765 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003766 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003767
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003768 // Default case: the activity can handle this new configuration, so
3769 // hand it over. Note that we don't need to give it the new
3770 // configuration, since we always send configuration changes to all
3771 // process when they happen so it can just use whatever configuration
3772 // it last got.
3773 if (r.app != null && r.app.thread != null) {
3774 try {
3775 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003776 r.app.thread.scheduleActivityConfigurationChanged(r.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003777 } catch (RemoteException e) {
3778 // If process died, whatever.
3779 }
3780 }
3781 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003782
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003783 return true;
3784 }
3785
Craig Mautnerc8143c62013-09-03 12:15:57 -07003786 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003787 int changes, boolean andResume) {
3788 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003789 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003790 if (andResume) {
3791 results = r.results;
3792 newIntents = r.newIntents;
3793 }
3794 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3795 + " with results=" + results + " newIntents=" + newIntents
3796 + " andResume=" + andResume);
3797 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003798 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003799 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003800
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003801 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003802
Craig Mautner34b73df2014-01-12 21:11:08 -08003803 mStackSupervisor.removeChildActivityContainers(r);
3804
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003805 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003806 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3807 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3808 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003809 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003810 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
3811 !andResume, new Configuration(mService.mConfiguration),
3812 new Configuration(mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003813 // Note: don't need to call pauseIfSleepingLocked() here, because
3814 // the caller will only pass in 'andResume' if this activity is
3815 // currently resumed, which implies we aren't sleeping.
3816 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003817 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003818 }
3819
3820 if (andResume) {
3821 r.results = null;
3822 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003823 r.state = ActivityState.RESUMED;
3824 } else {
3825 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3826 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003827 }
3828
3829 return true;
3830 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003831
3832 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003833 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3834 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3835 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3836 final ActivityRecord r = activities.get(activityNdx);
3837 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003838 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003839 }
3840 if (r.fullscreen && !r.finishing) {
3841 return false;
3842 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003843 }
3844 }
Craig Mautner34b73df2014-01-12 21:11:08 -08003845 final ActivityRecord r = ActivityRecord.forToken(token);
3846 if (r == null) {
3847 return false;
3848 }
3849 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3850 + " would have returned true for r=" + r);
3851 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003852 }
3853
3854 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003855 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3856 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3857 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3858 final ActivityRecord r = activities.get(activityNdx);
3859 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003860 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003861 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003862 }
3863 }
3864 }
3865
3866 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3867 boolean didSomething = false;
3868 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003869 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003870 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3871 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3872 int numActivities = activities.size();
3873 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3874 ActivityRecord r = activities.get(activityNdx);
3875 final boolean samePackage = r.packageName.equals(name)
3876 || (name == null && r.userId == userId);
3877 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3878 && (samePackage || r.task == lastTask)
3879 && (r.app == null || evenPersistent || !r.app.persistent)) {
3880 if (!doit) {
3881 if (r.finishing) {
3882 // If this activity is just finishing, then it is not
3883 // interesting as far as something to stop.
3884 continue;
3885 }
3886 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003887 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003888 if (r.isHomeActivity()) {
3889 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
3890 Slog.i(TAG, "Skip force-stop again " + r);
3891 continue;
3892 } else {
3893 homeActivity = r.realActivity;
3894 }
3895 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003896 didSomething = true;
3897 Slog.i(TAG, " Force finishing activity " + r);
3898 if (samePackage) {
3899 if (r.app != null) {
3900 r.app.removed = true;
3901 }
3902 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003903 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003904 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003905 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3906 true)) {
3907 // r has been deleted from mActivities, accommodate.
3908 --numActivities;
3909 --activityNdx;
3910 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003911 }
3912 }
3913 }
3914 return didSomething;
3915 }
3916
Dianne Hackborn09233282014-04-30 11:33:59 -07003917 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003918 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003919 final TaskRecord task = mTaskHistory.get(taskNdx);
3920 ActivityRecord r = null;
3921 ActivityRecord top = null;
3922 int numActivities = 0;
3923 int numRunning = 0;
3924 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003925 if (activities.isEmpty()) {
3926 continue;
3927 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07003928 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07003929 continue;
3930 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003931 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3932 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003933
Craig Mautneraab647e2013-02-28 16:31:36 -08003934 // Initialize state for next task if needed.
3935 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3936 top = r;
3937 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003938 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003939
3940 // Add 'r' into the current task.
3941 numActivities++;
3942 if (r.app != null && r.app.thread != null) {
3943 numRunning++;
3944 }
3945
3946 if (localLOGV) Slog.v(
3947 TAG, r.intent.getComponent().flattenToShortString()
3948 + ": task=" + r.task);
3949 }
3950
3951 RunningTaskInfo ci = new RunningTaskInfo();
3952 ci.id = task.taskId;
3953 ci.baseActivity = r.intent.getComponent();
3954 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003955 ci.lastActiveTime = task.lastActiveTime;
3956
Craig Mautnerc0ffce52014-07-01 12:38:52 -07003957 if (top.task != null) {
3958 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08003959 }
3960 ci.numActivities = numActivities;
3961 ci.numRunning = numRunning;
3962 //System.out.println(
3963 // "#" + maxNum + ": " + " descr=" + ci.description);
Craig Mautneraab647e2013-02-28 16:31:36 -08003964 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08003965 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003966 }
3967
3968 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08003969 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08003970 if (DEBUG_SWITCH) Slog.d(
3971 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08003972 if (top >= 0) {
3973 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
3974 int activityTop = activities.size() - 1;
3975 if (activityTop > 0) {
3976 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
3977 "unhandled-back", true);
3978 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003979 }
3980 }
3981
Craig Mautner6b74cb52013-09-27 17:02:21 -07003982 /**
3983 * Reset local parameters because an app's activity died.
3984 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07003985 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07003986 */
3987 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07003988 if (mPausingActivity != null && mPausingActivity.app == app) {
3989 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
3990 "App died while pausing: " + mPausingActivity);
3991 mPausingActivity = null;
3992 }
3993 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
3994 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07003995 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07003996 }
3997
Craig Mautner19091252013-10-05 00:03:53 -07003998 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07003999 }
4000
Craig Mautnercae015f2013-02-08 14:31:27 -08004001 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004002 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4003 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4004 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4005 final ActivityRecord r = activities.get(activityNdx);
4006 if (r.app == app) {
4007 Slog.w(TAG, " Force finishing activity "
4008 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004009 // Force the destroy to skip right to removal.
4010 r.app = null;
4011 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004012 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004013 }
4014 }
4015 }
4016
Dianne Hackborn390517b2013-05-30 15:03:32 -07004017 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004018 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004019 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004020 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4021 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004022 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4023 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004024 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07004025 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004026 if (printed) {
4027 header = null;
4028 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004029 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004030 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004031 }
4032
4033 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4034 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4035
4036 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004037 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4038 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004039 }
4040 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004041 final int top = mTaskHistory.size() - 1;
4042 if (top >= 0) {
4043 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4044 int listTop = list.size() - 1;
4045 if (listTop >= 0) {
4046 activities.add(list.get(listTop));
4047 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004048 }
4049 } else {
4050 ItemMatcher matcher = new ItemMatcher();
4051 matcher.build(name);
4052
Craig Mautneraab647e2013-02-28 16:31:36 -08004053 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4054 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4055 if (matcher.match(r1, r1.intent.getComponent())) {
4056 activities.add(r1);
4057 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004058 }
4059 }
4060 }
4061
4062 return activities;
4063 }
4064
4065 ActivityRecord restartPackage(String packageName) {
4066 ActivityRecord starting = topRunningActivityLocked(null);
4067
4068 // All activities that came from the package must be
4069 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004070 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4071 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4072 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4073 final ActivityRecord a = activities.get(activityNdx);
4074 if (a.info.packageName.equals(packageName)) {
4075 a.forceNewConfig = true;
4076 if (starting != null && a == starting && a.visible) {
4077 a.startFreezingScreenLocked(starting.app,
4078 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4079 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004080 }
4081 }
4082 }
4083
4084 return starting;
4085 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004086
Craig Mautner299f9602015-01-26 09:47:33 -08004087 void removeTask(TaskRecord task, String reason) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004088 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
Craig Mautner04a0ea62014-01-13 12:51:26 -08004089 mWindowManager.removeTask(task.taskId);
4090 final ActivityRecord r = mResumedActivity;
4091 if (r != null && r.task == task) {
4092 mResumedActivity = null;
4093 }
4094
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004095 final int taskNdx = mTaskHistory.indexOf(task);
4096 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004097 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4098 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4099 if (!nextTask.isOverHomeStack()) {
4100 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4101 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004102 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004103 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004104 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004105
4106 if (task.mActivities.isEmpty()) {
4107 final boolean isVoiceSession = task.voiceSession != null;
4108 if (isVoiceSession) {
4109 try {
4110 task.voiceSession.taskFinished(task.intent, task.taskId);
4111 } catch (RemoteException e) {
4112 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004113 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004114 if (task.autoRemoveFromRecents() || isVoiceSession) {
4115 // Task creator asked to remove this when done, or this task was a voice
4116 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004117 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004118 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004119 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004120 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004121
4122 if (mTaskHistory.isEmpty()) {
4123 if (DEBUG_STACK) Slog.i(TAG, "removeTask: moving to back stack=" + this);
4124 if (isOnHomeDisplay()) {
Craig Mautner299f9602015-01-26 09:47:33 -08004125 mStackSupervisor.moveHomeStack(!isHomeStack(), reason + " leftTaskHistoryEmpty");
Craig Mautner04a0ea62014-01-13 12:51:26 -08004126 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004127 if (mStacks != null) {
4128 mStacks.remove(this);
4129 mStacks.add(0, this);
4130 }
Craig Mautnerd163e752014-06-13 17:18:47 -07004131 mActivityContainer.onTaskListEmptyLocked();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004132 }
Craig Mautner0247fc82013-02-28 14:32:06 -08004133 }
4134
Dianne Hackborn91097de2014-04-04 18:02:06 -07004135 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4136 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4137 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004138 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4139 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004140 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004141 return task;
4142 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004143
4144 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004145 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004146 }
4147
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004148 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004149 task.stack = this;
4150 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07004151 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004152 } else {
4153 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004154 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004155 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004156 if (!moving && task.voiceSession != null) {
4157 try {
4158 task.voiceSession.taskStarted(task.intent, task.taskId);
4159 } catch (RemoteException e) {
4160 }
4161 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004162 }
4163
4164 public int getStackId() {
4165 return mStackId;
4166 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004167
4168 @Override
4169 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004170 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4171 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004172 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004173
4174 boolean updateOverrideConfiguration(Configuration newConfig) {
4175 Configuration oldConfig = mOverrideConfig;
4176 mOverrideConfig = (newConfig == null) ? Configuration.EMPTY : newConfig;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004177 // We override the configuration only when the stack's dimensions are different from
4178 // the display. In this manner, we know that if the override configuration is empty,
4179 // the stack is necessarily full screen.
Todd Kennedyaab56db2015-01-30 09:39:53 -08004180 mFullscreen = Configuration.EMPTY.equals(mOverrideConfig);
Wale Ogunwale60454db2015-01-23 16:05:07 -08004181 return !mOverrideConfig.equals(oldConfig);
4182 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004183}