blob: 83a7b68b32e51180011ccb5c82e1f2835925fbfc [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
riddle_hsuc215a4f2014-12-27 12:10:45 +08001922 private TaskRecord getNextTask(TaskRecord targetTask) {
1923 final int index = mTaskHistory.indexOf(targetTask);
1924 if (index >= 0) {
1925 final int numTasks = mTaskHistory.size();
1926 for (int i = index + 1; i < numTasks; ++i) {
1927 TaskRecord task = mTaskHistory.get(i);
1928 if (task.userId == targetTask.userId) {
1929 return task;
1930 }
1931 }
1932 }
1933 return null;
1934 }
1935
Craig Mautnerac6f8432013-07-17 13:24:59 -07001936 private void insertTaskAtTop(TaskRecord task) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08001937 // If the moving task is over home stack, transfer its return type to next task
1938 if (task.isOverHomeStack()) {
1939 final TaskRecord nextTask = getNextTask(task);
1940 if (nextTask != null) {
1941 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
1942 }
1943 }
1944
Craig Mautner9c85c202013-10-04 20:11:26 -07001945 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08001946 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08001947 if (isOnHomeDisplay()) {
1948 ActivityStack lastStack = mStackSupervisor.getLastStack();
1949 final boolean fromHome = lastStack.isHomeStack();
1950 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07001951 task.setTaskToReturnTo(fromHome
1952 ? lastStack.topTask() == null
1953 ? HOME_ACTIVITY_TYPE
1954 : lastStack.topTask().taskType
1955 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08001956 }
1957 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07001958 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07001959 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07001960
Craig Mautnerac6f8432013-07-17 13:24:59 -07001961 mTaskHistory.remove(task);
1962 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07001963 int taskNdx = mTaskHistory.size();
Kenny Guy2a764942014-04-02 13:29:20 +01001964 if (!isCurrentProfileLocked(task.userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001965 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07001966 while (--taskNdx >= 0) {
1967 if (!isCurrentProfileLocked(mTaskHistory.get(taskNdx).userId)) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001968 break;
1969 }
1970 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001971 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07001972 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001973 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001974 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001975 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08001976
Craig Mautner8849a5e2013-04-02 16:41:03 -07001977 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001978 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001979 TaskRecord rTask = r.task;
1980 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07001981 // mLaunchTaskBehind tasks get placed at the back of the task stack.
1982 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08001983 // Last activity in task had been removed or ActivityManagerService is reusing task.
1984 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08001985 // Might not even be in.
Craig Mautnerac6f8432013-07-17 13:24:59 -07001986 insertTaskAtTop(rTask);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001987 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08001988 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001989 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001990 if (!newTask) {
1991 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08001992 boolean startIt = true;
1993 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1994 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08001995 if (task.getTopActivity() == null) {
1996 // All activities in task are finishing.
1997 continue;
1998 }
Craig Mautner70a86932013-02-28 22:37:44 -08001999 if (task == r.task) {
2000 // Here it is! Now, if this is not yet visible to the
2001 // user, then just add it without starting; it will
2002 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002003 if (!startIt) {
2004 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2005 + task, new RuntimeException("here").fillInStackTrace());
2006 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002007 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002008 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
2009 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002010 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautnerbb742462014-07-07 15:28:55 -07002011 r.userId, r.info.configChanges, task.voiceSession != null,
2012 r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002013 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002014 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002015 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002016 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002017 return;
2018 }
2019 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002020 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002021 startIt = false;
2022 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002023 }
2024 }
2025
2026 // Place a new activity at top of stack, so it is next to interact
2027 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002028
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002029 // If we are not placing the new activity frontmost, we do not want
2030 // to deliver the onUserLeaving callback to the actual frontmost
2031 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002032 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002033 mStackSupervisor.mUserLeaving = false;
Craig Mautner70a86932013-02-28 22:37:44 -08002034 if (DEBUG_USER_LEAVING) Slog.v(TAG,
2035 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002036 }
Craig Mautner70a86932013-02-28 22:37:44 -08002037
2038 task = r.task;
2039
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002040 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002041 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002042 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002043 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002044 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002045
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002046 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002047 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002048 // We want to show the starting preview window if we are
2049 // switching to a new task, or the next activity's process is
2050 // not currently running.
2051 boolean showStartingIcon = newTask;
2052 ProcessRecord proc = r.app;
2053 if (proc == null) {
2054 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2055 }
2056 if (proc == null || proc.thread == null) {
2057 showStartingIcon = true;
2058 }
2059 if (DEBUG_TRANSITION) Slog.v(TAG,
2060 "Prepare open transition: starting " + r);
2061 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002062 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002063 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002064 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002065 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002066 ? r.mLaunchTaskBehind
2067 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2068 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002069 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002070 mNoAnimActivities.remove(r);
2071 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002072 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08002073 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002074 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002075 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002076 boolean doShow = true;
2077 if (newTask) {
2078 // Even though this activity is starting fresh, we still need
2079 // to reset it to make sure we apply affinities to move any
2080 // existing activities from other tasks in to it.
2081 // If the caller has requested that the target task be
2082 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002083 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002084 resetTaskIfNeededLocked(r, r);
2085 doShow = topRunningNonDelayedActivityLocked(null) == r;
2086 }
George Mount70778d72014-07-01 16:33:45 -07002087 } else if (options != null && new ActivityOptions(options).getAnimationType()
2088 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2089 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002090 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002091 if (r.mLaunchTaskBehind) {
2092 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2093 // tell WindowManager that r is visible even though it is at the back of the stack.
2094 mWindowManager.setAppVisibility(r.appToken, true);
2095 ensureActivitiesVisibleLocked(null, 0);
2096 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002097 // Figure out if we are transitioning from another activity that is
2098 // "has the same starting icon" as the next one. This allows the
2099 // window manager to keep the previous window it had previously
2100 // created, if it still had one.
2101 ActivityRecord prev = mResumedActivity;
2102 if (prev != null) {
2103 // We don't want to reuse the previous starting preview if:
2104 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002105 if (prev.task != r.task) {
2106 prev = null;
2107 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002108 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002109 else if (prev.nowVisible) {
2110 prev = null;
2111 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002112 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002113 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002114 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002115 mService.compatibilityInfoForPackageLocked(
2116 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002117 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002118 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002119 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002120 }
2121 } else {
2122 // If this is the first activity, don't do any fancy animations,
2123 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002124 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08002125 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002126 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002127 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002128 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002129 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002130 }
2131 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002132 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002133 }
2134
2135 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002136 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002137 }
2138 }
2139
Dianne Hackbornbe707852011-11-11 14:32:10 -08002140 final void validateAppTokensLocked() {
2141 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002142 mValidateAppTokens.ensureCapacity(numActivities());
2143 final int numTasks = mTaskHistory.size();
2144 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2145 TaskRecord task = mTaskHistory.get(taskNdx);
2146 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002147 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002148 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002149 }
Craig Mautner000f0022013-02-26 15:04:29 -08002150 TaskGroup group = new TaskGroup();
2151 group.taskId = task.taskId;
2152 mValidateAppTokens.add(group);
2153 final int numActivities = activities.size();
2154 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2155 final ActivityRecord r = activities.get(activityNdx);
2156 group.tokens.add(r.appToken);
2157 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002158 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002159 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002160 }
2161
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002162 /**
2163 * Perform a reset of the given task, if needed as part of launching it.
2164 * Returns the new HistoryRecord at the top of the task.
2165 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002166 /**
2167 * Helper method for #resetTaskIfNeededLocked.
2168 * We are inside of the task being reset... we'll either finish this activity, push it out
2169 * for another task, or leave it as-is.
2170 * @param task The task containing the Activity (taskTop) that might be reset.
2171 * @param forceReset
2172 * @return An ActivityOptions that needs to be processed.
2173 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002174 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002175 ActivityOptions topOptions = null;
2176
2177 int replyChainEnd = -1;
2178 boolean canMoveOptions = true;
2179
2180 // We only do this for activities that are not the root of the task (since if we finish
2181 // the root, we may no longer have the task!).
2182 final ArrayList<ActivityRecord> activities = task.mActivities;
2183 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002184 final int rootActivityNdx = task.findEffectiveRootIndex();
2185 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002186 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002187 if (target.frontOfTask)
2188 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002189
2190 final int flags = target.info.flags;
2191 final boolean finishOnTaskLaunch =
2192 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2193 final boolean allowTaskReparenting =
2194 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2195 final boolean clearWhenTaskReset =
2196 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2197
2198 if (!finishOnTaskLaunch
2199 && !clearWhenTaskReset
2200 && target.resultTo != null) {
2201 // If this activity is sending a reply to a previous
2202 // activity, we can't do anything with it now until
2203 // we reach the start of the reply chain.
2204 // XXX note that we are assuming the result is always
2205 // to the previous activity, which is almost always
2206 // the case but we really shouldn't count on.
2207 if (replyChainEnd < 0) {
2208 replyChainEnd = i;
2209 }
2210 } else if (!finishOnTaskLaunch
2211 && !clearWhenTaskReset
2212 && allowTaskReparenting
2213 && target.taskAffinity != null
2214 && !target.taskAffinity.equals(task.affinity)) {
2215 // If this activity has an affinity for another
2216 // task, then we need to move it out of here. We will
2217 // move it as far out of the way as possible, to the
2218 // bottom of the activity stack. This also keeps it
2219 // correctly ordered with any activities we previously
2220 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002221 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002222 final ActivityRecord bottom =
2223 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002224 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002225 if (bottom != null && target.taskAffinity != null
2226 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002227 // If the activity currently at the bottom has the
2228 // same task affinity as the one we are moving,
2229 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002230 targetTask = bottom.task;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002231 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002232 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002233 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002234 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002235 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002236 targetTask.affinityIntent = target.intent;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002237 if (DEBUG_TASKS) Slog.v(TAG, "Start pushing activity " + target
2238 + " out to new task " + target.task);
2239 }
2240
Craig Mautnere3a74d52013-02-22 14:14:58 -08002241 final int targetTaskId = targetTask.taskId;
Craig Mautner83162a92015-01-26 14:43:30 -08002242 mWindowManager.setAppTask(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002243
Craig Mautner525f3d92013-05-07 14:01:50 -07002244 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002245 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2246 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002247 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002248 if (p.finishing) {
2249 continue;
2250 }
2251
Craig Mautnere3a74d52013-02-22 14:14:58 -08002252 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002253 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002254 topOptions = p.takeOptionsLocked();
2255 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002256 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002257 }
2258 }
2259 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08002260 + task + " adding to task=" + targetTask
2261 + " Callers=" + Debug.getCallers(4));
Craig Mautnere3a74d52013-02-22 14:14:58 -08002262 if (DEBUG_TASKS) Slog.v(TAG, "Pushing next activity " + p
2263 + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002264 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002265 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002266
Craig Mautner83162a92015-01-26 14:43:30 -08002267 mWindowManager.setAppTask(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002268 }
2269
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002270 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002271 if (VALIDATE_TOKENS) {
2272 validateAppTokensLocked();
2273 }
2274
2275 replyChainEnd = -1;
2276 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2277 // If the activity should just be removed -- either
2278 // because it asks for it, or the task should be
2279 // cleared -- then finish it and anything that is
2280 // part of its reply chain.
2281 int end;
2282 if (clearWhenTaskReset) {
2283 // In this case, we want to finish this activity
2284 // and everything above it, so be sneaky and pretend
2285 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002286 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002287 } else if (replyChainEnd < 0) {
2288 end = i;
2289 } else {
2290 end = replyChainEnd;
2291 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002292 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002293 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002294 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002295 if (p.finishing) {
2296 continue;
2297 }
2298 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002299 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002300 topOptions = p.takeOptionsLocked();
2301 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002302 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002303 }
2304 }
Craig Mautner58547802013-03-05 08:23:53 -08002305 if (DEBUG_TASKS) Slog.w(TAG,
2306 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002307 if (finishActivityLocked(
2308 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002309 end--;
2310 srcPos--;
2311 }
2312 }
2313 replyChainEnd = -1;
2314 } else {
2315 // If we were in the middle of a chain, well the
2316 // activity that started it all doesn't want anything
2317 // special, so leave it all as-is.
2318 replyChainEnd = -1;
2319 }
2320 }
2321
2322 return topOptions;
2323 }
2324
2325 /**
2326 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2327 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2328 * @param affinityTask The task we are looking for an affinity to.
2329 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2330 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2331 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2332 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002333 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002334 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002335 int replyChainEnd = -1;
2336 final int taskId = task.taskId;
2337 final String taskAffinity = task.affinity;
2338
2339 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2340 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002341 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2342
2343 // Do not operate on or below the effective root Activity.
2344 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002345 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002346 if (target.frontOfTask)
2347 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002348
2349 final int flags = target.info.flags;
2350 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2351 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2352
2353 if (target.resultTo != null) {
2354 // If this activity is sending a reply to a previous
2355 // activity, we can't do anything with it now until
2356 // we reach the start of the reply chain.
2357 // XXX note that we are assuming the result is always
2358 // to the previous activity, which is almost always
2359 // the case but we really shouldn't count on.
2360 if (replyChainEnd < 0) {
2361 replyChainEnd = i;
2362 }
2363 } else if (topTaskIsHigher
2364 && allowTaskReparenting
2365 && taskAffinity != null
2366 && taskAffinity.equals(target.taskAffinity)) {
2367 // This activity has an affinity for our task. Either remove it if we are
2368 // clearing or move it over to our task. Note that
2369 // we currently punt on the case where we are resetting a
2370 // task that is not at the top but who has activities above
2371 // with an affinity to it... this is really not a normal
2372 // case, and we will need to later pull that task to the front
2373 // and usually at that point we will do the reset and pick
2374 // up those remaining activities. (This only happens if
2375 // someone starts an activity in a new task from an activity
2376 // in a task that is not currently on top.)
2377 if (forceReset || finishOnTaskLaunch) {
2378 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2379 if (DEBUG_TASKS) Slog.v(TAG, "Finishing task at index " + start + " to " + i);
2380 for (int srcPos = start; srcPos >= i; --srcPos) {
2381 final ActivityRecord p = activities.get(srcPos);
2382 if (p.finishing) {
2383 continue;
2384 }
Todd Kennedy539db512014-12-15 09:57:55 -08002385 finishActivityLocked(
2386 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002387 }
2388 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002389 if (taskInsertionPoint < 0) {
2390 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002391
Craig Mautner77878772013-03-04 19:46:24 -08002392 }
Craig Mautner77878772013-03-04 19:46:24 -08002393
2394 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2395 if (DEBUG_TASKS) Slog.v(TAG, "Reparenting from task=" + affinityTask + ":"
2396 + start + "-" + i + " to task=" + task + ":" + taskInsertionPoint);
2397 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002398 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002399 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002400 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002401
Craig Mautnere3a74d52013-02-22 14:14:58 -08002402 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2403 + " to stack at " + task,
2404 new RuntimeException("here").fillInStackTrace());
2405 if (DEBUG_TASKS) Slog.v(TAG, "Pulling activity " + p + " from " + srcPos
2406 + " in to resetting task " + task);
Craig Mautner83162a92015-01-26 14:43:30 -08002407 mWindowManager.setAppTask(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002408 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002409 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002410 if (VALIDATE_TOKENS) {
2411 validateAppTokensLocked();
2412 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002413
2414 // Now we've moved it in to place... but what if this is
2415 // a singleTop activity and we have put it on top of another
2416 // instance of the same activity? Then we drop the instance
2417 // below so it remains singleTop.
2418 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2419 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002420 int targetNdx = taskActivities.indexOf(target);
2421 if (targetNdx > 0) {
2422 ActivityRecord p = taskActivities.get(targetNdx - 1);
2423 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002424 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2425 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002426 }
2427 }
2428 }
2429 }
2430
2431 replyChainEnd = -1;
2432 }
2433 }
Craig Mautner77878772013-03-04 19:46:24 -08002434 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002435 }
2436
Craig Mautner8849a5e2013-04-02 16:41:03 -07002437 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002438 ActivityRecord newActivity) {
2439 boolean forceReset =
2440 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2441 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2442 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2443 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2444 forceReset = true;
2445 }
2446 }
2447
2448 final TaskRecord task = taskTop.task;
2449
2450 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2451 * for remaining tasks. Used for later tasks to reparent to task. */
2452 boolean taskFound = false;
2453
2454 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2455 ActivityOptions topOptions = null;
2456
Craig Mautner77878772013-03-04 19:46:24 -08002457 // Preserve the location for reparenting in the new task.
2458 int reparentInsertionPoint = -1;
2459
Craig Mautnere3a74d52013-02-22 14:14:58 -08002460 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2461 final TaskRecord targetTask = mTaskHistory.get(i);
2462
2463 if (targetTask == task) {
2464 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2465 taskFound = true;
2466 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002467 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2468 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002469 }
2470 }
2471
Craig Mautner70a86932013-02-28 22:37:44 -08002472 int taskNdx = mTaskHistory.indexOf(task);
2473 do {
2474 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2475 } while (taskTop == null && taskNdx >= 0);
2476
Craig Mautnere3a74d52013-02-22 14:14:58 -08002477 if (topOptions != null) {
2478 // If we got some ActivityOptions from an activity on top that
2479 // was removed from the task, propagate them to the new real top.
2480 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002481 taskTop.updateOptionsLocked(topOptions);
2482 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002483 topOptions.abort();
2484 }
2485 }
2486
2487 return taskTop;
2488 }
2489
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002490 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2491 String resultWho, int requestCode, int resultCode, Intent data) {
2492
2493 if (callingUid > 0) {
2494 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002495 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002496 }
2497
2498 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2499 + " : who=" + resultWho + " req=" + requestCode
2500 + " res=" + resultCode + " data=" + data);
2501 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2502 try {
2503 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2504 list.add(new ResultInfo(resultWho, requestCode,
2505 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002506 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002507 return;
2508 } catch (Exception e) {
2509 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2510 }
2511 }
2512
2513 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2514 }
2515
Craig Mautner299f9602015-01-26 09:47:33 -08002516 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002517 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2518 ActivityRecord next = topRunningActivityLocked(null);
2519 if (next != r) {
2520 final TaskRecord task = r.task;
Craig Mautner84984fa2014-06-19 11:19:20 -07002521 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08002522 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(),
2523 reason + " adjustFocus");
Craig Mautner04f0b702013-10-22 12:31:01 -07002524 }
2525 }
Winson Chung648c83b2014-04-28 15:11:56 -07002526 ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
2527 if (top != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002528 mService.setFocusedActivityLocked(top, reason + " adjustTopFocus");
Winson Chung648c83b2014-04-28 15:11:56 -07002529 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002530 }
2531 }
2532
Craig Mautnerf3333272013-04-22 10:55:53 -07002533 final void stopActivityLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002534 if (DEBUG_SWITCH) Slog.d(TAG, "Stopping: " + r);
2535 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2536 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2537 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002538 if (!mService.isSleeping()) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002539 if (DEBUG_STATES) {
2540 Slog.d(TAG, "no-history finish of " + r);
2541 }
2542 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Todd Kennedy539db512014-12-15 09:57:55 -08002543 "stop-no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002544 } else {
2545 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2546 + " on stop because we're just sleeping");
2547 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002548 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002549 }
2550
2551 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002552 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002553 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002554 try {
2555 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002556 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2557 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002558 r.state = ActivityState.STOPPING;
2559 if (DEBUG_VISBILITY) Slog.v(
2560 TAG, "Stopping visible=" + r.visible + " for " + r);
2561 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002562 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002563 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002564 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002565 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002566 r.setSleeping(true);
2567 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002568 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002569 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002570 } catch (Exception e) {
2571 // Maybe just ignore exceptions here... if the process
2572 // has crashed, our death notification will clean things
2573 // up.
2574 Slog.w(TAG, "Exception thrown during pause", e);
2575 // Just in case, assume it to be stopped.
2576 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002577 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002578 r.state = ActivityState.STOPPED;
2579 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002580 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002581 }
2582 }
2583 }
2584 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002585
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002586 /**
2587 * @return Returns true if the activity is being finished, false if for
2588 * some reason it is being left as-is.
2589 */
2590 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002591 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002592 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002593 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002594 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002595 + ", result=" + resultCode + ", data=" + resultData
2596 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002597 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002598 return false;
2599 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002600
Craig Mautnerd44711d2013-02-23 11:24:36 -08002601 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002602 return true;
2603 }
2604
Craig Mautnerd2328952013-03-05 12:46:26 -08002605 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002606 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2607 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2608 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2609 ActivityRecord r = activities.get(activityNdx);
2610 if (r.resultTo == self && r.requestCode == requestCode) {
2611 if ((r.resultWho == null && resultWho == null) ||
2612 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2613 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2614 false);
2615 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002616 }
2617 }
2618 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002619 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002620 }
2621
Todd Kennedy539db512014-12-15 09:57:55 -08002622 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002623 ActivityRecord r = topRunningActivityLocked(null);
2624 if (r != null && r.app == app) {
2625 // If the top running activity is from this crashing
2626 // process, then terminate it to avoid getting in a loop.
2627 Slog.w(TAG, " Force finishing activity "
2628 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002629 int taskNdx = mTaskHistory.indexOf(r.task);
2630 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002631 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002632 // Also terminate any activities below it that aren't yet
2633 // stopped, to avoid a situation where one will get
2634 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002635 --activityNdx;
2636 if (activityNdx < 0) {
2637 do {
2638 --taskNdx;
2639 if (taskNdx < 0) {
2640 break;
2641 }
2642 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2643 } while (activityNdx < 0);
2644 }
2645 if (activityNdx >= 0) {
2646 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002647 if (r.state == ActivityState.RESUMED
2648 || r.state == ActivityState.PAUSING
2649 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002650 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002651 Slog.w(TAG, " Force finishing activity "
2652 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002653 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002654 }
2655 }
2656 }
2657 }
2658 }
2659
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002660 final void finishVoiceTask(IVoiceInteractionSession session) {
2661 IBinder sessionBinder = session.asBinder();
2662 boolean didOne = false;
2663 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2664 TaskRecord tr = mTaskHistory.get(taskNdx);
2665 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2666 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2667 ActivityRecord r = tr.mActivities.get(activityNdx);
2668 if (!r.finishing) {
2669 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2670 false);
2671 didOne = true;
2672 }
2673 }
2674 }
2675 }
2676 if (didOne) {
2677 mService.updateOomAdjLocked();
2678 }
2679 }
2680
Craig Mautnerd2328952013-03-05 12:46:26 -08002681 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002682 ArrayList<ActivityRecord> activities = r.task.mActivities;
2683 for (int index = activities.indexOf(r); index >= 0; --index) {
2684 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002685 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002686 break;
2687 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002688 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002689 }
2690 return true;
2691 }
2692
Dianne Hackborn5c607432012-02-28 14:44:19 -08002693 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2694 // send the result
2695 ActivityRecord resultTo = r.resultTo;
2696 if (resultTo != null) {
2697 if (DEBUG_RESULTS) Slog.v(TAG, "Adding result to " + resultTo
2698 + " who=" + r.resultWho + " req=" + r.requestCode
2699 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002700 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002701 if (resultData != null) {
Nicolas Prevotd1c99b12014-07-04 16:56:17 +01002702 resultData.setContentUserHint(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002703 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002704 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002705 if (r.info.applicationInfo.uid > 0) {
2706 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2707 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002708 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002709 }
2710 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2711 resultData);
2712 r.resultTo = null;
2713 }
2714 else if (DEBUG_RESULTS) Slog.v(TAG, "No result destination from " + r);
2715
2716 // Make sure this HistoryRecord is not holding on to other resources,
2717 // because clients have remote IPC references to this object so we
2718 // can't assume that will go away and want to avoid circular IPC refs.
2719 r.results = null;
2720 r.pendingResults = null;
2721 r.newIntents = null;
2722 r.icicle = null;
2723 }
2724
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002725 /**
2726 * @return Returns true if this activity has been removed from the history
2727 * list, or false if it is still in the list and will be removed later.
2728 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002729 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2730 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002731 if (r.finishing) {
2732 Slog.w(TAG, "Duplicate finish request for " + r);
2733 return false;
2734 }
2735
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -08002736 r.makeFinishing();
Craig Mautneraea74a52014-03-08 14:23:10 -08002737 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002738 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002739 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002740 task.taskId, r.shortComponentName, reason);
2741 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002742 final int index = activities.indexOf(r);
2743 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002744 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002745 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002746 // If the caller asked that this activity (and all above it)
2747 // be cleared when the task is reset, don't lose that information,
2748 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002749 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002750 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002751 }
2752 }
2753
2754 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002755
Craig Mautner299f9602015-01-26 09:47:33 -08002756 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002757
Dianne Hackborn5c607432012-02-28 14:44:19 -08002758 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002759
Craig Mautnerde4ef022013-04-07 19:01:33 -07002760 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002761 boolean endTask = index <= 0;
Craig Mautner323f7802013-10-01 21:16:22 -07002762 if (DEBUG_VISBILITY || DEBUG_TRANSITION) Slog.v(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002763 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002764 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002765 ? AppTransition.TRANSIT_TASK_CLOSE
2766 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002767
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002768 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002769 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002770
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002771 if (mPausingActivity == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002772 if (DEBUG_PAUSE) Slog.v(TAG, "Finish needs to pause: " + r);
2773 if (DEBUG_USER_LEAVING) Slog.v(TAG, "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002774 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002775 }
2776
Craig Mautneraea74a52014-03-08 14:23:10 -08002777 if (endTask) {
2778 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
2779 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002780 } else if (r.state != ActivityState.PAUSING) {
2781 // If the activity is PAUSING, we will complete the finish once
2782 // it is done pausing; else we can just directly finish it here.
2783 if (DEBUG_PAUSE) Slog.v(TAG, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002784 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002785 } else {
2786 if (DEBUG_PAUSE) Slog.v(TAG, "Finish waiting for pause of: " + r);
2787 }
2788
2789 return false;
2790 }
2791
Craig Mautnerf3333272013-04-22 10:55:53 -07002792 static final int FINISH_IMMEDIATELY = 0;
2793 static final int FINISH_AFTER_PAUSE = 1;
2794 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002795
Craig Mautnerf3333272013-04-22 10:55:53 -07002796 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002797 // First things first: if this activity is currently visible,
2798 // and the resumed activity is not yet visible, then hold off on
2799 // finishing until the resumed one becomes visible.
2800 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002801 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2802 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002803 if (mStackSupervisor.mStoppingActivities.size() > 3
2804 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002805 // If we already have a few activities waiting to stop,
2806 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002807 // them out. Or if r is the last of activity of the last task the stack
2808 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002809 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002810 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002811 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002812 }
2813 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002814 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2815 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002816 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002817 if (oomAdj) {
2818 mService.updateOomAdjLocked();
2819 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002820 return r;
2821 }
2822
2823 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002824 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002825 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002826 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002827 if (mResumedActivity == r) {
2828 mResumedActivity = null;
2829 }
2830 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002831 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002832 r.state = ActivityState.FINISHING;
2833
2834 if (mode == FINISH_IMMEDIATELY
2835 || prevState == ActivityState.STOPPED
2836 || prevState == ActivityState.INITIALIZING) {
2837 // If this activity is already stopped, we can just finish
2838 // it right now.
Craig Mautnerd163e752014-06-13 17:18:47 -07002839 r.makeFinishing();
Craig Mautneree2e45a2014-06-27 12:10:03 -07002840 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002841 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002842 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002843 }
Craig Mautner8c14c152015-01-15 17:32:07 -08002844 if (DEBUG_CONTAINERS) Slog.d(TAG,
Craig Mautnerd163e752014-06-13 17:18:47 -07002845 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
2846 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002847 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002848 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002849
2850 // Need to go through the full pause cycle to get this
2851 // activity into the stopped state and then finish it.
2852 if (localLOGV) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002853 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002854 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002855 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002856 return r;
2857 }
2858
Craig Mautneree36c772014-07-16 14:56:05 -07002859 void finishAllActivitiesLocked(boolean immediately) {
2860 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002861 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2862 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2863 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2864 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07002865 noActivitiesInStack = false;
2866 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002867 continue;
2868 }
Craig Mautneree36c772014-07-16 14:56:05 -07002869 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002870 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2871 }
2872 }
Craig Mautneree36c772014-07-16 14:56:05 -07002873 if (noActivitiesInStack) {
2874 mActivityContainer.onTaskListEmptyLocked();
2875 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002876 }
2877
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002878 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
2879 // Basic case: for simple app-centric recents, we need to recreate
2880 // the task if the affinity has changed.
2881 if (srec == null || srec.task.affinity == null ||
2882 !srec.task.affinity.equals(destAffinity)) {
2883 return true;
2884 }
2885 // Document-centric case: an app may be split in to multiple documents;
2886 // they need to re-create their task if this current activity is the root
2887 // of a document, unless simply finishing it will return them to the the
2888 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07002889 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
2890 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002891 // Okay, this activity is at the root of its task. What to do, what to do...
2892 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
2893 // Finishing won't return to an application, so we need to recreate.
2894 return true;
2895 }
2896 // We now need to get the task below it to determine what to do.
2897 int taskIdx = mTaskHistory.indexOf(srec.task);
2898 if (taskIdx <= 0) {
2899 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
2900 return false;
2901 }
2902 if (taskIdx == 0) {
2903 // At the bottom of the stack, nothing to go back to.
2904 return true;
2905 }
2906 TaskRecord prevTask = mTaskHistory.get(taskIdx);
2907 if (!srec.task.affinity.equals(prevTask.affinity)) {
2908 // These are different apps, so need to recreate.
2909 return true;
2910 }
2911 }
2912 return false;
2913 }
2914
Craig Mautnerd2328952013-03-05 12:46:26 -08002915 final boolean navigateUpToLocked(IBinder token, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002916 Intent resultData) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002917 final ActivityRecord srec = ActivityRecord.forToken(token);
Craig Mautner0247fc82013-02-28 14:32:06 -08002918 final TaskRecord task = srec.task;
2919 final ArrayList<ActivityRecord> activities = task.mActivities;
2920 final int start = activities.indexOf(srec);
2921 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002922 return false;
2923 }
2924 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08002925 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002926 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08002927 final ComponentName dest = destIntent.getComponent();
2928 if (start > 0 && dest != null) {
2929 for (int i = finishTo; i >= 0; i--) {
2930 ActivityRecord r = activities.get(i);
2931 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002932 r.info.name.equals(dest.getClassName())) {
2933 finishTo = i;
2934 parent = r;
2935 foundParentInTask = true;
2936 break;
2937 }
2938 }
2939 }
2940
2941 IActivityController controller = mService.mController;
2942 if (controller != null) {
2943 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
2944 if (next != null) {
2945 // ask watcher if this is allowed
2946 boolean resumeOK = true;
2947 try {
2948 resumeOK = controller.activityResuming(next.packageName);
2949 } catch (RemoteException e) {
2950 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07002951 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002952 }
2953
2954 if (!resumeOK) {
2955 return false;
2956 }
2957 }
2958 }
2959 final long origId = Binder.clearCallingIdentity();
2960 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002961 ActivityRecord r = activities.get(i);
2962 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002963 // Only return the supplied result for the first activity finished
2964 resultCode = Activity.RESULT_CANCELED;
2965 resultData = null;
2966 }
2967
2968 if (parent != null && foundParentInTask) {
2969 final int parentLaunchMode = parent.info.launchMode;
2970 final int destIntentFlags = destIntent.getFlags();
2971 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
2972 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
2973 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
2974 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08002975 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
2976 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002977 } else {
2978 try {
2979 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
2980 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07002981 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002982 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002983 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborn95465202014-09-15 16:21:55 -07002984 -1, parent.launchedFromUid, 0, null, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002985 foundParentInTask = res == ActivityManager.START_SUCCESS;
2986 } catch (RemoteException e) {
2987 foundParentInTask = false;
2988 }
2989 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08002990 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002991 }
2992 }
2993 Binder.restoreCallingIdentity(origId);
2994 return foundParentInTask;
2995 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002996 /**
2997 * Perform the common clean-up of an activity record. This is called both
2998 * as part of destroyActivityLocked() (when destroying the client-side
2999 * representation) and cleaning things up as a result of its hosting
3000 * processing going away, in which case there is no remaining client-side
3001 * state to destroy so only the cleanup here is needed.
3002 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003003 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3004 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003005 if (mResumedActivity == r) {
3006 mResumedActivity = null;
3007 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003008 if (mPausingActivity == r) {
3009 mPausingActivity = null;
3010 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003011 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003012
3013 r.configDestroy = false;
3014 r.frozenBeforeDestroy = false;
3015
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003016 if (setState) {
3017 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
3018 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003019 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003020 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003021 }
3022
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003023 // Make sure this record is no longer in the pending finishes list.
3024 // This could happen, for example, if we are trimming activities
3025 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003026 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003027 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003028
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003029 // Remove any pending results.
3030 if (r.finishing && r.pendingResults != null) {
3031 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3032 PendingIntentRecord rec = apr.get();
3033 if (rec != null) {
3034 mService.cancelIntentSenderLocked(rec, false);
3035 }
3036 }
3037 r.pendingResults = null;
3038 }
3039
3040 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003041 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003042 }
3043
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003044 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003045 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003046 if (getVisibleBehindActivity() == r) {
3047 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003048 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003049 }
3050
3051 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003052 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003053 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003054 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003055 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003056 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003057 }
3058
Craig Mautner299f9602015-01-26 09:47:33 -08003059 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003060 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003061 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
3062 r.makeFinishing();
3063 if (DEBUG_ADD_REMOVE) {
3064 RuntimeException here = new RuntimeException("here");
3065 here.fillInStackTrace();
3066 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003067 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003068 r.takeFromHistory();
3069 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003070 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003071 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003072 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003073 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003074 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003075 if (VALIDATE_TOKENS) {
3076 validateAppTokensLocked();
3077 }
Craig Mautner312ba862014-02-10 17:55:01 -08003078 final TaskRecord task = r.task;
3079 if (task != null && task.removeActivity(r)) {
3080 if (DEBUG_STACK) Slog.i(TAG,
3081 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003082 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3083 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003084 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003085 }
Craig Mautner299f9602015-01-26 09:47:33 -08003086 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003087 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003088 cleanUpActivityServicesLocked(r);
3089 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003090 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003091
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003092 /**
3093 * Perform clean-up of service connections in an activity record.
3094 */
3095 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3096 // Throw away any services that have been bound by this activity.
3097 if (r.connections != null) {
3098 Iterator<ConnectionRecord> it = r.connections.iterator();
3099 while (it.hasNext()) {
3100 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003101 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003102 }
3103 r.connections = null;
3104 }
3105 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003106
Craig Mautneree2e45a2014-06-27 12:10:03 -07003107 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003108 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003109 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003110 mHandler.sendMessage(msg);
3111 }
3112
Craig Mautneree2e45a2014-06-27 12:10:03 -07003113 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003114 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003115 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003116 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3117 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3118 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3119 final ActivityRecord r = activities.get(activityNdx);
3120 if (r.finishing) {
3121 continue;
3122 }
3123 if (r.fullscreen) {
3124 lastIsOpaque = true;
3125 }
3126 if (owner != null && r.app != owner) {
3127 continue;
3128 }
3129 if (!lastIsOpaque) {
3130 continue;
3131 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003132 if (r.isDestroyable()) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003133 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3134 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003135 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003136 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003137 activityRemoved = true;
3138 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003139 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003140 }
3141 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003142 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003143 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003144 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003145 }
3146
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003147 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3148 if (r.isDestroyable()) {
3149 if (DEBUG_SWITCH) Slog.v(TAG, "Destroying " + r + " in state " + r.state
3150 + " resumed=" + mResumedActivity
3151 + " pausing=" + mPausingActivity + " for reason " + reason);
3152 return destroyActivityLocked(r, true, reason);
3153 }
3154 return false;
3155 }
3156
3157 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3158 String reason) {
3159 // Iterate over tasks starting at the back (oldest) first.
3160 if (DEBUG_RELEASE) Slog.d(TAG, "Trying to release some activities in " + app);
3161 int maxTasks = tasks.size() / 4;
3162 if (maxTasks < 1) {
3163 maxTasks = 1;
3164 }
3165 int numReleased = 0;
3166 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3167 final TaskRecord task = mTaskHistory.get(taskNdx);
3168 if (!tasks.contains(task)) {
3169 continue;
3170 }
3171 if (DEBUG_RELEASE) Slog.d(TAG, "Looking for activities to release in " + task);
3172 int curNum = 0;
3173 final ArrayList<ActivityRecord> activities = task.mActivities;
3174 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3175 final ActivityRecord activity = activities.get(actNdx);
3176 if (activity.app == app && activity.isDestroyable()) {
3177 if (DEBUG_RELEASE) Slog.v(TAG, "Destroying " + activity
3178 + " in state " + activity.state + " resumed=" + mResumedActivity
3179 + " pausing=" + mPausingActivity + " for reason " + reason);
3180 destroyActivityLocked(activity, true, reason);
3181 if (activities.get(actNdx) != activity) {
3182 // Was removed from list, back up so we don't miss the next one.
3183 actNdx--;
3184 }
3185 curNum++;
3186 }
3187 }
3188 if (curNum > 0) {
3189 numReleased += curNum;
3190 maxTasks--;
3191 if (mTaskHistory.get(taskNdx) != task) {
3192 // The entire task got removed, back up so we don't miss the next one.
3193 taskNdx--;
3194 }
3195 }
3196 }
3197 if (DEBUG_RELEASE) Slog.d(TAG, "Done releasing: did " + numReleased + " activities");
3198 return numReleased;
3199 }
3200
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003201 /**
3202 * Destroy the current CLIENT SIDE instance of an activity. This may be
3203 * called both when actually finishing an activity, or when performing
3204 * a configuration switch where we destroy the current client-side object
3205 * but then create a new client-side object for this same HistoryRecord.
3206 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003207 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003208 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003209 TAG, "Removing activity from " + reason + ": token=" + r
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003210 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
3211 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003212 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003213 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003214
3215 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003216
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003217 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003218
3219 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003220
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003221 if (hadApp) {
3222 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003223 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003224 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3225 mService.mHeavyWeightProcess = null;
3226 mService.mHandler.sendEmptyMessage(
3227 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3228 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003229 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003230 // Update any services we are bound to that might care about whether
3231 // their client may have activities.
3232 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003233 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003234 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003235 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003236 }
3237 }
3238
3239 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003240
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003241 try {
3242 if (DEBUG_SWITCH) Slog.i(TAG, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003243 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003244 r.configChangeFlags);
3245 } catch (Exception e) {
3246 // We can just ignore exceptions here... if the process
3247 // has crashed, our death notification will clean things
3248 // up.
3249 //Slog.w(TAG, "Exception thrown during finish", e);
3250 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003251 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003252 removedFromHistory = true;
3253 skipDestroy = true;
3254 }
3255 }
3256
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003257 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003258
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003259 // If the activity is finishing, we need to wait on removing it
3260 // from the list to give it a chance to do its cleanup. During
3261 // that time it may make calls back with its token so we need to
3262 // be able to find it on the list and so we don't want to remove
3263 // it from the list yet. Otherwise, we can just immediately put
3264 // it in the destroyed state since we are not removing it from the
3265 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003266 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003267 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
3268 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003269 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003270 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003271 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3272 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003273 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003274 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003275 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003276 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003277 }
3278 } else {
3279 // remove this record from the history.
3280 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003281 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003282 removedFromHistory = true;
3283 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003284 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003285 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003286 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003287 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003288 }
3289 }
3290
3291 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003292
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003293 if (!mLRUActivities.remove(r) && hadApp) {
3294 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3295 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003296
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003297 return removedFromHistory;
3298 }
3299
Craig Mautner299f9602015-01-26 09:47:33 -08003300 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003301 final long origId = Binder.clearCallingIdentity();
3302 try {
3303 ActivityRecord r = ActivityRecord.forToken(token);
3304 if (r != null) {
3305 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003306 }
Craig Mautnerd163e752014-06-13 17:18:47 -07003307 if (DEBUG_CONTAINERS) Slog.d(TAG, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003308
Wale Ogunwale60454db2015-01-23 16:05:07 -08003309 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003310 if (r.state == ActivityState.DESTROYING) {
3311 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003312 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003313 }
3314 }
Craig Mautner05d29032013-05-03 13:40:13 -07003315 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003316 } finally {
3317 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003318 }
3319 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003320
Todd Kennedyaab56db2015-01-30 09:39:53 -08003321 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003322 if (hasVisibleBehindActivity() &&
3323 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003324 if (r == topRunningActivityLocked(null)) {
3325 // Don't release the top activity if it has requested to run behind the next
3326 // activity.
3327 return;
3328 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003329 if (DEBUG_STATES) Slog.d(TAG, "releaseBackgroundResources activtyDisplay=" +
3330 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003331 " thread=" + r.app.thread);
3332 if (r != null && r.app != null && r.app.thread != null) {
3333 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003334 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003335 } catch (RemoteException e) {
3336 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003337 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003338 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003339 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003340 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003341 }
3342 }
3343 }
3344
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003345 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003346 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3347 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003348 if (r != null) {
3349 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003350 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003351 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003352 }
3353 mStackSupervisor.resumeTopActivitiesLocked();
3354 }
3355
Jose Lima4b6c6692014-08-12 17:41:12 -07003356 boolean hasVisibleBehindActivity() {
3357 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003358 }
3359
Jose Lima4b6c6692014-08-12 17:41:12 -07003360 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003361 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003362 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003363 }
3364 }
3365
Jose Lima4b6c6692014-08-12 17:41:12 -07003366 ActivityRecord getVisibleBehindActivity() {
3367 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003368 }
3369
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003370 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3371 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003372 int i = list.size();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003373 if (DEBUG_CLEANUP) Slog.v(
3374 TAG, "Removing app " + app + " from list " + listName
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003375 + " with " + i + " entries");
3376 while (i > 0) {
3377 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003378 ActivityRecord r = list.get(i);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003379 if (DEBUG_CLEANUP) Slog.v(TAG, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003380 if (r.app == app) {
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003381 if (DEBUG_CLEANUP) Slog.v(TAG, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003382 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003383 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003384 }
3385 }
3386 }
3387
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003388 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3389 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003390 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3391 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003392 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3393 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003394 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003395 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003396 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3397 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003398
3399 boolean hasVisibleActivities = false;
3400
3401 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003402 int i = numActivities();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003403 if (DEBUG_CLEANUP) Slog.v(
3404 TAG, "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003405 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3406 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3407 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3408 final ActivityRecord r = activities.get(activityNdx);
3409 --i;
3410 if (DEBUG_CLEANUP) Slog.v(
3411 TAG, "Record #" + i + " " + r + ": app=" + r.app);
3412 if (r.app == app) {
3413 boolean remove;
3414 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3415 // Don't currently have state for the activity, or
3416 // it is finishing -- always remove it.
3417 remove = true;
3418 } else if (r.launchCount > 2 &&
3419 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3420 // We have launched this activity too many times since it was
3421 // able to run, so give up and remove it.
3422 remove = true;
3423 } else {
3424 // The process may be gone, but the activity lives on!
3425 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003426 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003427 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003428 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003429 RuntimeException here = new RuntimeException("here");
3430 here.fillInStackTrace();
3431 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
3432 + ": haveState=" + r.haveState
3433 + " stateNotNeeded=" + r.stateNotNeeded
3434 + " finishing=" + r.finishing
3435 + " state=" + r.state, here);
3436 }
3437 if (!r.finishing) {
3438 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3439 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3440 r.userId, System.identityHashCode(r),
3441 r.task.taskId, r.shortComponentName,
3442 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003443 if (r.state == ActivityState.RESUMED) {
3444 mService.updateUsageStats(r, false);
3445 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003446 }
Craig Mautner299f9602015-01-26 09:47:33 -08003447 removeActivityFromHistoryLocked(r, "appDied");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003448
Craig Mautner0247fc82013-02-28 14:32:06 -08003449 } else {
3450 // We have the current state for this activity, so
3451 // it can be restarted later when needed.
3452 if (localLOGV) Slog.v(
3453 TAG, "Keeping entry, setting app to null");
3454 if (r.visible) {
3455 hasVisibleActivities = true;
3456 }
3457 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
3458 + r);
3459 r.app = null;
3460 r.nowVisible = false;
3461 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003462 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08003463 "App died, clearing saved state of " + r);
3464 r.icicle = null;
3465 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003466 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003467
Craig Mautnerd2328952013-03-05 12:46:26 -08003468 cleanUpActivityLocked(r, true, true);
Craig Mautner0247fc82013-02-28 14:32:06 -08003469 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003470 }
3471 }
3472
3473 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003474 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003475
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003476 final void updateTransitLocked(int transit, Bundle options) {
3477 if (options != null) {
3478 ActivityRecord r = topRunningActivityLocked(null);
3479 if (r != null && r.state != ActivityState.RESUMED) {
3480 r.updateOptionsLocked(options);
3481 } else {
3482 ActivityOptions.abort(options);
3483 }
3484 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003485 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003486 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003487
Craig Mautner21d24a22014-04-23 11:45:37 -07003488 void updateTaskMovement(TaskRecord task, boolean toFront) {
3489 if (task.isPersistable) {
3490 task.mLastTimeMoved = System.currentTimeMillis();
3491 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3492 // recently will be most negative, tasks sent to the bottom before that will be less
3493 // negative. Similarly for recent tasks moved to the top which will be most positive.
3494 if (!toFront) {
3495 task.mLastTimeMoved *= -1;
3496 }
3497 }
3498 }
3499
Craig Mautner84984fa2014-06-19 11:19:20 -07003500 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003501 final int top = mTaskHistory.size() - 1;
3502 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3503 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003504 if (task.taskType == homeStackTaskType) {
3505 if (DEBUG_TASKS || DEBUG_STACK)
3506 Slog.d(TAG, "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003507 mTaskHistory.remove(taskNdx);
3508 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003509 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003510 mWindowManager.moveTaskToTop(task.taskId);
3511 return;
3512 }
3513 }
3514 }
3515
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003516 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Craig Mautner299f9602015-01-26 09:47:33 -08003517 String reason) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003518 if (DEBUG_SWITCH) Slog.v(TAG, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003519
Craig Mautner11bf9a52013-02-19 14:08:51 -08003520 final int numTasks = mTaskHistory.size();
3521 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003522 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003523 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003524 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003525 ActivityOptions.abort(options);
3526 } else {
3527 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3528 }
3529 return;
3530 }
3531
3532 // Shift all activities with this task up to the top
3533 // of the stack, keeping them in the same internal order.
Craig Mautnerac6f8432013-07-17 13:24:59 -07003534 insertTaskAtTop(tr);
Craig Mautner299f9602015-01-26 09:47:33 -08003535 moveToFront(reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003536
3537 if (DEBUG_TRANSITION) Slog.v(TAG, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003538 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003539 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003540 ActivityRecord r = topRunningActivityLocked(null);
3541 if (r != null) {
3542 mNoAnimActivities.add(r);
3543 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003544 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003545 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003546 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003547 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003548
Craig Mautner05d29032013-05-03 13:40:13 -07003549 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003550 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003551
3552 if (VALIDATE_TOKENS) {
3553 validateAppTokensLocked();
3554 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003555 }
3556
3557 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003558 * Worker method for rearranging history stack. Implements the function of moving all
3559 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003560 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003561 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003562 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3563 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003564 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003565 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003566 * @return Returns true if the move completed, false if not.
3567 */
Craig Mautner299f9602015-01-26 09:47:33 -08003568 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003569 final TaskRecord tr = taskForIdLocked(taskId);
3570 if (tr == null) {
3571 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3572 return false;
3573 }
3574
3575 Slog.i(TAG, "moveTaskToBack: " + tr);
3576
3577 mStackSupervisor.endLockTaskModeIfTaskEnding(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003578
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003579 // If we have a watcher, preflight the move before committing to it. First check
3580 // for *other* available tasks, but if none are available, then try again allowing the
3581 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003582 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003583 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003584 if (next == null) {
3585 next = topRunningActivityLocked(null, 0);
3586 }
3587 if (next != null) {
3588 // ask watcher if this is allowed
3589 boolean moveOK = true;
3590 try {
3591 moveOK = mService.mController.activityResuming(next.packageName);
3592 } catch (RemoteException e) {
3593 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003594 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003595 }
3596 if (!moveOK) {
3597 return false;
3598 }
3599 }
3600 }
3601
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003602 if (DEBUG_TRANSITION) Slog.v(TAG,
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003603 "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003604
riddle_hsuc215a4f2014-12-27 12:10:45 +08003605 boolean prevIsHome = false;
3606 if (tr.isOverHomeStack()) {
3607 final TaskRecord nextTask = getNextTask(tr);
3608 if (nextTask != null) {
3609 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3610 } else {
3611 prevIsHome = true;
3612 }
3613 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003614 mTaskHistory.remove(tr);
3615 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003616 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003617
Craig Mautnerc8143c62013-09-03 12:15:57 -07003618 // There is an assumption that moving a task to the back moves it behind the home activity.
3619 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003620 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003621 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3622 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003623 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003624 break;
3625 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003626 if (taskNdx == 1) {
3627 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003628 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003629 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003630 }
3631
Craig Mautner299f9602015-01-26 09:47:33 -08003632 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003633 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003634
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003635 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003636 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003637 }
3638
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003639 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
riddle_hsuc215a4f2014-12-27 12:10:45 +08003640 if (prevIsHome || task == tr && tr.isOverHomeStack()
3641 || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003642 if (!mService.mBooting && !mService.mBooted) {
3643 // Not ready yet!
3644 return false;
3645 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003646 final int taskToReturnTo = tr.getTaskToReturnTo();
3647 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003648 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003649 }
3650
Craig Mautner05d29032013-05-03 13:40:13 -07003651 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003652 return true;
3653 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003654
Craig Mautner8849a5e2013-04-02 16:41:03 -07003655 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003656 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003657 final Uri data = r.intent.getData();
3658 final String strData = data != null ? data.toSafeString() : null;
3659
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003660 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003661 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003662 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003663 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003664 }
3665
3666 /**
3667 * Make sure the given activity matches the current configuration. Returns
3668 * false if the activity had to be destroyed. Returns true if the
3669 * configuration is the same, or the activity will remain running as-is
3670 * for whatever reason. Ensures the HistoryRecord is updated with the
3671 * correct configuration and all other bookkeeping is handled.
3672 */
3673 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3674 int globalChanges) {
3675 if (mConfigWillChange) {
3676 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3677 "Skipping config check (will change): " + r);
3678 return true;
3679 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003680
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003681 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3682 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003683
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08003684 // Make sure the current stack override configuration is supported by the top task
3685 // before continuing.
3686 final TaskRecord topTask = topTask();
3687 if (topTask != null && ((topTask.mResizeable && mForcedFullscreen)
3688 || (!topTask.mResizeable && !mFullscreen))) {
3689 final boolean prevFullscreen = mFullscreen;
3690 final Configuration newOverrideConfig =
3691 mWindowManager.forceStackToFullscreen(mStackId, !topTask.mResizeable);
3692 updateOverrideConfiguration(newOverrideConfig);
3693 mForcedFullscreen = !prevFullscreen && mFullscreen;
3694 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3695 "Updated stack config to support task=" + topTask
3696 + " resizeable=" + topTask.mResizeable
3697 + " mForcedFullscreen=" + mForcedFullscreen
3698 + " prevFullscreen=" + prevFullscreen
3699 + " mFullscreen=" + mFullscreen);
3700 }
3701
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003702 // Short circuit: if the two configurations are the exact same
3703 // object (the common case), then there is nothing to do.
3704 Configuration newConfig = mService.mConfiguration;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003705 if (r.configuration == newConfig
3706 && r.stackConfigOverride == mOverrideConfig
3707 && !r.forceNewConfig) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003708 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3709 "Configuration unchanged in " + r);
3710 return true;
3711 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003712
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003713 // We don't worry about activities that are finishing.
3714 if (r.finishing) {
3715 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3716 "Configuration doesn't matter in finishing " + r);
3717 r.stopFreezingScreenLocked(false);
3718 return true;
3719 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003720
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003721 // Okay we now are going to make this activity have the new config.
3722 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003723 final Configuration oldConfig = r.configuration;
3724 final Configuration oldStackOverride = r.stackConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003725 r.configuration = newConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003726 r.stackConfigOverride = mOverrideConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003727
3728 // Determine what has changed. May be nothing, if this is a config
3729 // that has come back from the app after going idle. In that case
3730 // we just want to leave the official config object now in the
3731 // activity and do nothing else.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003732 int stackChanges = oldStackOverride.diff(mOverrideConfig);
Wale Ogunwalea9281272015-02-07 14:04:19 -08003733 if (stackChanges == 0) {
3734 // {@link Configuration#diff} doesn't catch changes from unset values.
3735 // Check for changes we care about.
3736 if (oldStackOverride.orientation != mOverrideConfig.orientation) {
3737 stackChanges |= ActivityInfo.CONFIG_ORIENTATION;
3738 }
3739 if (oldStackOverride.screenHeightDp != mOverrideConfig.screenHeightDp
3740 || oldStackOverride.screenWidthDp != mOverrideConfig.screenWidthDp) {
3741 stackChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
3742 }
3743 if (oldStackOverride.smallestScreenWidthDp != mOverrideConfig.smallestScreenWidthDp) {
3744 stackChanges |= ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
3745 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08003746 }
3747 final int changes = oldConfig.diff(newConfig) | stackChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003748 if (changes == 0 && !r.forceNewConfig) {
3749 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3750 "Configuration no differences in " + r);
3751 return true;
3752 }
3753
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003754 // If the activity isn't currently running, just leave the new
3755 // configuration and it will pick that up next time it starts.
3756 if (r.app == null || r.app.thread == null) {
3757 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
3758 "Configuration doesn't matter not running " + r);
3759 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003760 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003761 return true;
3762 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003763
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003764 // Figure out how to handle the changes between the configurations.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003765 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) {
3766 Slog.v(TAG, "Checking to restart " + r.info.name + ": changed=0x"
3767 + Integer.toHexString(changes) + ", handles=0x"
Dianne Hackborne6676352011-06-01 16:51:20 -07003768 + Integer.toHexString(r.info.getRealConfigChanged())
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003769 + ", newConfig=" + newConfig);
3770 }
Dianne Hackborne6676352011-06-01 16:51:20 -07003771 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003772 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3773 r.configChangeFlags |= changes;
3774 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003775 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003776 if (r.app == null || r.app.thread == null) {
3777 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003778 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003779 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003780 } else if (r.state == ActivityState.PAUSING) {
3781 // A little annoying: we are waiting for this activity to
3782 // finish pausing. Let's not do anything now, but just
3783 // flag that it needs to be restarted when done pausing.
3784 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003785 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003786 r.configDestroy = true;
3787 return true;
3788 } else if (r.state == ActivityState.RESUMED) {
3789 // Try to optimize this case: the configuration is changing
3790 // and we need to restart the top, resumed activity.
3791 // Instead of doing the normal handshaking, just say
3792 // "restart!".
3793 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003794 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003795 relaunchActivityLocked(r, r.configChangeFlags, true);
3796 r.configChangeFlags = 0;
3797 } else {
3798 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003799 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003800 relaunchActivityLocked(r, r.configChangeFlags, false);
3801 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003802 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003803
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003804 // All done... tell the caller we weren't able to keep this
3805 // activity around.
3806 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003807 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003808
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003809 // Default case: the activity can handle this new configuration, so hand it over.
3810 // NOTE: We only forward the stack override configuration as the system level configuration
3811 // changes is always sent to all processes when they happen so it can just use whatever
3812 // system level configuration it last got.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003813 if (r.app != null && r.app.thread != null) {
3814 try {
3815 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + r);
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003816 r.app.thread.scheduleActivityConfigurationChanged(
3817 r.appToken, new Configuration(mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003818 } catch (RemoteException e) {
3819 // If process died, whatever.
3820 }
3821 }
3822 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003823
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003824 return true;
3825 }
3826
Craig Mautnerc8143c62013-09-03 12:15:57 -07003827 private boolean relaunchActivityLocked(ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003828 int changes, boolean andResume) {
3829 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003830 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003831 if (andResume) {
3832 results = r.results;
3833 newIntents = r.newIntents;
3834 }
3835 if (DEBUG_SWITCH) Slog.v(TAG, "Relaunching: " + r
3836 + " with results=" + results + " newIntents=" + newIntents
3837 + " andResume=" + andResume);
3838 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003839 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003840 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003841
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003842 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003843
Craig Mautner34b73df2014-01-12 21:11:08 -08003844 mStackSupervisor.removeChildActivityContainers(r);
3845
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003846 try {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003847 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
3848 (andResume ? "Relaunching to RESUMED " : "Relaunching to PAUSED ")
3849 + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003850 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003851 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
3852 !andResume, new Configuration(mService.mConfiguration),
3853 new Configuration(mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003854 // Note: don't need to call pauseIfSleepingLocked() here, because
3855 // the caller will only pass in 'andResume' if this activity is
3856 // currently resumed, which implies we aren't sleeping.
3857 } catch (RemoteException e) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003858 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003859 }
3860
3861 if (andResume) {
3862 r.results = null;
3863 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003864 r.state = ActivityState.RESUMED;
3865 } else {
3866 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3867 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003868 }
3869
3870 return true;
3871 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003872
3873 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003874 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3875 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3876 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3877 final ActivityRecord r = activities.get(activityNdx);
3878 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003879 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003880 }
3881 if (r.fullscreen && !r.finishing) {
3882 return false;
3883 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003884 }
3885 }
Craig Mautner34b73df2014-01-12 21:11:08 -08003886 final ActivityRecord r = ActivityRecord.forToken(token);
3887 if (r == null) {
3888 return false;
3889 }
3890 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3891 + " would have returned true for r=" + r);
3892 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003893 }
3894
3895 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003896 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3897 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3898 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3899 final ActivityRecord r = activities.get(activityNdx);
3900 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003901 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003902 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003903 }
3904 }
3905 }
3906
3907 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
3908 boolean didSomething = false;
3909 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003910 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08003911 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3912 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3913 int numActivities = activities.size();
3914 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
3915 ActivityRecord r = activities.get(activityNdx);
3916 final boolean samePackage = r.packageName.equals(name)
3917 || (name == null && r.userId == userId);
3918 if ((userId == UserHandle.USER_ALL || r.userId == userId)
3919 && (samePackage || r.task == lastTask)
3920 && (r.app == null || evenPersistent || !r.app.persistent)) {
3921 if (!doit) {
3922 if (r.finishing) {
3923 // If this activity is just finishing, then it is not
3924 // interesting as far as something to stop.
3925 continue;
3926 }
3927 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08003928 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00003929 if (r.isHomeActivity()) {
3930 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
3931 Slog.i(TAG, "Skip force-stop again " + r);
3932 continue;
3933 } else {
3934 homeActivity = r.realActivity;
3935 }
3936 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003937 didSomething = true;
3938 Slog.i(TAG, " Force finishing activity " + r);
3939 if (samePackage) {
3940 if (r.app != null) {
3941 r.app.removed = true;
3942 }
3943 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08003944 }
Craig Mautner56f52db2013-02-25 10:03:01 -08003945 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07003946 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
3947 true)) {
3948 // r has been deleted from mActivities, accommodate.
3949 --numActivities;
3950 --activityNdx;
3951 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003952 }
3953 }
3954 }
3955 return didSomething;
3956 }
3957
Dianne Hackborn09233282014-04-30 11:33:59 -07003958 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003959 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08003960 final TaskRecord task = mTaskHistory.get(taskNdx);
3961 ActivityRecord r = null;
3962 ActivityRecord top = null;
3963 int numActivities = 0;
3964 int numRunning = 0;
3965 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautner5cbaaa32013-10-29 13:39:26 -07003966 if (activities.isEmpty()) {
3967 continue;
3968 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07003969 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07003970 continue;
3971 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003972 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3973 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08003974
Craig Mautneraab647e2013-02-28 16:31:36 -08003975 // Initialize state for next task if needed.
3976 if (top == null || (top.state == ActivityState.INITIALIZING)) {
3977 top = r;
3978 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08003979 }
Craig Mautneraab647e2013-02-28 16:31:36 -08003980
3981 // Add 'r' into the current task.
3982 numActivities++;
3983 if (r.app != null && r.app.thread != null) {
3984 numRunning++;
3985 }
3986
3987 if (localLOGV) Slog.v(
3988 TAG, r.intent.getComponent().flattenToShortString()
3989 + ": task=" + r.task);
3990 }
3991
3992 RunningTaskInfo ci = new RunningTaskInfo();
3993 ci.id = task.taskId;
3994 ci.baseActivity = r.intent.getComponent();
3995 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07003996 ci.lastActiveTime = task.lastActiveTime;
3997
Craig Mautnerc0ffce52014-07-01 12:38:52 -07003998 if (top.task != null) {
3999 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004000 }
4001 ci.numActivities = numActivities;
4002 ci.numRunning = numRunning;
4003 //System.out.println(
4004 // "#" + maxNum + ": " + " descr=" + ci.description);
Craig Mautneraab647e2013-02-28 16:31:36 -08004005 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004006 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004007 }
4008
4009 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004010 final int top = mTaskHistory.size() - 1;
Craig Mautnercae015f2013-02-08 14:31:27 -08004011 if (DEBUG_SWITCH) Slog.d(
4012 TAG, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004013 if (top >= 0) {
4014 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4015 int activityTop = activities.size() - 1;
4016 if (activityTop > 0) {
4017 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4018 "unhandled-back", true);
4019 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004020 }
4021 }
4022
Craig Mautner6b74cb52013-09-27 17:02:21 -07004023 /**
4024 * Reset local parameters because an app's activity died.
4025 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004026 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004027 */
4028 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004029 if (mPausingActivity != null && mPausingActivity.app == app) {
4030 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG,
4031 "App died while pausing: " + mPausingActivity);
4032 mPausingActivity = null;
4033 }
4034 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4035 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004036 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004037 }
4038
Craig Mautner19091252013-10-05 00:03:53 -07004039 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004040 }
4041
Craig Mautnercae015f2013-02-08 14:31:27 -08004042 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004043 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4044 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4045 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4046 final ActivityRecord r = activities.get(activityNdx);
4047 if (r.app == app) {
4048 Slog.w(TAG, " Force finishing activity "
4049 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004050 // Force the destroy to skip right to removal.
4051 r.app = null;
4052 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004053 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004054 }
4055 }
4056 }
4057
Dianne Hackborn390517b2013-05-30 15:03:32 -07004058 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004059 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004060 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004061 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4062 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004063 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4064 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004065 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07004066 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004067 if (printed) {
4068 header = null;
4069 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004070 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004071 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004072 }
4073
4074 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4075 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4076
4077 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004078 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4079 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004080 }
4081 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004082 final int top = mTaskHistory.size() - 1;
4083 if (top >= 0) {
4084 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4085 int listTop = list.size() - 1;
4086 if (listTop >= 0) {
4087 activities.add(list.get(listTop));
4088 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004089 }
4090 } else {
4091 ItemMatcher matcher = new ItemMatcher();
4092 matcher.build(name);
4093
Craig Mautneraab647e2013-02-28 16:31:36 -08004094 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4095 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4096 if (matcher.match(r1, r1.intent.getComponent())) {
4097 activities.add(r1);
4098 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004099 }
4100 }
4101 }
4102
4103 return activities;
4104 }
4105
4106 ActivityRecord restartPackage(String packageName) {
4107 ActivityRecord starting = topRunningActivityLocked(null);
4108
4109 // All activities that came from the package must be
4110 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004111 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4112 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4113 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4114 final ActivityRecord a = activities.get(activityNdx);
4115 if (a.info.packageName.equals(packageName)) {
4116 a.forceNewConfig = true;
4117 if (starting != null && a == starting && a.visible) {
4118 a.startFreezingScreenLocked(starting.app,
4119 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4120 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004121 }
4122 }
4123 }
4124
4125 return starting;
4126 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004127
Craig Mautner299f9602015-01-26 09:47:33 -08004128 void removeTask(TaskRecord task, String reason) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004129 mStackSupervisor.endLockTaskModeIfTaskEnding(task);
Craig Mautner04a0ea62014-01-13 12:51:26 -08004130 mWindowManager.removeTask(task.taskId);
4131 final ActivityRecord r = mResumedActivity;
4132 if (r != null && r.task == task) {
4133 mResumedActivity = null;
4134 }
4135
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004136 final int taskNdx = mTaskHistory.indexOf(task);
4137 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004138 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4139 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4140 if (!nextTask.isOverHomeStack()) {
4141 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4142 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004143 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004144 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004145 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004146
4147 if (task.mActivities.isEmpty()) {
4148 final boolean isVoiceSession = task.voiceSession != null;
4149 if (isVoiceSession) {
4150 try {
4151 task.voiceSession.taskFinished(task.intent, task.taskId);
4152 } catch (RemoteException e) {
4153 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004154 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004155 if (task.autoRemoveFromRecents() || isVoiceSession) {
4156 // Task creator asked to remove this when done, or this task was a voice
4157 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004158 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004159 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004160 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004161 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004162
4163 if (mTaskHistory.isEmpty()) {
4164 if (DEBUG_STACK) Slog.i(TAG, "removeTask: moving to back stack=" + this);
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004165 final boolean notHomeStack = !isHomeStack();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004166 if (isOnHomeDisplay()) {
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004167 mStackSupervisor.moveHomeStack(notHomeStack, reason + " leftTaskHistoryEmpty");
Craig Mautner04a0ea62014-01-13 12:51:26 -08004168 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004169 if (mStacks != null) {
4170 mStacks.remove(this);
4171 mStacks.add(0, this);
4172 }
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004173 if (notHomeStack) {
4174 mActivityContainer.onTaskListEmptyLocked();
4175 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004176 }
Wale Ogunwale0f95e3f2015-02-19 16:19:15 -08004177
4178 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004179 }
4180
Dianne Hackborn91097de2014-04-04 18:02:06 -07004181 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4182 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4183 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004184 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4185 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004186 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004187 return task;
4188 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004189
4190 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004191 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004192 }
4193
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004194 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004195 task.stack = this;
4196 if (toTop) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07004197 insertTaskAtTop(task);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004198 } else {
4199 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004200 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004201 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004202 if (!moving && task.voiceSession != null) {
4203 try {
4204 task.voiceSession.taskStarted(task.intent, task.taskId);
4205 } catch (RemoteException e) {
4206 }
4207 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004208 }
4209
4210 public int getStackId() {
4211 return mStackId;
4212 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004213
4214 @Override
4215 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004216 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4217 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004218 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004219
4220 boolean updateOverrideConfiguration(Configuration newConfig) {
4221 Configuration oldConfig = mOverrideConfig;
4222 mOverrideConfig = (newConfig == null) ? Configuration.EMPTY : newConfig;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004223 // We override the configuration only when the stack's dimensions are different from
4224 // the display. In this manner, we know that if the override configuration is empty,
4225 // the stack is necessarily full screen.
Todd Kennedyaab56db2015-01-30 09:39:53 -08004226 mFullscreen = Configuration.EMPTY.equals(mOverrideConfig);
Wale Ogunwale60454db2015-01-23 16:05:07 -08004227 return !mOverrideConfig.equals(oldConfig);
4228 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004229}