blob: b6d5d896b1dd8ba998e03922012bedcf90fd786f [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
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -070019import static android.app.ActivityManager.DOCKED_STACK_ID;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -070020import static android.app.ActivityManager.FIRST_STATIC_STACK_ID;
Wale Ogunwale61803ee2015-08-07 19:59:47 -070021import static android.app.ActivityManager.FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -070022import static android.app.ActivityManager.FULLSCREEN_WORKSPACE_STACK_ID;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -070023import static android.app.ActivityManager.HOME_STACK_ID;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -070024import static android.app.ActivityManager.LAST_STATIC_STACK_ID;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070025import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -070026
Wale Ogunwalee23149f2015-03-06 15:39:44 -080027import static com.android.server.am.ActivityManagerDebugConfig.*;
Craig Mautner0eea92c2013-05-16 13:35:39 -070028
Craig Mautner84984fa2014-06-19 11:19:20 -070029import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
30import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070031
Wale Ogunwale040b4702015-08-06 18:10:50 -070032import static com.android.server.am.ActivityStackSupervisor.MOVING;
33
Wale Ogunwale706ed792015-08-02 10:29:44 -070034import android.graphics.Rect;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070035import android.util.ArraySet;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -070036
Dianne Hackborn91097de2014-04-04 18:02:06 -070037import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080038import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070039import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070040import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080041import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080042import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080043import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080044import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070045import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070046
47import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070048import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070049import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070050import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080051import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070052import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080053import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070057import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070058import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080059import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080060import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070062import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080063import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070064import android.os.Handler;
65import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090066import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070068import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069import android.os.RemoteException;
70import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080071import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070072import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070073import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070074import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070075import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070076import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070077
Craig Mautnercae015f2013-02-08 14:31:27 -080078import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080079import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070080import java.lang.ref.WeakReference;
81import java.util.ArrayList;
82import java.util.Iterator;
83import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080084import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070085import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086
87/**
88 * State and management of a single stack of activities.
89 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070090final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080091
Wale Ogunwalee23149f2015-03-06 15:39:44 -080092 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070093 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
94 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080095 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070096 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070097 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070098 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070099 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700100 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700101 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
102 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700103 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700104 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700105 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
106 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
107 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
108 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
109 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700110
111 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800112
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700113 // Ticks during which we check progress while waiting for an app to launch.
114 static final int LAUNCH_TICK = 500;
115
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700116 // How long we wait until giving up on the last activity to pause. This
117 // is short because it directly impacts the responsiveness of starting the
118 // next activity.
119 static final int PAUSE_TIMEOUT = 500;
120
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700121 // How long we wait for the activity to tell us it has stopped before
122 // giving up. This is a good amount of time because we really need this
123 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700124 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700125
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700126 // How long we wait until giving up on an activity telling us it has
127 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700128 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800129
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700130 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800131 // disabled.
132 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800133
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700134 // How long between activity launches that we consider safe to not warn
135 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700136 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800137
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700138 // Set to false to disable the preview that is shown while a new activity
139 // is being started.
140 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800141
Craig Mautner5eda9b32013-07-02 11:58:16 -0700142 // How long to wait for all background Activities to redraw following a call to
143 // convertToTranslucent().
144 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
145
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700146 enum ActivityState {
147 INITIALIZING,
148 RESUMED,
149 PAUSING,
150 PAUSED,
151 STOPPING,
152 STOPPED,
153 FINISHING,
154 DESTROYING,
155 DESTROYED
156 }
157
158 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700159 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800160 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800161
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700162 /**
163 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800164 * running) activities. It contains #TaskRecord objects.
165 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800166 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800167
168 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800169 * Used for validating app tokens with window manager.
170 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800171 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800172
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700173 /**
174 * List of running activities, sorted by recent usage.
175 * The first entry in the list is the least recently used.
176 * It contains HistoryRecord objects.
177 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800178 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700179
180 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700181 * Animations that for the current transition have requested not to
182 * be considered for the transition animation.
183 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800184 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700185
186 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700187 * When we are in the process of pausing an activity, before starting the
188 * next one, this variable holds the activity that is currently being paused.
189 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800190 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700191
192 /**
193 * This is the last activity that we put into the paused state. This is
194 * used to determine if we need to do an activity transition while sleeping,
195 * when we normally hold the top activity paused.
196 */
197 ActivityRecord mLastPausedActivity = null;
198
199 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700200 * Activities that specify No History must be removed once the user navigates away from them.
201 * If the device goes to sleep with such an activity in the paused state then we save it here
202 * and finish it later if another activity replaces it on wakeup.
203 */
204 ActivityRecord mLastNoHistoryActivity = null;
205
206 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700207 * Current activity that is resumed, or null if there is none.
208 */
209 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800210
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700211 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700212 * This is the last activity that has been started. It is only used to
213 * identify when multiple activities are started at once so that the user
214 * can be warned they may not be in the activity they think they are.
215 */
216 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800217
Craig Mautner5eda9b32013-07-02 11:58:16 -0700218 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
219 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
220 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
221 // Activity in mTranslucentActivityWaiting is notified via
222 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
223 // background activity being drawn then the same call will be made with a true value.
224 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700225 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700226
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700227 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700228 * Set when we know we are going to be calling updateConfiguration()
229 * soon, so want to skip intermediate config checks.
230 */
231 boolean mConfigWillChange;
232
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700233 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800234 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700235 // Current bounds of the stack or null if fullscreen.
236 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800237
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700238 long mLaunchStartTime = 0;
239 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800240
Craig Mautner858d8a62013-04-23 17:08:34 -0700241 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700242
Craig Mautnerc00204b2013-03-05 15:02:14 -0800243 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800244 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800245 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
246 ArrayList<ActivityStack> mStacks;
247 /** The attached Display's unique identifier, or -1 if detached */
248 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800249
Craig Mautner27084302013-03-25 08:05:25 -0700250 /** Run all ActivityStacks through this */
251 final ActivityStackSupervisor mStackSupervisor;
252
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700253 private final LaunchingTaskPositioner mTaskPositioner;
254
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700255 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700256 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
257 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
258 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
259 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700260 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700261 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700262 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700263
264 static class ScheduleDestroyArgs {
265 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700266 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700267 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700268 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700269 mReason = reason;
270 }
271 }
272
Zoran Marcetaf958b322012-08-09 20:27:12 +0900273 final Handler mHandler;
274
275 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800276
Craig Mautnerc8143c62013-09-03 12:15:57 -0700277 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900278 super(looper);
279 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700280
Zoran Marcetaf958b322012-08-09 20:27:12 +0900281 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700282 public void handleMessage(Message msg) {
283 switch (msg.what) {
284 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800285 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700286 // We don't at this point know if the activity is fullscreen,
287 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800288 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700289 synchronized (mService) {
290 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700291 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700292 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700293 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800294 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700295 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700296 case LAUNCH_TICK_MSG: {
297 ActivityRecord r = (ActivityRecord)msg.obj;
298 synchronized (mService) {
299 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700300 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700301 }
302 }
303 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700304 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800305 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700306 // We don't at this point know if the activity is fullscreen,
307 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800308 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800309 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800310 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800311 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700312 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700313 case STOP_TIMEOUT_MSG: {
314 ActivityRecord r = (ActivityRecord)msg.obj;
315 // We don't at this point know if the activity is fullscreen,
316 // so we need to be conservative and assume it isn't.
317 Slog.w(TAG, "Activity stop timeout for " + r);
318 synchronized (mService) {
319 if (r.isInHistory()) {
320 activityStoppedLocked(r, null, null, null);
321 }
322 }
323 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700324 case DESTROY_ACTIVITIES_MSG: {
325 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
326 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700327 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700328 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700329 } break;
330 case TRANSLUCENT_TIMEOUT_MSG: {
331 synchronized (mService) {
332 notifyActivityDrawnLocked(null);
333 }
334 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700335 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700336 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700337 final ActivityRecord r = getVisibleBehindActivity();
338 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700339 if (r != null) {
340 mService.killAppAtUsersRequest(r.app, null);
341 }
342 }
343 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700344 }
345 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800346 }
347
Craig Mautner34b73df2014-01-12 21:11:08 -0800348 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800349 int count = 0;
350 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
351 count += mTaskHistory.get(taskNdx).mActivities.size();
352 }
353 return count;
354 }
355
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800356 int numTasks() {
357 return mTaskHistory.size();
358 }
359
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800360 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
361 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800362 mActivityContainer = activityContainer;
363 mStackSupervisor = activityContainer.getOuter();
364 mService = mStackSupervisor.mService;
365 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
366 mWindowManager = mService.mWindowManager;
367 mStackId = activityContainer.mStackId;
368 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800369 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700370 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
371 ? new LaunchingTaskPositioner() : null;
372 }
373
374 void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
375 mDisplayId = activityDisplay.mDisplayId;
376 mStacks = activityDisplay.mStacks;
377 mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
378 mFullscreen = mBounds == null;
379 if (mTaskPositioner != null) {
380 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
381 mTaskPositioner.configure(mBounds);
382 }
383 }
384
385 void detachDisplay() {
386 mDisplayId = Display.INVALID_DISPLAY;
387 mStacks = null;
388 if (mTaskPositioner != null) {
389 mTaskPositioner.reset();
390 }
391 mWindowManager.detachStack(mStackId);
392 }
393
394 void setBounds(Rect bounds) {
395 mBounds = mFullscreen ? null : new Rect(bounds);
Filip Gruszczynski9ac01a72015-09-04 11:12:17 -0700396 if (mTaskPositioner != null) {
397 mTaskPositioner.configure(bounds);
398 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700399 }
Craig Mautner5962b122012-10-05 14:45:52 -0700400
Amith Yamasani734983f2014-03-04 16:48:05 -0800401 boolean okToShowLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700402 return mStackSupervisor.okToShowLocked(r);
Craig Mautner5962b122012-10-05 14:45:52 -0700403 }
404
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700405 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800406 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700407 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
408 if (r != null) {
409 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800410 }
411 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700412 return null;
413 }
414
415 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800416 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
417 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800418 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800419 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
420 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800421 if (!r.finishing && !r.delayedResume && r != notTop && 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
429 /**
430 * This is a simplified version of topRunningActivityLocked that provides a number of
431 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800432 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700433 * @param token If non-null, any history records matching this token will be skipped.
434 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800435 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700436 * @return Returns the HistoryRecord of the next activity on the stack.
437 */
438 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800439 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
440 TaskRecord task = mTaskHistory.get(taskNdx);
441 if (task.taskId == taskId) {
442 continue;
443 }
444 ArrayList<ActivityRecord> activities = task.mActivities;
445 for (int i = activities.size() - 1; i >= 0; --i) {
446 final ActivityRecord r = activities.get(i);
447 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800448 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800449 return r;
450 }
451 }
452 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700453 return null;
454 }
455
Craig Mautner8849a5e2013-04-02 16:41:03 -0700456 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700457 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
458 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700459 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
460 final ActivityRecord r = activities.get(activityNdx);
461 if (!r.finishing) {
462 return r;
463 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700464 }
465 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700466 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700467 }
468
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700469 final TaskRecord topTask() {
470 final int size = mTaskHistory.size();
471 if (size > 0) {
472 return mTaskHistory.get(size - 1);
473 }
474 return null;
475 }
476
Craig Mautnerd2328952013-03-05 12:46:26 -0800477 TaskRecord taskForIdLocked(int id) {
478 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
479 final TaskRecord task = mTaskHistory.get(taskNdx);
480 if (task.taskId == id) {
481 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800482 }
483 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700484 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700485 }
486
Craig Mautnerd2328952013-03-05 12:46:26 -0800487 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700488 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800489 return isInStackLocked(r);
490 }
491
492 ActivityRecord isInStackLocked(ActivityRecord r) {
493 if (r == null) {
494 return null;
495 }
496 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700497 if (task != null && task.stack != null
498 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800499 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800500 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800501 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800502 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800503 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800504 }
505
Craig Mautner2420ead2013-04-01 17:13:20 -0700506 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700507 final boolean hadit = mLRUActivities.remove(r);
508 mLRUActivities.add(r);
509 return hadit;
510 }
511
Craig Mautnerde4ef022013-04-07 19:01:33 -0700512 final boolean isHomeStack() {
513 return mStackId == HOME_STACK_ID;
514 }
515
Craig Mautnere0a38842013-12-16 16:14:02 -0800516 final boolean isOnHomeDisplay() {
517 return isAttached() &&
518 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
519 }
520
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700521 void moveToFront(String reason) {
522 moveToFront(reason, null);
523 }
524
525 /**
526 * @param reason The reason for moving the stack to the front.
527 * @param task If non-null, the task will be moved to the top of the stack.
528 * */
529 void moveToFront(String reason, TaskRecord task) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800530 if (isAttached()) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700531 final ActivityStack lastFocusStack = mStacks.get(mStacks.size() - 1);
532 // Need to move this stack to the front before calling
533 // {@link ActivityStackSupervisor#setFocusStack} below.
534 mStacks.remove(this);
535 mStacks.add(this);
536
537 // TODO(multi-display): Needs to also work if focus is moving to the non-home display.
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800538 if (isOnHomeDisplay()) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700539 mStackSupervisor.setFocusStack(reason, lastFocusStack);
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800540 }
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700541 if (task != null) {
542 insertTaskAtTop(task, null);
543 } else {
544 task = topTask();
545 }
Craig Mautner6b904ef2014-12-17 15:45:03 -0800546 if (task != null) {
547 mWindowManager.moveTaskToTop(task.taskId);
548 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800549 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800550 }
551
552 final boolean isAttached() {
553 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800554 }
555
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700556 /**
557 * Returns the top activity in any existing task matching the given
558 * Intent. Returns null if no such task is found.
559 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700560 ActivityRecord findTaskLocked(ActivityRecord target) {
561 Intent intent = target.intent;
562 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700563 ComponentName cls = intent.getComponent();
564 if (info.targetActivity != null) {
565 cls = new ComponentName(info.packageName, info.targetActivity);
566 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700567 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700568 boolean isDocument = intent != null & intent.isDocument();
569 // If documentData is non-null then it must match the existing task data.
570 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800571
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700572 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800573 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
574 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700575 if (task.voiceSession != null) {
576 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700577 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700578 continue;
579 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700580 if (task.userId != userId) {
581 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700582 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700583 continue;
584 }
Craig Mautner000f0022013-02-26 15:04:29 -0800585 final ActivityRecord r = task.getTopActivity();
586 if (r == null || r.finishing || r.userId != userId ||
587 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700588 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800589 continue;
590 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700591 if (r.mActivityType != target.mActivityType) {
592 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
593 continue;
594 }
Craig Mautner000f0022013-02-26 15:04:29 -0800595
Craig Mautnerd00f4742014-03-12 14:17:26 -0700596 final Intent taskIntent = task.intent;
597 final Intent affinityIntent = task.affinityIntent;
598 final boolean taskIsDocument;
599 final Uri taskDocumentData;
600 if (taskIntent != null && taskIntent.isDocument()) {
601 taskIsDocument = true;
602 taskDocumentData = taskIntent.getData();
603 } else if (affinityIntent != null && affinityIntent.isDocument()) {
604 taskIsDocument = true;
605 taskDocumentData = affinityIntent.getData();
606 } else {
607 taskIsDocument = false;
608 taskDocumentData = null;
609 }
610
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700611 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700612 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700613 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700614 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700615 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
616 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700617 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700618 return r;
619 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700620 } else if (taskIntent != null && taskIntent.getComponent() != null &&
621 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700622 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700623 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800624 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700625 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
626 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800627 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700628 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
629 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700630 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700631 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800632 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700633 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
634 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800635 return r;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700636 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700637 }
638
639 return null;
640 }
641
642 /**
643 * Returns the first activity (starting from the top of the stack) that
644 * is the same as the given activity. Returns null if no such activity
645 * is found.
646 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700647 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700648 ComponentName cls = intent.getComponent();
649 if (info.targetActivity != null) {
650 cls = new ComponentName(info.packageName, info.targetActivity);
651 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700652 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700653
Craig Mautner000f0022013-02-26 15:04:29 -0800654 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700655 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700656 final boolean notCurrentUserTask =
657 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700658 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700659
Craig Mautner000f0022013-02-26 15:04:29 -0800660 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
661 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700662 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700663 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700664 }
Craig Mautner000f0022013-02-26 15:04:29 -0800665 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700666 return r;
667 }
668 }
669 }
670
671 return null;
672 }
673
Amith Yamasani742a6712011-05-04 14:49:28 -0700674 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700675 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700676 */
Craig Mautner93529a42013-10-04 15:03:13 -0700677 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800678 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700679 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800680 }
681 mCurrentUser = userId;
682
683 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800684 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800685 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700686 final TaskRecord task = mTaskHistory.get(i);
687
688 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
689 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700690 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700691 || task.topRunningActivityLocked(null) != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700692 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700693 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800694 mTaskHistory.remove(i);
695 mTaskHistory.add(task);
696 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800697 // Use same value for i.
698 } else {
699 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800700 }
701 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700702 if (VALIDATE_TOKENS) {
703 validateAppTokensLocked();
704 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700705 }
706
Craig Mautner2420ead2013-04-01 17:13:20 -0700707 void minimalResumeActivityLocked(ActivityRecord r) {
708 r.state = ActivityState.RESUMED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700709 if (DEBUG_STATES) Slog.v(TAG_STATES,
710 "Moving to RESUMED: " + r + " (starting new instance)");
Craig Mautner2420ead2013-04-01 17:13:20 -0700711 r.stopped = false;
712 mResumedActivity = r;
713 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800714 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700715 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700716 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700717 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700718 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
719 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700720 }
721
Chong Zhang45c25ce2015-08-10 22:18:26 -0700722 private void addRecentActivityLocked(ActivityRecord r) {
723 if (r != null) {
724 mRecentTasks.addLocked(r.task);
725 r.task.touchActiveTime();
726 }
727 }
728
Narayan Kamath7829c812015-06-08 17:39:43 +0100729 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700730 if (mFullyDrawnStartTime != 0) {
731 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
732 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100733 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700734 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
735 }
736
737 private void stopFullyDrawnTraceIfNeeded() {
738 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
739 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
740 mFullyDrawnStartTime = 0;
741 }
742 }
743
Craig Mautnere79d42682013-04-01 19:01:53 -0700744 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700745 if (r.displayStartTime == 0) {
746 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
747 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100748 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700749 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700750 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700751 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100752 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700753 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700754 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700755 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800756
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700757 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700758 // Make sure that there is no activity waiting for this to launch.
759 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
760 r.displayStartTime = r.fullyDrawnStartTime = 0;
761 } else {
762 mStackSupervisor.removeTimeoutsForActivityLocked(r);
763 mStackSupervisor.scheduleIdleTimeoutLocked(r);
764 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700765 }
766
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800767 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800768 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800769 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
770 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
771 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
772 activities.get(activityNdx).setSleeping(false);
773 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800774 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800775 if (mPausingActivity != null) {
776 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
777 activityPausedLocked(mPausingActivity.appToken, true);
778 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800779 }
780
Craig Mautner0eea92c2013-05-16 13:35:39 -0700781 /**
782 * @return true if something must be done before going to sleep.
783 */
784 boolean checkReadyForSleepLocked() {
785 if (mResumedActivity != null) {
786 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700787 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
788 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
789 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700790 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700791 return true;
792 }
793 if (mPausingActivity != null) {
794 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700795 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700796 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800797 }
798
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700799 if (hasVisibleBehindActivity()) {
800 // Stop visible behind activity before going to sleep.
801 final ActivityRecord r = mActivityContainer.mActivityDisplay.mVisibleBehindActivity;
802 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700803 if (DEBUG_STATES) Slog.v(TAG_STATES,
804 "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700805 return true;
806 }
807
Craig Mautner0eea92c2013-05-16 13:35:39 -0700808 return false;
809 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800810
Craig Mautner0eea92c2013-05-16 13:35:39 -0700811 void goToSleep() {
812 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800813
Craig Mautner0eea92c2013-05-16 13:35:39 -0700814 // Make sure any stopped but visible activities are now sleeping.
815 // This ensures that the activity's onStop() is called.
816 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
817 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
818 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
819 final ActivityRecord r = activities.get(activityNdx);
820 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
821 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800822 }
823 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800824 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700825 }
Craig Mautner59c00972012-07-30 12:10:24 -0700826
Dianne Hackbornd2835932010-12-13 16:28:46 -0800827 public final Bitmap screenshotActivities(ActivityRecord who) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700828 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800829 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700830 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800831 return null;
832 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800833
Winson Chung083baf92014-07-11 10:32:42 -0700834 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700835 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800836 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700837 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700838 return null;
839 }
840
Winson Chung48a10a52014-08-27 14:36:51 -0700841 int w = mService.mThumbnailWidth;
842 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800843 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700844 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800845 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Dianne Hackborn27eac1d2015-03-16 17:15:53 -0700846 w, h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800847 }
Winson Chung376543b2014-05-21 17:43:28 -0700848 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800849 return null;
850 }
851
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700852 /**
853 * Start pausing the currently resumed activity. It is an error to call this if there
854 * is already an activity being paused or there is no resumed activity.
855 *
856 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
857 * @param uiSleeping True if this is happening with the user interface going to sleep (the
858 * screen turning off).
859 * @param resuming True if this is being called as part of resuming the top activity, so
860 * we shouldn't try to instigate a resume here.
861 * @param dontWait True if the caller does not want to wait for the pause to complete. If
862 * set to true, we will immediately complete the pause here before returning.
863 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
864 * it to tell us when it is done.
865 */
866 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
867 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800868 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800869 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
870 + " state=" + mPausingActivity.state);
871 if (!mService.isSleeping()) {
872 // Avoid recursion among check for sleep and complete pause during sleeping.
873 // Because activity will be paused immediately after resume, just let pause
874 // be completed by the order of activity paused from clients.
875 completePauseLocked(false);
876 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800877 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700878 ActivityRecord prev = mResumedActivity;
879 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700880 if (!resuming) {
881 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
882 mStackSupervisor.resumeTopActivitiesLocked();
883 }
884 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700885 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800886
887 if (mActivityContainer.mParentActivity == null) {
888 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700889 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800890 }
891
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700892 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700893 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700894 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800895 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700896 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700897 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
898 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700899 prev.state = ActivityState.PAUSING;
900 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700901 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700902 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Skuhne17690ff2015-08-27 09:47:20 -0700903 // In freeform mode we only update the thumbnail when there is no thumbnail yet since every
904 // focus change will request a thumbnail to be taken.
905 // Note furthermore that since windows can change their content in freeform mode all the
906 // time a thumbnail is possibly constantly outdated.
907 if (mService.mHasRecents &&
908 (next == null || next.noDisplay || next.task != prev.task || uiSleeping) &&
909 (!prev.task.hasThumbnail() ||
910 prev.task.stack.mStackId != FREEFORM_WORKSPACE_STACK_ID)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800911 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700912 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700913 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700914
915 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800916
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700917 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700918 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700919 try {
920 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700921 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700922 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700923 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800924 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700925 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700926 } catch (Exception e) {
927 // Ignore exception, if process died other code will cleanup.
928 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800929 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700930 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700931 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700932 }
933 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800934 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700935 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700936 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700937 }
938
939 // If we are not going to sleep, we want to ensure the device is
940 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700941 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700942 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700943 }
944
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800945 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700946 // Have the window manager pause its key dispatching until the new
947 // activity has started. If we're pausing the activity just because
948 // the screen is being turned off and the UI is sleeping, don't interrupt
949 // key dispatch; the same activity will pick it up again on wakeup.
950 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800951 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700952 } else if (DEBUG_PAUSE) {
953 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700954 }
955
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700956 if (dontWait) {
957 // If the caller said they don't want to wait for the pause, then complete
958 // the pause now.
959 completePauseLocked(false);
960 return false;
961
962 } else {
963 // Schedule a pause timeout in case the app doesn't respond.
964 // We don't give it much time because this directly impacts the
965 // responsiveness seen by the user.
966 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
967 msg.obj = prev;
968 prev.pauseTime = SystemClock.uptimeMillis();
969 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700970 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700971 return true;
972 }
973
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700974 } else {
975 // This activity failed to schedule the
976 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700977 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700978 if (!resuming) {
979 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
980 }
981 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700982 }
983 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700984
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700985 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700986 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
987 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700988
Craig Mautnerd2328952013-03-05 12:46:26 -0800989 final ActivityRecord r = isInStackLocked(token);
990 if (r != null) {
991 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
992 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700993 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -0800994 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700995 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800996 } else {
997 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
998 r.userId, System.identityHashCode(r), r.shortComponentName,
999 mPausingActivity != null
1000 ? mPausingActivity.shortComponentName : "(none)");
louis_chang047dfd42015-04-08 16:35:55 +08001001 if (r.finishing && r.state == ActivityState.PAUSING) {
1002 if (DEBUG_PAUSE) Slog.v(TAG,
1003 "Executing finish of failed to pause activity: " + r);
1004 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1005 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001006 }
1007 }
1008 }
1009
Craig Mautnera0026042014-04-23 11:45:37 -07001010 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1011 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07001012 if (r.state != ActivityState.STOPPING) {
1013 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1014 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1015 return;
1016 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001017 if (persistentState != null) {
1018 r.persistentState = persistentState;
1019 mService.notifyTaskPersisterLocked(r.task, false);
1020 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001021 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001022 if (icicle != null) {
1023 // If icicle is null, this is happening due to a timeout, so we
1024 // haven't really saved the state.
1025 r.icicle = icicle;
1026 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -08001027 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -08001028 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001029 }
1030 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001031 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001032 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1033 r.stopped = true;
1034 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -07001035 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
1036 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001037 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001038 if (r.finishing) {
1039 r.clearOptionsLocked();
1040 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001041 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001042 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -07001043 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001044 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001045 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001046 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001047 }
1048 }
1049 }
1050
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001051 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001052 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001053 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001054
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001055 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001056 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001057 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001058 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001059 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001060 } else if (prev.app != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001061 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -08001062 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001063 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1064 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001065 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001066 if (prev.configDestroy) {
1067 // The previous is being paused because the configuration
1068 // is changing, which means it is actually stopping...
1069 // To juggle the fact that we are also starting a new
1070 // instance right now, we need to first completely stop
1071 // the current instance before starting the new one.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001072 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001073 destroyActivityLocked(prev, true, "pause-config");
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001074 } else if (!hasVisibleBehindActivity() || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001075 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001076 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001077 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -07001078 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
1079 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001080 // If we already have a few activities waiting to stop,
1081 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07001082 // them out. Or if r is the last of activity of the last task the stack
1083 // will be empty and must be cleared immediately.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001084 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -07001085 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001086 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001087 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001088 }
1089 }
1090 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001091 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001092 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001093 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001094 // It is possible the activity was freezing the screen before it was paused.
1095 // In that case go ahead and remove the freeze this activity has on the screen
1096 // since it is no longer visible.
1097 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001098 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001099 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001100
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001101 if (resumeNext) {
1102 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1103 if (!mService.isSleepingOrShuttingDown()) {
1104 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1105 } else {
1106 mStackSupervisor.checkReadyForSleepLocked();
1107 ActivityRecord top = topStack.topRunningActivityLocked(null);
1108 if (top == null || (prev != null && top != prev)) {
1109 // If there are no more activities available to run,
1110 // do resume anyway to start something. Also if the top
1111 // activity on the stack is not the just paused activity,
1112 // we need to go ahead and resume it to ensure we complete
1113 // an in-flight app switch.
1114 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1115 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001116 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001117 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001118
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001119 if (prev != null) {
1120 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001121
Craig Mautner525f3d92013-05-07 14:01:50 -07001122 if (prev.app != null && prev.cpuTimeAtResume > 0
1123 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001124 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1125 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001126 if (diff > 0) {
1127 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1128 synchronized (bsi) {
1129 BatteryStatsImpl.Uid.Proc ps =
1130 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001131 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001132 if (ps != null) {
1133 ps.addForegroundTimeLocked(diff);
1134 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001135 }
1136 }
1137 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001138 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001139 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001140
1141 // Notfiy when the task stack has changed
1142 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001143 }
1144
1145 /**
1146 * Once we know that we have asked an application to put an activity in
1147 * the resumed state (either by launching it or explicitly telling it),
1148 * this function updates the rest of our state to match that fact.
1149 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001150 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001151 next.idle = false;
1152 next.results = null;
1153 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001154
1155 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1156 ProcessRecord app = next.task.mActivities.get(0).app;
1157 if (app != null && app != mService.mHomeProcess) {
1158 mService.mHomeProcess = app;
1159 }
1160 }
1161
Craig Mautner07566322013-09-26 16:42:55 -07001162 if (next.nowVisible) {
1163 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001164 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001165 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001166
1167 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001168 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001169
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001170 mStackSupervisor.reportResumedActivityLocked(next);
1171
1172 next.resumeKeyDispatchingLocked();
1173 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001174
1175 // Mark the point when the activity is resuming
1176 // TODO: To be more accurate, the mark should be before the onCreate,
1177 // not after the onResume. But for subsequent starts, onResume is fine.
1178 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001179 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001180 } else {
1181 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1182 }
Winson Chung376543b2014-05-21 17:43:28 -07001183
George Mount6ba042b2014-07-28 11:12:28 -07001184 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001185
1186 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1187 // When resuming an activity, require it to call requestVisibleBehind() again.
1188 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1189 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001190 }
1191
Craig Mautner2568c3a2015-03-26 14:22:34 -07001192 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001193 r.visible = visible;
1194 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001195 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001196 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001197 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001198 container.setVisible(visible);
1199 }
1200 }
1201
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001202 // Find the first visible activity above the passed activity and if it is translucent return it
1203 // otherwise return null;
1204 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1205 TaskRecord task = r.task;
1206 if (task == null) {
1207 return null;
1208 }
1209
1210 ActivityStack stack = task.stack;
1211 if (stack == null) {
1212 return null;
1213 }
1214
1215 int stackNdx = mStacks.indexOf(stack);
1216
1217 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1218 int taskNdx = tasks.indexOf(task);
1219
1220 ArrayList<ActivityRecord> activities = task.mActivities;
1221 int activityNdx = activities.indexOf(r) + 1;
1222
1223 final int numStacks = mStacks.size();
1224 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001225 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001226 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001227 final int numTasks = tasks.size();
1228 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001229 final TaskRecord currentTask = tasks.get(taskNdx);
1230 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001231 final int numActivities = activities.size();
1232 while (activityNdx < numActivities) {
1233 final ActivityRecord activity = activities.get(activityNdx);
1234 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001235 return historyStack.mFullscreen
1236 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001237 }
1238 ++activityNdx;
1239 }
1240 activityNdx = 0;
1241 ++taskNdx;
1242 }
1243 taskNdx = 0;
1244 ++stackNdx;
1245 }
1246
1247 return null;
1248 }
1249
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001250 private ActivityStack getNextVisibleStackLocked() {
1251 ArrayList<ActivityStack> stacks = mStacks;
1252 final ActivityRecord parent = mActivityContainer.mParentActivity;
1253 if (parent != null) {
1254 stacks = parent.task.stack.mStacks;
1255 }
1256 if (stacks != null) {
1257 for (int i = stacks.size() - 1; i >= 0; --i) {
1258 ActivityStack stack = stacks.get(i);
1259 if (stack != this && stack.isStackVisibleLocked()) {
1260 return stack;
1261 }
1262 }
1263 }
1264 return null;
1265 }
1266
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001267 /** Returns true if the stack contains a fullscreen task. */
1268 private boolean hasFullscreenTask() {
1269 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1270 final TaskRecord task = mTaskHistory.get(i);
1271 if (task.mFullscreen) {
1272 return true;
1273 }
1274 }
1275 return false;
1276 }
1277
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001278 private boolean hasTranslucentActivity(ActivityStack stack) {
1279 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1280 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
1281 final TaskRecord task = tasks.get(taskNdx);
1282 final ArrayList<ActivityRecord> activities = task.mActivities;
1283 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1284 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001285
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001286 // Conditions for an activity to obscure the stack we're
1287 // examining:
1288 // 1. Not Finishing AND Visible AND:
1289 // 2. Either:
1290 // - Full Screen Activity OR
1291 // - On top of Home and our stack is NOT home
1292 if (!r.finishing && r.visible && (r.fullscreen ||
1293 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
1294 return false;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001295 }
1296 }
1297 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001298 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001299 }
1300
1301 /** Returns true if the stack is considered visible. */
Todd Kennedyaab56db2015-01-30 09:39:53 -08001302 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001303 if (!isAttached()) {
1304 return false;
1305 }
1306
1307 if (mStackSupervisor.isFrontStack(this)) {
1308 return true;
1309 }
1310
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001311 final int stackIndex = mStacks.indexOf(this);
1312
1313 if (stackIndex == mStacks.size() - 1) {
1314 Slog.wtf(TAG,
1315 "Stack=" + this + " isn't front stack but is at the top of the stack list");
1316 return false;
1317 }
1318
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001319 final ActivityStack focusedStack = mStackSupervisor.getFocusedStack();
1320 final int focusedStackId = focusedStack.mStackId;
1321
1322 if (mStackId == DOCKED_STACK_ID) {
1323 // Docked stack is always visible, except in the case where the home activity
1324 // is the top running activity in the focused home stack.
1325 if (focusedStackId != HOME_STACK_ID) {
1326 return true;
1327 }
1328 ActivityRecord topHomeActivity = focusedStack.topRunningActivityLocked(null);
1329 return topHomeActivity == null || !topHomeActivity.isHomeActivity();
1330 }
1331
1332 if (focusedStackId == DOCKED_STACK_ID
1333 && stackIndex == (mStacks.indexOf(focusedStack) - 1)) {
1334 // Stacks directly behind the docked stack are always visible.
1335 return true;
1336 }
1337
1338 if (mStackId == HOME_STACK_ID && focusedStackId == FULLSCREEN_WORKSPACE_STACK_ID) {
1339 // Home stack is always visible behind the fullscreen stack with a translucent activity.
1340 // This is done so that the home stack can act as a background to the translucent
1341 // activity.
1342 return hasTranslucentActivity(focusedStack);
1343 }
1344
1345 if (mStackId >= FIRST_STATIC_STACK_ID && mStackId <= LAST_STATIC_STACK_ID) {
1346 // Visibility of any static stack should have been determined by the conditions above.
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001347 return false;
1348 }
1349
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001350 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001351 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001352
1353 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1354 continue;
1355 }
1356
1357 if (stack.mStackId == FREEFORM_WORKSPACE_STACK_ID
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001358 || stack.mStackId == HOME_STACK_ID
1359 || stack.mStackId == FULLSCREEN_WORKSPACE_STACK_ID) {
1360 // These stacks can't have any dynamic stacks visible behind them.
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001361 return false;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001362 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001363
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001364 if (!hasTranslucentActivity(stack)) {
1365 return false;
Jose Lima7ba71252014-04-30 12:59:27 -07001366 }
1367 }
1368
1369 return true;
1370 }
1371
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001372 /**
1373 * Make sure that all activities that need to be visible (that is, they
1374 * currently can be seen by the user) actually are.
1375 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001376 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1377 ActivityRecord top = topRunningActivityLocked(null);
1378 if (top == null) {
1379 return;
1380 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001381 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1382 "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001383 + " configChanges=0x" + Integer.toHexString(configChanges));
1384
Craig Mautner5eda9b32013-07-02 11:58:16 -07001385 if (mTranslucentActivityWaiting != top) {
1386 mUndrawnActivitiesBelowTopTranslucent.clear();
1387 if (mTranslucentActivityWaiting != null) {
1388 // Call the callback with a timeout indication.
1389 notifyActivityDrawnLocked(null);
1390 mTranslucentActivityWaiting = null;
1391 }
1392 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1393 }
1394
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001395 // If the top activity is not fullscreen, then we need to
1396 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001397 boolean aboveTop = true;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001398 final boolean stackInvisible = !isStackVisibleLocked();
1399 boolean behindFullscreenActivity = stackInvisible;
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001400 boolean noStackActivityResumed = (isInStackLocked(starting) == null);
Jose Lima7ba71252014-04-30 12:59:27 -07001401
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001402 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001403 final TaskRecord task = mTaskHistory.get(taskNdx);
1404 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001405
Craig Mautnerd44711d2013-02-23 11:24:36 -08001406 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1407 final ActivityRecord r = activities.get(activityNdx);
1408 if (r.finishing) {
1409 continue;
1410 }
1411 if (aboveTop && r != top) {
1412 continue;
1413 }
1414 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001415 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1416 // but must be drawn initially for the animation as though they were visible.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001417 if (!behindFullscreenActivity || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001418 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1419 "Make visible? " + r + " finishing=" + r.finishing
Craig Mautnerd44711d2013-02-23 11:24:36 -08001420 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001421
Craig Mautnerd44711d2013-02-23 11:24:36 -08001422 // First: if this is not the current activity being started, make
1423 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001424 if (r != starting) {
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07001425 ensureActivityConfigurationLocked(r, 0, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001426 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001427
1428 if (r.app == null || r.app.thread == null) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001429 // This activity needs to be visible, but isn't even running...
1430 // get it started and resume if no other stack in this stack is resumed.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001431 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1432 "Start and freeze screen for " + r);
Craig Mautnerbb742462014-07-07 15:28:55 -07001433 if (r != starting) {
1434 r.startFreezingScreenLocked(r.app, configChanges);
1435 }
1436 if (!r.visible || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001437 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1438 "Starting and making visible: " + r);
Craig Mautner2568c3a2015-03-26 14:22:34 -07001439 setVisible(r, true);
Craig Mautnerbb742462014-07-07 15:28:55 -07001440 }
1441 if (r != starting) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001442 mStackSupervisor.startSpecificActivityLocked(
1443 r, noStackActivityResumed, false);
riddle_hsu36ee73d2015-06-05 16:38:38 +08001444 if (activityNdx >= activities.size()) {
1445 // Record may be removed if its process needs to restart.
1446 activityNdx = activities.size() - 1;
1447 } else {
1448 noStackActivityResumed = false;
1449 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001450 }
1451
1452 } else if (r.visible) {
1453 // If this activity is already visible, then there is nothing
1454 // else to do here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001455 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1456 "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001457 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001458 try {
George Mount6ba042b2014-07-28 11:12:28 -07001459 if (r.returningOptions != null) {
1460 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1461 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001462 }
1463 } catch(RemoteException e) {
1464 }
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001465 if (r.state == ActivityState.RESUMED) {
1466 noStackActivityResumed = false;
1467 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001468 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001469 // This activity is not currently visible, but is running.
1470 // Tell it to become visible.
1471 r.visible = true;
1472 if (r.state != ActivityState.RESUMED && r != starting) {
1473 // If this activity is paused, tell it
1474 // to now show its window.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001475 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1476 "Making visible and scheduling visibility: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001477 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001478 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001479 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001480 mUndrawnActivitiesBelowTopTranslucent.add(r);
1481 }
Craig Mautner2568c3a2015-03-26 14:22:34 -07001482 setVisible(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001483 r.sleeping = false;
1484 r.app.pendingUiClean = true;
1485 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1486 r.stopFreezingScreenLocked(false);
1487 } catch (Exception e) {
1488 // Just skip on any failure; we'll make it
1489 // visible when it next restarts.
1490 Slog.w(TAG, "Exception thrown making visibile: "
1491 + r.intent.getComponent(), e);
1492 }
1493 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001494 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001495
Craig Mautnerd44711d2013-02-23 11:24:36 -08001496 // Aggregate current change flags.
1497 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001498
Craig Mautnerd44711d2013-02-23 11:24:36 -08001499 if (r.fullscreen) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001500 // At this point, nothing else needs to be shown in this task.
1501 behindFullscreenActivity = true;
1502 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001503 + " stackInvisible=" + stackInvisible
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001504 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautner84984fa2014-06-19 11:19:20 -07001505 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001506 behindFullscreenActivity = true;
1507 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001508 + " stackInvisible=" + stackInvisible
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001509 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001510 }
1511 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001512 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001513 "Make invisible? " + r + " finishing=" + r.finishing
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001514 + " state=" + r.state + " stackInvisible=" + stackInvisible
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001515 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001516 // Now for any activities that aren't visible to the user, make
1517 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001518 if (r.visible) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001519 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001520 try {
Craig Mautner2568c3a2015-03-26 14:22:34 -07001521 setVisible(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001522 switch (r.state) {
1523 case STOPPING:
1524 case STOPPED:
1525 if (r.app != null && r.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001526 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1527 "Scheduling invisibility: " + r);
Craig Mautner4addfc52013-06-25 08:05:45 -07001528 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1529 }
1530 break;
1531
1532 case INITIALIZING:
1533 case RESUMED:
1534 case PAUSING:
1535 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001536 // This case created for transitioning activities from
1537 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001538 if (getVisibleBehindActivity() == r) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001539 releaseBackgroundResources(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001540 } else {
1541 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1542 mStackSupervisor.mStoppingActivities.add(r);
1543 }
1544 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001545 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001546 break;
1547
1548 default:
1549 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001550 }
1551 } catch (Exception e) {
1552 // Just skip on any failure; we'll make it
1553 // visible when it next restarts.
1554 Slog.w(TAG, "Exception thrown making hidden: "
1555 + r.intent.getComponent(), e);
1556 }
1557 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001558 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001559 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001560 }
1561 }
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001562 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1563 // The visibility of tasks and the activities they contain in freeform stack are
1564 // determined individually unlike other stacks where the visibility or fullscreen
1565 // status of an activity in a previous task affects other.
1566 behindFullscreenActivity = stackInvisible;
1567 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001568 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001569
1570 if (mTranslucentActivityWaiting != null &&
1571 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1572 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1573 notifyActivityDrawnLocked(null);
1574 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001575 }
Craig Mautner58547802013-03-05 08:23:53 -08001576
Todd Kennedyaab56db2015-01-30 09:39:53 -08001577 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001578 mTranslucentActivityWaiting = r;
1579 mUndrawnActivitiesBelowTopTranslucent.clear();
1580 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1581 }
1582
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001583 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1584 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1585 final TaskRecord task = mTaskHistory.get(taskNdx);
1586 final ArrayList<ActivityRecord> activities = task.mActivities;
1587 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1588 final ActivityRecord r = activities.get(activityNdx);
1589 if ( r.appTimeTracker != except) {
1590 r.appTimeTracker = null;
1591 }
1592 }
1593 }
1594 }
1595
Craig Mautner5eda9b32013-07-02 11:58:16 -07001596 /**
1597 * Called as activities below the top translucent activity are redrawn. When the last one is
1598 * redrawn notify the top activity by calling
1599 * {@link Activity#onTranslucentConversionComplete}.
1600 *
1601 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1602 * occurred and the activity will be notified immediately.
1603 */
1604 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001605 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001606 if ((r == null)
1607 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1608 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1609 // The last undrawn activity below the top has just been drawn. If there is an
1610 // opaque activity at the top, notify it that it can become translucent safely now.
1611 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1612 mTranslucentActivityWaiting = null;
1613 mUndrawnActivitiesBelowTopTranslucent.clear();
1614 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1615
Craig Mautner71dd1b62014-02-18 15:48:52 -08001616 if (waitingActivity != null) {
1617 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1618 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1619 try {
1620 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1621 waitingActivity.appToken, r != null);
1622 } catch (RemoteException e) {
1623 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001624 }
1625 }
1626 }
1627 }
1628
Craig Mautnera61bc652013-10-28 15:43:18 -07001629 /** If any activities below the top running one are in the INITIALIZING state and they have a
1630 * starting window displayed then remove that starting window. It is possible that the activity
1631 * in this state will never resumed in which case that starting window will be orphaned. */
1632 void cancelInitializingActivities() {
1633 final ActivityRecord topActivity = topRunningActivityLocked(null);
1634 boolean aboveTop = true;
1635 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1636 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1637 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1638 final ActivityRecord r = activities.get(activityNdx);
1639 if (aboveTop) {
1640 if (r == topActivity) {
1641 aboveTop = false;
1642 }
1643 continue;
1644 }
1645
1646 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001647 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1648 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001649 r.mStartingWindowShown = false;
1650 mWindowManager.removeAppStartingWindow(r.appToken);
1651 }
1652 }
1653 }
1654 }
1655
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001656 /**
1657 * Ensure that the top activity in the stack is resumed.
1658 *
1659 * @param prev The previously resumed activity, for when in the process
1660 * of pausing; can be null to call from elsewhere.
1661 *
1662 * @return Returns true if something is being resumed, or false if
1663 * nothing happened.
1664 */
1665 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001666 return resumeTopActivityLocked(prev, null);
1667 }
1668
1669 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001670 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001671 // Don't even start recursing.
1672 return false;
1673 }
1674
1675 boolean result = false;
1676 try {
1677 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001678 mStackSupervisor.inResumeTopActivity = true;
1679 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1680 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001681 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001682 }
Craig Mautner544efa72014-09-04 16:41:20 -07001683 result = resumeTopActivityInnerLocked(prev, options);
1684 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001685 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001686 }
1687 return result;
1688 }
1689
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001690 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001691 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001692
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001693 if (!mService.mBooting && !mService.mBooted) {
1694 // Not ready yet!
1695 return false;
1696 }
1697
Craig Mautnerdf88d732014-01-27 09:21:32 -08001698 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001699 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001700 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001701 // Do not resume this stack if its parent is not resumed.
1702 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1703 return false;
1704 }
1705
Craig Mautnera61bc652013-10-28 15:43:18 -07001706 cancelInitializingActivities();
1707
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001708 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001709 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001710
1711 // Remember how we'll process this pause/resume situation, and ensure
1712 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001713 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1714 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001715
Craig Mautner84984fa2014-06-19 11:19:20 -07001716 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001717 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001718 // There are no more activities!
1719 final String reason = "noMoreActivities";
1720 if (!mFullscreen) {
1721 // Try to move focus to the next visible stack with a running activity if this
1722 // stack is not covering the entire screen.
1723 final ActivityStack stack = getNextVisibleStackLocked();
1724 if (adjustFocusToNextVisibleStackLocked(stack, reason)) {
1725 return mStackSupervisor.resumeTopActivitiesLocked(stack, prev, null);
1726 }
1727 }
1728 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001729 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001730 if (DEBUG_STATES) Slog.d(TAG_STATES,
1731 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001732 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001733 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001734 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1735 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1736 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001737 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001738 }
1739
1740 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001741
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001742 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001743 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1744 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001745 // Make sure we have executed any pending transitions, since there
1746 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001747 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001748 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001749 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001750 if (DEBUG_STATES) Slog.d(TAG_STATES,
1751 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001752 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001753 return false;
1754 }
1755
Craig Mautner525f3d92013-05-07 14:01:50 -07001756 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001757 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001758 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001759 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001760 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001761 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001762 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001763 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001764 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001765 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001766 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001767 } else if (!isOnHomeDisplay()) {
1768 return false;
1769 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001770 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08001771 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001772 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1773 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1774 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001775 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001776 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001777 }
1778
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001779 // If we are sleeping, and there is no resumed activity, and the top
1780 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001781 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001782 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001783 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001784 // Make sure we have executed any pending transitions, since there
1785 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001786 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001787 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001788 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001789 if (DEBUG_STATES) Slog.d(TAG_STATES,
1790 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001791 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001792 return false;
1793 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001794
1795 // Make sure that the user who owns this activity is started. If not,
1796 // we will just leave it as is because someone should be bringing
1797 // another user's activities to the top of the stack.
1798 if (mService.mStartedUsers.get(next.userId) == null) {
1799 Slog.w(TAG, "Skipping resume of top activity " + next
1800 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001801 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001802 return false;
1803 }
1804
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001805 // The activity may be waiting for stop, but that is no longer
1806 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001807 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001808 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001809 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001810 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001811
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001812 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001813
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001814 // If we are currently pausing an activity, then don't do anything
1815 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001816 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001817 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001818 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001819 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001820 return false;
1821 }
1822
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001823 // Okay we are now going to start a switch, to 'next'. We may first
1824 // have to pause the current activity, but this is an important point
1825 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001826 // XXX "App Redirected" dialog is getting too many false positives
1827 // at this point, so turn off for now.
1828 if (false) {
1829 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1830 long now = SystemClock.uptimeMillis();
1831 final boolean inTime = mLastStartedActivity.startTime != 0
1832 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1833 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1834 final int nextUid = next.info.applicationInfo.uid;
1835 if (inTime && lastUid != nextUid
1836 && lastUid != next.launchedFromUid
1837 && mService.checkPermission(
1838 android.Manifest.permission.STOP_APP_SWITCHES,
1839 -1, next.launchedFromUid)
1840 != PackageManager.PERMISSION_GRANTED) {
1841 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1842 } else {
1843 next.startTime = now;
1844 mLastStartedActivity = next;
1845 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001846 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001847 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001848 mLastStartedActivity = next;
1849 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001850 }
Craig Mautner58547802013-03-05 08:23:53 -08001851
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001852 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
1853
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001854 // We need to start pausing the current activity so the top one
1855 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001856 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1857 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001858 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001859 if (DEBUG_STATES) Slog.d(TAG_STATES,
1860 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001861 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001862 }
1863 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001864 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001865 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001866 // At this point we want to put the upcoming activity's process
1867 // at the top of the LRU list, since we know we will be needing it
1868 // very soon and it would be a waste to let it get killed if it
1869 // happens to be sitting towards the end.
1870 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001871 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001872 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001873 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001874 return true;
1875 }
1876
Christopher Tated3f175c2012-06-14 14:16:54 -07001877 // If the most recent activity was noHistory but was only stopped rather
1878 // than stopped+finished because the device went to sleep, we need to make
1879 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001880 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001881 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001882 if (DEBUG_STATES) Slog.d(TAG_STATES,
1883 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07001884 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001885 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001886 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001887 }
1888
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001889 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001890 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1891 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001892 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001893 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1894 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001895 } else {
1896 // The next activity is already visible, so hide the previous
1897 // activity's windows right now so we can show the new one ASAP.
1898 // We only do this if the previous is finishing, which should mean
1899 // it is on top of the one being resumed so hiding it quickly
1900 // is good. Otherwise, we want to do the normal route of allowing
1901 // the resumed activity to be shown so we can decide if the
1902 // previous should actually be hidden depending on whether the
1903 // new one is found to be full-screen or not.
1904 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001905 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001906 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1907 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001908 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001909 + ", nowVisible=" + next.nowVisible);
1910 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001911 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08001912 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001913 + ", waitingVisible="
1914 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1915 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001916 }
1917 }
1918 }
1919
Dianne Hackborne7f97212011-02-24 14:40:20 -08001920 // Launching this app's activity, make sure the app is no longer
1921 // considered stopped.
1922 try {
1923 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001924 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001925 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001926 } catch (IllegalArgumentException e) {
1927 Slog.w(TAG, "Failed trying to unstop package "
1928 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001929 }
1930
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001931 // We are starting up the next activity, so tell the window manager
1932 // that the previous one will be hidden soon. This way it can know
1933 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001934 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001935 if (prev != null) {
1936 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001937 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001938 "Prepare close transition: prev=" + prev);
1939 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001940 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001941 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001942 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001943 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001944 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1945 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001946 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001947 mWindowManager.setAppWillBeHidden(prev.appToken);
1948 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001949 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001950 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
1951 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001952 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001953 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001954 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001955 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001956 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001957 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001958 : next.mLaunchTaskBehind
1959 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1960 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001961 }
1962 }
1963 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001964 mWindowManager.setAppWillBeHidden(prev.appToken);
1965 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001966 }
Craig Mautner967212c2013-04-13 21:10:58 -07001967 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001968 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001969 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001970 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001971 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001972 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001973 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001974 }
1975 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001976
1977 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001978 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001979 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1980 if (opts != null) {
1981 resumeAnimOptions = opts.toBundle();
1982 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001983 next.applyOptionsLocked();
1984 } else {
1985 next.clearOptionsLocked();
1986 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001987
Craig Mautnercf910b02013-04-23 11:23:27 -07001988 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001989 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001990 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001991
1992 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001993 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001994
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001995 // schedule launch ticks to collect information about slow apps.
1996 next.startLaunchTickingLocked();
1997
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001998 ActivityRecord lastResumedActivity =
1999 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002000 ActivityState lastState = next.state;
2001
2002 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002003
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002004 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002005 next.state = ActivityState.RESUMED;
2006 mResumedActivity = next;
2007 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08002008 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07002009 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002010 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002011 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002012
2013 // Have the window manager re-evaluate the orientation of
2014 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002015 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07002016 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002017 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07002018 mService.mConfiguration,
2019 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2020 if (config != null) {
2021 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002022 }
Maxim Bogatov05075302015-05-19 18:33:08 -07002023 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002024 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002025
Craig Mautner525f3d92013-05-07 14:01:50 -07002026 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002027 // The configuration update wasn't able to keep the existing
2028 // instance of the activity, and instead started a new one.
2029 // We should be all done, but let's just make sure our activity
2030 // is still at the top and schedule another run if something
2031 // weird happened.
2032 ActivityRecord nextNext = topRunningActivityLocked(null);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002033 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002034 "Activity config changed during resume: " + next
2035 + ", new next: " + nextNext);
2036 if (nextNext != next) {
2037 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002038 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002039 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002040 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002041 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07002042 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002043 return true;
2044 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002045 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002046 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002047 }
Craig Mautner58547802013-03-05 08:23:53 -08002048
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002049 try {
2050 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002051 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002052 if (a != null) {
2053 final int N = a.size();
2054 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002055 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2056 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002057 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002058 }
2059 }
2060
2061 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002062 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002063 }
2064
Craig Mautner299f9602015-01-26 09:47:33 -08002065 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2066 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002067
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002068 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07002069 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002070 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002071 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002072 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002073 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002074 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002075
Craig Mautner0eea92c2013-05-16 13:35:39 -07002076 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002077
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002078 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002079 } catch (Exception e) {
2080 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002081 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002082 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002083 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002084 if (lastStack != null) {
2085 lastStack.mResumedActivity = lastResumedActivity;
2086 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002087 Slog.i(TAG, "Restarting because process died: " + next);
2088 if (!next.hasBeenLaunched) {
2089 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002090 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2091 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002092 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002093 next.appToken, next.packageName, next.theme,
2094 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07002095 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
2096 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002097 }
George Mount2c92c972014-03-20 09:38:23 -07002098 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002099 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002100 return true;
2101 }
2102
2103 // From this point on, if something goes wrong there is no way
2104 // to recover the activity.
2105 try {
2106 next.visible = true;
2107 completeResumeLocked(next);
2108 } catch (Exception e) {
2109 // If any exception gets thrown, toss away this
2110 // activity and try the next one.
2111 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002112 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002113 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002114 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002115 return true;
2116 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002117 next.stopped = false;
2118
2119 } else {
2120 // Whoops, need to restart this activity!
2121 if (!next.hasBeenLaunched) {
2122 next.hasBeenLaunched = true;
2123 } else {
2124 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002125 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002126 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002127 mService.compatibilityInfoForPackageLocked(
2128 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002129 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002130 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002131 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002132 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002133 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002134 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002135 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002136 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002137 }
2138
Craig Mautnercf910b02013-04-23 11:23:27 -07002139 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002140 return true;
2141 }
2142
riddle_hsuc215a4f2014-12-27 12:10:45 +08002143 private TaskRecord getNextTask(TaskRecord targetTask) {
2144 final int index = mTaskHistory.indexOf(targetTask);
2145 if (index >= 0) {
2146 final int numTasks = mTaskHistory.size();
2147 for (int i = index + 1; i < numTasks; ++i) {
2148 TaskRecord task = mTaskHistory.get(i);
2149 if (task.userId == targetTask.userId) {
2150 return task;
2151 }
2152 }
2153 }
2154 return null;
2155 }
2156
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002157 private void insertTaskAtPosition(TaskRecord task, int position) {
2158 if (position >= mTaskHistory.size()) {
2159 insertTaskAtTop(task, null);
2160 return;
2161 }
2162 // Calculate maximum possible position for this task.
2163 int maxPosition = mTaskHistory.size();
2164 if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
2165 && task.topRunningActivityLocked(null) == null) {
2166 // Put non-current user tasks below current user tasks.
2167 while (maxPosition > 0) {
2168 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2169 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2170 || tmpTask.topRunningActivityLocked(null) == null) {
2171 break;
2172 }
2173 maxPosition--;
2174 }
2175 }
2176 position = Math.min(position, maxPosition);
2177 mTaskHistory.remove(task);
2178 mTaskHistory.add(position, task);
2179 updateTaskMovement(task, true);
2180 }
2181
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002182 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002183 // If the moving task is over home stack, transfer its return type to next task
2184 if (task.isOverHomeStack()) {
2185 final TaskRecord nextTask = getNextTask(task);
2186 if (nextTask != null) {
2187 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2188 }
2189 }
2190
Craig Mautner9c85c202013-10-04 20:11:26 -07002191 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002192 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002193 if (isOnHomeDisplay()) {
2194 ActivityStack lastStack = mStackSupervisor.getLastStack();
2195 final boolean fromHome = lastStack.isHomeStack();
2196 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07002197 task.setTaskToReturnTo(fromHome
2198 ? lastStack.topTask() == null
2199 ? HOME_ACTIVITY_TYPE
2200 : lastStack.topTask().taskType
2201 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08002202 }
2203 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002204 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002205 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002206
Craig Mautnerac6f8432013-07-17 13:24:59 -07002207 mTaskHistory.remove(task);
2208 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002209 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002210 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002211 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002212 || (newActivity == null && task.topRunningActivityLocked(null) == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002213 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002214 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002215 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002216 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002217 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002218 || tmpTask.topRunningActivityLocked(null) == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002219 break;
2220 }
2221 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002222 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002223 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002224 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002225 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002226 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002227
Craig Mautner8849a5e2013-04-02 16:41:03 -07002228 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002229 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002230 TaskRecord rTask = r.task;
2231 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002232 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2233 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002234 // Last activity in task had been removed or ActivityManagerService is reusing task.
2235 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002236 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002237 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002238 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002239 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002240 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002241 if (!newTask) {
2242 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002243 boolean startIt = true;
2244 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2245 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002246 if (task.getTopActivity() == null) {
2247 // All activities in task are finishing.
2248 continue;
2249 }
Craig Mautner70a86932013-02-28 22:37:44 -08002250 if (task == r.task) {
2251 // Here it is! Now, if this is not yet visible to the
2252 // user, then just add it without starting; it will
2253 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002254 if (!startIt) {
2255 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2256 + task, new RuntimeException("here").fillInStackTrace());
2257 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002258 r.putInHistory();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002259 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002260 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002261 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002262 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002263 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002264 return;
2265 }
2266 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002267 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002268 startIt = false;
2269 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002270 }
2271 }
2272
2273 // Place a new activity at top of stack, so it is next to interact
2274 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002275
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002276 // If we are not placing the new activity frontmost, we do not want
2277 // to deliver the onUserLeaving callback to the actual frontmost
2278 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002279 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002280 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002281 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002282 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002283 }
Craig Mautner70a86932013-02-28 22:37:44 -08002284
2285 task = r.task;
2286
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002287 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002288 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002289 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002290 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002291 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002292
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002293 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002294 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002295 // We want to show the starting preview window if we are
2296 // switching to a new task, or the next activity's process is
2297 // not currently running.
2298 boolean showStartingIcon = newTask;
2299 ProcessRecord proc = r.app;
2300 if (proc == null) {
2301 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2302 }
2303 if (proc == null || proc.thread == null) {
2304 showStartingIcon = true;
2305 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002306 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002307 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002308 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002309 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002310 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002311 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002312 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002313 ? r.mLaunchTaskBehind
2314 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2315 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002316 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002317 mNoAnimActivities.remove(r);
2318 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002319 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002320 boolean doShow = true;
2321 if (newTask) {
2322 // Even though this activity is starting fresh, we still need
2323 // to reset it to make sure we apply affinities to move any
2324 // existing activities from other tasks in to it.
2325 // If the caller has requested that the target task be
2326 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002327 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002328 resetTaskIfNeededLocked(r, r);
2329 doShow = topRunningNonDelayedActivityLocked(null) == r;
2330 }
George Mount70778d72014-07-01 16:33:45 -07002331 } else if (options != null && new ActivityOptions(options).getAnimationType()
2332 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2333 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002334 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002335 if (r.mLaunchTaskBehind) {
2336 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2337 // tell WindowManager that r is visible even though it is at the back of the stack.
2338 mWindowManager.setAppVisibility(r.appToken, true);
2339 ensureActivitiesVisibleLocked(null, 0);
2340 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002341 // Figure out if we are transitioning from another activity that is
2342 // "has the same starting icon" as the next one. This allows the
2343 // window manager to keep the previous window it had previously
2344 // created, if it still had one.
2345 ActivityRecord prev = mResumedActivity;
2346 if (prev != null) {
2347 // We don't want to reuse the previous starting preview if:
2348 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002349 if (prev.task != r.task) {
2350 prev = null;
2351 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002352 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002353 else if (prev.nowVisible) {
2354 prev = null;
2355 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002356 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002357 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002358 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002359 mService.compatibilityInfoForPackageLocked(
2360 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002361 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002362 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002363 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002364 }
2365 } else {
2366 // If this is the first activity, don't do any fancy animations,
2367 // because there is nothing for it to animate on top of.
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002368 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002369 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002370 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002371 }
2372 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002373 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002374 }
2375
2376 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002377 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Chong Zhang45c25ce2015-08-10 22:18:26 -07002378 } else {
2379 addRecentActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002380 }
2381 }
2382
Dianne Hackbornbe707852011-11-11 14:32:10 -08002383 final void validateAppTokensLocked() {
2384 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002385 mValidateAppTokens.ensureCapacity(numActivities());
2386 final int numTasks = mTaskHistory.size();
2387 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2388 TaskRecord task = mTaskHistory.get(taskNdx);
2389 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002390 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002391 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002392 }
Craig Mautner000f0022013-02-26 15:04:29 -08002393 TaskGroup group = new TaskGroup();
2394 group.taskId = task.taskId;
2395 mValidateAppTokens.add(group);
2396 final int numActivities = activities.size();
2397 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2398 final ActivityRecord r = activities.get(activityNdx);
2399 group.tokens.add(r.appToken);
2400 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002401 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002402 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002403 }
2404
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002405 /**
2406 * Perform a reset of the given task, if needed as part of launching it.
2407 * Returns the new HistoryRecord at the top of the task.
2408 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002409 /**
2410 * Helper method for #resetTaskIfNeededLocked.
2411 * We are inside of the task being reset... we'll either finish this activity, push it out
2412 * for another task, or leave it as-is.
2413 * @param task The task containing the Activity (taskTop) that might be reset.
2414 * @param forceReset
2415 * @return An ActivityOptions that needs to be processed.
2416 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002417 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002418 ActivityOptions topOptions = null;
2419
2420 int replyChainEnd = -1;
2421 boolean canMoveOptions = true;
2422
2423 // We only do this for activities that are not the root of the task (since if we finish
2424 // the root, we may no longer have the task!).
2425 final ArrayList<ActivityRecord> activities = task.mActivities;
2426 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002427 final int rootActivityNdx = task.findEffectiveRootIndex();
2428 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002429 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002430 if (target.frontOfTask)
2431 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002432
2433 final int flags = target.info.flags;
2434 final boolean finishOnTaskLaunch =
2435 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2436 final boolean allowTaskReparenting =
2437 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2438 final boolean clearWhenTaskReset =
2439 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2440
2441 if (!finishOnTaskLaunch
2442 && !clearWhenTaskReset
2443 && target.resultTo != null) {
2444 // If this activity is sending a reply to a previous
2445 // activity, we can't do anything with it now until
2446 // we reach the start of the reply chain.
2447 // XXX note that we are assuming the result is always
2448 // to the previous activity, which is almost always
2449 // the case but we really shouldn't count on.
2450 if (replyChainEnd < 0) {
2451 replyChainEnd = i;
2452 }
2453 } else if (!finishOnTaskLaunch
2454 && !clearWhenTaskReset
2455 && allowTaskReparenting
2456 && target.taskAffinity != null
2457 && !target.taskAffinity.equals(task.affinity)) {
2458 // If this activity has an affinity for another
2459 // task, then we need to move it out of here. We will
2460 // move it as far out of the way as possible, to the
2461 // bottom of the activity stack. This also keeps it
2462 // correctly ordered with any activities we previously
2463 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002464 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002465 final ActivityRecord bottom =
2466 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002467 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002468 if (bottom != null && target.taskAffinity != null
2469 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002470 // If the activity currently at the bottom has the
2471 // same task affinity as the one we are moving,
2472 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002473 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002474 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002475 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002476 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002477 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002478 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002479 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002480 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002481 + " out to new task " + target.task);
2482 }
2483
Wale Ogunwale706ed792015-08-02 10:29:44 -07002484 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002485
Craig Mautner525f3d92013-05-07 14:01:50 -07002486 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002487 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2488 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002489 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002490 if (p.finishing) {
2491 continue;
2492 }
2493
Craig Mautnere3a74d52013-02-22 14:14:58 -08002494 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002495 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002496 topOptions = p.takeOptionsLocked();
2497 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002498 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002499 }
2500 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002501 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2502 "Removing activity " + p + " from task=" + task + " adding to task="
2503 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002504 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2505 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002506 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002507 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002508
Wale Ogunwale706ed792015-08-02 10:29:44 -07002509 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002510 }
2511
Wale Ogunwale706ed792015-08-02 10:29:44 -07002512 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002513 if (VALIDATE_TOKENS) {
2514 validateAppTokensLocked();
2515 }
2516
2517 replyChainEnd = -1;
2518 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2519 // If the activity should just be removed -- either
2520 // because it asks for it, or the task should be
2521 // cleared -- then finish it and anything that is
2522 // part of its reply chain.
2523 int end;
2524 if (clearWhenTaskReset) {
2525 // In this case, we want to finish this activity
2526 // and everything above it, so be sneaky and pretend
2527 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002528 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002529 } else if (replyChainEnd < 0) {
2530 end = i;
2531 } else {
2532 end = replyChainEnd;
2533 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002534 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002535 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002536 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002537 if (p.finishing) {
2538 continue;
2539 }
2540 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002541 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002542 topOptions = p.takeOptionsLocked();
2543 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002544 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002545 }
2546 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002547 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002548 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002549 if (finishActivityLocked(
2550 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002551 end--;
2552 srcPos--;
2553 }
2554 }
2555 replyChainEnd = -1;
2556 } else {
2557 // If we were in the middle of a chain, well the
2558 // activity that started it all doesn't want anything
2559 // special, so leave it all as-is.
2560 replyChainEnd = -1;
2561 }
2562 }
2563
2564 return topOptions;
2565 }
2566
2567 /**
2568 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2569 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2570 * @param affinityTask The task we are looking for an affinity to.
2571 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2572 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2573 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2574 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002575 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002576 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002577 int replyChainEnd = -1;
2578 final int taskId = task.taskId;
2579 final String taskAffinity = task.affinity;
2580
2581 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2582 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002583 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2584
2585 // Do not operate on or below the effective root Activity.
2586 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002587 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002588 if (target.frontOfTask)
2589 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002590
2591 final int flags = target.info.flags;
2592 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2593 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2594
2595 if (target.resultTo != null) {
2596 // If this activity is sending a reply to a previous
2597 // activity, we can't do anything with it now until
2598 // we reach the start of the reply chain.
2599 // XXX note that we are assuming the result is always
2600 // to the previous activity, which is almost always
2601 // the case but we really shouldn't count on.
2602 if (replyChainEnd < 0) {
2603 replyChainEnd = i;
2604 }
2605 } else if (topTaskIsHigher
2606 && allowTaskReparenting
2607 && taskAffinity != null
2608 && taskAffinity.equals(target.taskAffinity)) {
2609 // This activity has an affinity for our task. Either remove it if we are
2610 // clearing or move it over to our task. Note that
2611 // we currently punt on the case where we are resetting a
2612 // task that is not at the top but who has activities above
2613 // with an affinity to it... this is really not a normal
2614 // case, and we will need to later pull that task to the front
2615 // and usually at that point we will do the reset and pick
2616 // up those remaining activities. (This only happens if
2617 // someone starts an activity in a new task from an activity
2618 // in a task that is not currently on top.)
2619 if (forceReset || finishOnTaskLaunch) {
2620 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002621 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2622 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002623 for (int srcPos = start; srcPos >= i; --srcPos) {
2624 final ActivityRecord p = activities.get(srcPos);
2625 if (p.finishing) {
2626 continue;
2627 }
Todd Kennedy539db512014-12-15 09:57:55 -08002628 finishActivityLocked(
2629 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002630 }
2631 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002632 if (taskInsertionPoint < 0) {
2633 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002634
Craig Mautner77878772013-03-04 19:46:24 -08002635 }
Craig Mautner77878772013-03-04 19:46:24 -08002636
2637 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002638 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2639 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2640 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002641 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002642 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002643 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002644 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002645
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002646 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2647 "Removing and adding activity " + p + " to stack at " + task
2648 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002649 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2650 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002651 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002652 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002653 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002654 if (VALIDATE_TOKENS) {
2655 validateAppTokensLocked();
2656 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002657
2658 // Now we've moved it in to place... but what if this is
2659 // a singleTop activity and we have put it on top of another
2660 // instance of the same activity? Then we drop the instance
2661 // below so it remains singleTop.
2662 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2663 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002664 int targetNdx = taskActivities.indexOf(target);
2665 if (targetNdx > 0) {
2666 ActivityRecord p = taskActivities.get(targetNdx - 1);
2667 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002668 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2669 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002670 }
2671 }
2672 }
2673 }
2674
2675 replyChainEnd = -1;
2676 }
2677 }
Craig Mautner77878772013-03-04 19:46:24 -08002678 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002679 }
2680
Craig Mautner8849a5e2013-04-02 16:41:03 -07002681 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002682 ActivityRecord newActivity) {
2683 boolean forceReset =
2684 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2685 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2686 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2687 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2688 forceReset = true;
2689 }
2690 }
2691
2692 final TaskRecord task = taskTop.task;
2693
2694 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2695 * for remaining tasks. Used for later tasks to reparent to task. */
2696 boolean taskFound = false;
2697
2698 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2699 ActivityOptions topOptions = null;
2700
Craig Mautner77878772013-03-04 19:46:24 -08002701 // Preserve the location for reparenting in the new task.
2702 int reparentInsertionPoint = -1;
2703
Craig Mautnere3a74d52013-02-22 14:14:58 -08002704 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2705 final TaskRecord targetTask = mTaskHistory.get(i);
2706
2707 if (targetTask == task) {
2708 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2709 taskFound = true;
2710 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002711 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2712 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002713 }
2714 }
2715
Craig Mautner70a86932013-02-28 22:37:44 -08002716 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002717 if (taskNdx >= 0) {
2718 do {
2719 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2720 } while (taskTop == null && taskNdx >= 0);
2721 }
Craig Mautner70a86932013-02-28 22:37:44 -08002722
Craig Mautnere3a74d52013-02-22 14:14:58 -08002723 if (topOptions != null) {
2724 // If we got some ActivityOptions from an activity on top that
2725 // was removed from the task, propagate them to the new real top.
2726 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002727 taskTop.updateOptionsLocked(topOptions);
2728 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002729 topOptions.abort();
2730 }
2731 }
2732
2733 return taskTop;
2734 }
2735
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002736 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2737 String resultWho, int requestCode, int resultCode, Intent data) {
2738
2739 if (callingUid > 0) {
2740 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002741 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002742 }
2743
2744 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2745 + " : who=" + resultWho + " req=" + requestCode
2746 + " res=" + resultCode + " data=" + data);
2747 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2748 try {
2749 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2750 list.add(new ResultInfo(resultWho, requestCode,
2751 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002752 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002753 return;
2754 } catch (Exception e) {
2755 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2756 }
2757 }
2758
2759 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2760 }
2761
Craig Mautner299f9602015-01-26 09:47:33 -08002762 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002763 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2764 ActivityRecord next = topRunningActivityLocked(null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002765 final String myReason = reason + " adjustFocus";
Craig Mautner04f0b702013-10-22 12:31:01 -07002766 if (next != r) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07002767 if (next != null && (mStackId == FREEFORM_WORKSPACE_STACK_ID
2768 || mStackId == DOCKED_STACK_ID)) {
2769 // For freeform and docked stacks we always keep the focus within the stack as
2770 // long as there is a running activity in the stack that we can adjust focus to.
Wale Ogunwale61803ee2015-08-07 19:59:47 -07002771 mService.setFocusedActivityLocked(next, myReason);
2772 return;
2773 } else {
2774 final TaskRecord task = r.task;
2775 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
2776 // For non-fullscreen stack, we want to move the focus to the next visible
2777 // stack to prevent the home screen from moving to the top and obscuring
2778 // other visible stacks.
2779 if (!mFullscreen
2780 && adjustFocusToNextVisibleStackLocked(null, myReason)) {
2781 return;
2782 }
2783 // Move the home stack to the top if this stack is fullscreen or there is no
2784 // other visible stack.
2785 if (mStackSupervisor.moveHomeStackTaskToTop(
2786 task.getTaskToReturnTo(), myReason)) {
2787 // Activity focus was already adjusted. Nothing else to do...
2788 return;
2789 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002790 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002791 }
2792 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002793
2794 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
Winson Chung648c83b2014-04-28 15:11:56 -07002795 if (top != null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002796 mService.setFocusedActivityLocked(top, myReason);
Winson Chung648c83b2014-04-28 15:11:56 -07002797 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002798 }
2799 }
2800
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002801 private boolean adjustFocusToNextVisibleStackLocked(ActivityStack inStack, String reason) {
2802 final ActivityStack stack = (inStack != null) ? inStack : getNextVisibleStackLocked();
2803 final String myReason = reason + " adjustFocusToNextVisibleStack";
2804 if (stack == null) {
2805 return false;
2806 }
2807 final ActivityRecord top = stack.topRunningActivityLocked(null);
2808 if (top == null) {
2809 return false;
2810 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002811 mService.setFocusedActivityLocked(top, myReason);
2812 return true;
2813 }
2814
Craig Mautnerf3333272013-04-22 10:55:53 -07002815 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002816 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002817 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2818 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2819 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002820 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002821 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07002822 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
2823 "stop-no-history", false)) {
2824 // Activity was finished, no need to continue trying to schedule stop.
2825 adjustFocusedActivityLocked(r, "stopActivityFinished");
2826 r.resumeKeyDispatchingLocked();
2827 return;
2828 }
Christopher Tated3f175c2012-06-14 14:16:54 -07002829 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002830 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07002831 + " on stop because we're just sleeping");
2832 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002833 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002834 }
2835
2836 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002837 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002838 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002839 try {
2840 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002841 if (DEBUG_STATES) Slog.v(TAG_STATES,
2842 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002843 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002844 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2845 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002846 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002847 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002848 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002849 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002850 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002851 r.setSleeping(true);
2852 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002853 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002854 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002855 } catch (Exception e) {
2856 // Maybe just ignore exceptions here... if the process
2857 // has crashed, our death notification will clean things
2858 // up.
2859 Slog.w(TAG, "Exception thrown during pause", e);
2860 // Just in case, assume it to be stopped.
2861 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002862 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002863 r.state = ActivityState.STOPPED;
2864 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002865 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002866 }
2867 }
2868 }
2869 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002870
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002871 /**
2872 * @return Returns true if the activity is being finished, false if for
2873 * some reason it is being left as-is.
2874 */
2875 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002876 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002877 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002878 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
2879 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002880 + ", result=" + resultCode + ", data=" + resultData
2881 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002882 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002883 return false;
2884 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002885
Craig Mautnerd44711d2013-02-23 11:24:36 -08002886 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002887 return true;
2888 }
2889
Craig Mautnerd2328952013-03-05 12:46:26 -08002890 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002891 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2892 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2893 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2894 ActivityRecord r = activities.get(activityNdx);
2895 if (r.resultTo == self && r.requestCode == requestCode) {
2896 if ((r.resultWho == null && resultWho == null) ||
2897 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2898 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2899 false);
2900 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002901 }
2902 }
2903 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002904 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002905 }
2906
Todd Kennedy539db512014-12-15 09:57:55 -08002907 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002908 ActivityRecord r = topRunningActivityLocked(null);
2909 if (r != null && r.app == app) {
2910 // If the top running activity is from this crashing
2911 // process, then terminate it to avoid getting in a loop.
2912 Slog.w(TAG, " Force finishing activity "
2913 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002914 int taskNdx = mTaskHistory.indexOf(r.task);
2915 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002916 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002917 // Also terminate any activities below it that aren't yet
2918 // stopped, to avoid a situation where one will get
2919 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002920 --activityNdx;
2921 if (activityNdx < 0) {
2922 do {
2923 --taskNdx;
2924 if (taskNdx < 0) {
2925 break;
2926 }
2927 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2928 } while (activityNdx < 0);
2929 }
2930 if (activityNdx >= 0) {
2931 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002932 if (r.state == ActivityState.RESUMED
2933 || r.state == ActivityState.PAUSING
2934 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002935 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002936 Slog.w(TAG, " Force finishing activity "
2937 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002938 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002939 }
2940 }
2941 }
2942 }
2943 }
2944
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002945 final void finishVoiceTask(IVoiceInteractionSession session) {
2946 IBinder sessionBinder = session.asBinder();
2947 boolean didOne = false;
2948 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2949 TaskRecord tr = mTaskHistory.get(taskNdx);
2950 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2951 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2952 ActivityRecord r = tr.mActivities.get(activityNdx);
2953 if (!r.finishing) {
2954 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2955 false);
2956 didOne = true;
2957 }
2958 }
2959 }
2960 }
2961 if (didOne) {
2962 mService.updateOomAdjLocked();
2963 }
2964 }
2965
Craig Mautnerd2328952013-03-05 12:46:26 -08002966 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002967 ArrayList<ActivityRecord> activities = r.task.mActivities;
2968 for (int index = activities.indexOf(r); index >= 0; --index) {
2969 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002970 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002971 break;
2972 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002973 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002974 }
2975 return true;
2976 }
2977
Dianne Hackborn5c607432012-02-28 14:44:19 -08002978 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2979 // send the result
2980 ActivityRecord resultTo = r.resultTo;
2981 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002982 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08002983 + " who=" + r.resultWho + " req=" + r.requestCode
2984 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002985 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002986 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01002987 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002988 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002989 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002990 if (r.info.applicationInfo.uid > 0) {
2991 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2992 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002993 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002994 }
2995 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2996 resultData);
2997 r.resultTo = null;
2998 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002999 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003000
3001 // Make sure this HistoryRecord is not holding on to other resources,
3002 // because clients have remote IPC references to this object so we
3003 // can't assume that will go away and want to avoid circular IPC refs.
3004 r.results = null;
3005 r.pendingResults = null;
3006 r.newIntents = null;
3007 r.icicle = null;
3008 }
3009
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003010 /**
3011 * @return Returns true if this activity has been removed from the history
3012 * list, or false if it is still in the list and will be removed later.
3013 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003014 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3015 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003016 if (r.finishing) {
3017 Slog.w(TAG, "Duplicate finish request for " + r);
3018 return false;
3019 }
3020
Wale Ogunwale7d701172015-03-11 15:36:30 -07003021 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08003022 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003023 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003024 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08003025 task.taskId, r.shortComponentName, reason);
3026 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003027 final int index = activities.indexOf(r);
3028 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003029 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07003030 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003031 // If the caller asked that this activity (and all above it)
3032 // be cleared when the task is reset, don't lose that information,
3033 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08003034 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003035 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003036 }
3037 }
3038
3039 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003040
Craig Mautner299f9602015-01-26 09:47:33 -08003041 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003042
Dianne Hackborn5c607432012-02-28 14:44:19 -08003043 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003044
Craig Mautnerde4ef022013-04-07 19:01:33 -07003045 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003046 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003047 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003048 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003049 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08003050 ? AppTransition.TRANSIT_TASK_CLOSE
3051 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08003052
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003053 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003054 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003055
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003056 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003057 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3058 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3059 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003060 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003061 }
3062
Craig Mautneraea74a52014-03-08 14:23:10 -08003063 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07003064 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08003065 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003066 } else if (r.state != ActivityState.PAUSING) {
3067 // If the activity is PAUSING, we will complete the finish once
3068 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003069 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003070 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003071 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003072 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003073 }
3074
3075 return false;
3076 }
3077
Craig Mautnerf3333272013-04-22 10:55:53 -07003078 static final int FINISH_IMMEDIATELY = 0;
3079 static final int FINISH_AFTER_PAUSE = 1;
3080 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003081
Craig Mautnerf3333272013-04-22 10:55:53 -07003082 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003083 // First things first: if this activity is currently visible,
3084 // and the resumed activity is not yet visible, then hold off on
3085 // finishing until the resumed one becomes visible.
3086 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003087 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
3088 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07003089 if (mStackSupervisor.mStoppingActivities.size() > 3
3090 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003091 // If we already have a few activities waiting to stop,
3092 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07003093 // them out. Or if r is the last of activity of the last task the stack
3094 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07003095 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003096 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003097 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003098 }
3099 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003100 if (DEBUG_STATES) Slog.v(TAG_STATES,
3101 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003102 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003103 if (oomAdj) {
3104 mService.updateOomAdjLocked();
3105 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003106 return r;
3107 }
3108
3109 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003110 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003111 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003112 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003113 if (mResumedActivity == r) {
3114 mResumedActivity = null;
3115 }
3116 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003117 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003118 r.state = ActivityState.FINISHING;
3119
3120 if (mode == FINISH_IMMEDIATELY
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003121 || (mode == FINISH_AFTER_PAUSE && prevState == ActivityState.PAUSED)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003122 || prevState == ActivityState.STOPPED
3123 || prevState == ActivityState.INITIALIZING) {
3124 // If this activity is already stopped, we can just finish
3125 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07003126 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003127 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003128 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003129 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003130 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003131 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003132 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3133 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003134 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003135 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003136
3137 // Need to go through the full pause cycle to get this
3138 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003139 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003140 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003141 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003142 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003143 return r;
3144 }
3145
Craig Mautneree36c772014-07-16 14:56:05 -07003146 void finishAllActivitiesLocked(boolean immediately) {
3147 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003148 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3149 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3150 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3151 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003152 noActivitiesInStack = false;
3153 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003154 continue;
3155 }
Craig Mautneree36c772014-07-16 14:56:05 -07003156 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003157 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3158 }
3159 }
Craig Mautneree36c772014-07-16 14:56:05 -07003160 if (noActivitiesInStack) {
3161 mActivityContainer.onTaskListEmptyLocked();
3162 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003163 }
3164
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003165 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3166 // Basic case: for simple app-centric recents, we need to recreate
3167 // the task if the affinity has changed.
3168 if (srec == null || srec.task.affinity == null ||
3169 !srec.task.affinity.equals(destAffinity)) {
3170 return true;
3171 }
3172 // Document-centric case: an app may be split in to multiple documents;
3173 // they need to re-create their task if this current activity is the root
3174 // of a document, unless simply finishing it will return them to the the
3175 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003176 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3177 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003178 // Okay, this activity is at the root of its task. What to do, what to do...
3179 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3180 // Finishing won't return to an application, so we need to recreate.
3181 return true;
3182 }
3183 // We now need to get the task below it to determine what to do.
3184 int taskIdx = mTaskHistory.indexOf(srec.task);
3185 if (taskIdx <= 0) {
3186 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3187 return false;
3188 }
3189 if (taskIdx == 0) {
3190 // At the bottom of the stack, nothing to go back to.
3191 return true;
3192 }
3193 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3194 if (!srec.task.affinity.equals(prevTask.affinity)) {
3195 // These are different apps, so need to recreate.
3196 return true;
3197 }
3198 }
3199 return false;
3200 }
3201
Wale Ogunwale7d701172015-03-11 15:36:30 -07003202 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003203 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003204 final TaskRecord task = srec.task;
3205 final ArrayList<ActivityRecord> activities = task.mActivities;
3206 final int start = activities.indexOf(srec);
3207 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003208 return false;
3209 }
3210 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003211 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003212 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003213 final ComponentName dest = destIntent.getComponent();
3214 if (start > 0 && dest != null) {
3215 for (int i = finishTo; i >= 0; i--) {
3216 ActivityRecord r = activities.get(i);
3217 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003218 r.info.name.equals(dest.getClassName())) {
3219 finishTo = i;
3220 parent = r;
3221 foundParentInTask = true;
3222 break;
3223 }
3224 }
3225 }
3226
3227 IActivityController controller = mService.mController;
3228 if (controller != null) {
3229 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3230 if (next != null) {
3231 // ask watcher if this is allowed
3232 boolean resumeOK = true;
3233 try {
3234 resumeOK = controller.activityResuming(next.packageName);
3235 } catch (RemoteException e) {
3236 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003237 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003238 }
3239
3240 if (!resumeOK) {
3241 return false;
3242 }
3243 }
3244 }
3245 final long origId = Binder.clearCallingIdentity();
3246 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003247 ActivityRecord r = activities.get(i);
3248 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003249 // Only return the supplied result for the first activity finished
3250 resultCode = Activity.RESULT_CANCELED;
3251 resultData = null;
3252 }
3253
3254 if (parent != null && foundParentInTask) {
3255 final int parentLaunchMode = parent.info.launchMode;
3256 final int destIntentFlags = destIntent.getFlags();
3257 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3258 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3259 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3260 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003261 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3262 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003263 } else {
3264 try {
3265 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3266 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07003267 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07003268 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003269 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07003270 -1, parent.launchedFromUid, 0, null, false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003271 foundParentInTask = res == ActivityManager.START_SUCCESS;
3272 } catch (RemoteException e) {
3273 foundParentInTask = false;
3274 }
3275 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003276 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003277 }
3278 }
3279 Binder.restoreCallingIdentity(origId);
3280 return foundParentInTask;
3281 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003282 /**
3283 * Perform the common clean-up of an activity record. This is called both
3284 * as part of destroyActivityLocked() (when destroying the client-side
3285 * representation) and cleaning things up as a result of its hosting
3286 * processing going away, in which case there is no remaining client-side
3287 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003288 *
3289 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003290 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003291 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3292 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003293 if (mResumedActivity == r) {
3294 mResumedActivity = null;
3295 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003296 if (mPausingActivity == r) {
3297 mPausingActivity = null;
3298 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003299 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003300
3301 r.configDestroy = false;
3302 r.frozenBeforeDestroy = false;
3303
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003304 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003305 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003306 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003307 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003308 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003309 }
3310
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003311 // Make sure this record is no longer in the pending finishes list.
3312 // This could happen, for example, if we are trimming activities
3313 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003314 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003315 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003316
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003317 // Remove any pending results.
3318 if (r.finishing && r.pendingResults != null) {
3319 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3320 PendingIntentRecord rec = apr.get();
3321 if (rec != null) {
3322 mService.cancelIntentSenderLocked(rec, false);
3323 }
3324 }
3325 r.pendingResults = null;
3326 }
3327
3328 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003329 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003330 }
3331
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003332 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003333 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003334 if (getVisibleBehindActivity() == r) {
3335 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003336 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003337 }
3338
3339 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003340 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003341 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003342 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003343 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003344 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003345 }
3346
Craig Mautner299f9602015-01-26 09:47:33 -08003347 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003348 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003349 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003350 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003351 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3352 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3353
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003354 r.takeFromHistory();
3355 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003356 if (DEBUG_STATES) Slog.v(TAG_STATES,
3357 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003358 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003359 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003360 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003361 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003362 if (VALIDATE_TOKENS) {
3363 validateAppTokensLocked();
3364 }
Craig Mautner312ba862014-02-10 17:55:01 -08003365 final TaskRecord task = r.task;
3366 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003367 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003368 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003369 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3370 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003371 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003372 }
Craig Mautner299f9602015-01-26 09:47:33 -08003373 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003374 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003375 cleanUpActivityServicesLocked(r);
3376 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003377 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003378
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003379 /**
3380 * Perform clean-up of service connections in an activity record.
3381 */
3382 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3383 // Throw away any services that have been bound by this activity.
3384 if (r.connections != null) {
3385 Iterator<ConnectionRecord> it = r.connections.iterator();
3386 while (it.hasNext()) {
3387 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003388 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003389 }
3390 r.connections = null;
3391 }
3392 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003393
Craig Mautneree2e45a2014-06-27 12:10:03 -07003394 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003395 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003396 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003397 mHandler.sendMessage(msg);
3398 }
3399
Craig Mautneree2e45a2014-06-27 12:10:03 -07003400 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003401 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003402 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003403 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3404 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3405 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3406 final ActivityRecord r = activities.get(activityNdx);
3407 if (r.finishing) {
3408 continue;
3409 }
3410 if (r.fullscreen) {
3411 lastIsOpaque = true;
3412 }
3413 if (owner != null && r.app != owner) {
3414 continue;
3415 }
3416 if (!lastIsOpaque) {
3417 continue;
3418 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003419 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003420 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003421 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003422 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003423 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003424 activityRemoved = true;
3425 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003426 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003427 }
3428 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003429 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003430 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003431 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003432 }
3433
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003434 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3435 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003436 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3437 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003438 + " pausing=" + mPausingActivity + " for reason " + reason);
3439 return destroyActivityLocked(r, true, reason);
3440 }
3441 return false;
3442 }
3443
3444 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3445 String reason) {
3446 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003447 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003448 int maxTasks = tasks.size() / 4;
3449 if (maxTasks < 1) {
3450 maxTasks = 1;
3451 }
3452 int numReleased = 0;
3453 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3454 final TaskRecord task = mTaskHistory.get(taskNdx);
3455 if (!tasks.contains(task)) {
3456 continue;
3457 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003458 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003459 int curNum = 0;
3460 final ArrayList<ActivityRecord> activities = task.mActivities;
3461 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3462 final ActivityRecord activity = activities.get(actNdx);
3463 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003464 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003465 + " in state " + activity.state + " resumed=" + mResumedActivity
3466 + " pausing=" + mPausingActivity + " for reason " + reason);
3467 destroyActivityLocked(activity, true, reason);
3468 if (activities.get(actNdx) != activity) {
3469 // Was removed from list, back up so we don't miss the next one.
3470 actNdx--;
3471 }
3472 curNum++;
3473 }
3474 }
3475 if (curNum > 0) {
3476 numReleased += curNum;
3477 maxTasks--;
3478 if (mTaskHistory.get(taskNdx) != task) {
3479 // The entire task got removed, back up so we don't miss the next one.
3480 taskNdx--;
3481 }
3482 }
3483 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003484 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3485 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003486 return numReleased;
3487 }
3488
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003489 /**
3490 * Destroy the current CLIENT SIDE instance of an activity. This may be
3491 * called both when actually finishing an activity, or when performing
3492 * a configuration switch where we destroy the current client-side object
3493 * but then create a new client-side object for this same HistoryRecord.
3494 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003495 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003496 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3497 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07003498 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003499 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003500 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003501 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003502
3503 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003504
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003505 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003506
3507 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003508
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003509 if (hadApp) {
3510 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003511 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003512 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3513 mService.mHeavyWeightProcess = null;
3514 mService.mHandler.sendEmptyMessage(
3515 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3516 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003517 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003518 // Update any services we are bound to that might care about whether
3519 // their client may have activities.
3520 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003521 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003522 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003523 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003524 }
3525 }
3526
3527 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003528
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003529 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003530 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003531 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003532 r.configChangeFlags);
3533 } catch (Exception e) {
3534 // We can just ignore exceptions here... if the process
3535 // has crashed, our death notification will clean things
3536 // up.
3537 //Slog.w(TAG, "Exception thrown during finish", e);
3538 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003539 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003540 removedFromHistory = true;
3541 skipDestroy = true;
3542 }
3543 }
3544
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003545 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003546
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003547 // If the activity is finishing, we need to wait on removing it
3548 // from the list to give it a chance to do its cleanup. During
3549 // that time it may make calls back with its token so we need to
3550 // be able to find it on the list and so we don't want to remove
3551 // it from the list yet. Otherwise, we can just immediately put
3552 // it in the destroyed state since we are not removing it from the
3553 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003554 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003555 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003556 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003557 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003558 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003559 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3560 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003561 if (DEBUG_STATES) Slog.v(TAG_STATES,
3562 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003563 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003564 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003565 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003566 }
3567 } else {
3568 // remove this record from the history.
3569 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003570 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003571 removedFromHistory = true;
3572 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003573 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003574 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003575 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003576 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003577 }
3578 }
3579
3580 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003581
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003582 if (!mLRUActivities.remove(r) && hadApp) {
3583 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3584 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003585
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003586 return removedFromHistory;
3587 }
3588
Craig Mautner299f9602015-01-26 09:47:33 -08003589 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003590 final long origId = Binder.clearCallingIdentity();
3591 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003592 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003593 if (r != null) {
3594 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003595 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003596 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003597
Wale Ogunwale60454db2015-01-23 16:05:07 -08003598 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003599 if (r.state == ActivityState.DESTROYING) {
3600 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003601 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003602 }
3603 }
Craig Mautner05d29032013-05-03 13:40:13 -07003604 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003605 } finally {
3606 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003607 }
3608 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003609
Todd Kennedyaab56db2015-01-30 09:39:53 -08003610 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003611 if (hasVisibleBehindActivity() &&
3612 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003613 if (r == topRunningActivityLocked(null)) {
3614 // Don't release the top activity if it has requested to run behind the next
3615 // activity.
3616 return;
3617 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003618 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003619 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003620 " thread=" + r.app.thread);
3621 if (r != null && r.app != null && r.app.thread != null) {
3622 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003623 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003624 } catch (RemoteException e) {
3625 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003626 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003627 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003628 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003629 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003630 }
3631 }
3632 }
3633
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003634 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003635 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3636 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003637 if (r != null) {
3638 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003639 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003640 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003641 }
3642 mStackSupervisor.resumeTopActivitiesLocked();
3643 }
3644
Jose Lima4b6c6692014-08-12 17:41:12 -07003645 boolean hasVisibleBehindActivity() {
3646 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003647 }
3648
Jose Lima4b6c6692014-08-12 17:41:12 -07003649 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003650 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003651 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003652 }
3653 }
3654
Jose Lima4b6c6692014-08-12 17:41:12 -07003655 ActivityRecord getVisibleBehindActivity() {
3656 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003657 }
3658
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003659 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3660 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003661 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003662 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3663 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003664 while (i > 0) {
3665 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003666 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003667 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003668 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003669 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003670 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003671 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003672 }
3673 }
3674 }
3675
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003676 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3677 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003678 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3679 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003680 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3681 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003682 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003683 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003684 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3685 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003686
3687 boolean hasVisibleActivities = false;
3688
3689 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003690 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003691 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3692 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003693 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3694 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3695 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3696 final ActivityRecord r = activities.get(activityNdx);
3697 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003698 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3699 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003700 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003701 if (r.visible) {
3702 hasVisibleActivities = true;
3703 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003704 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003705 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3706 // Don't currently have state for the activity, or
3707 // it is finishing -- always remove it.
3708 remove = true;
3709 } else if (r.launchCount > 2 &&
3710 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3711 // We have launched this activity too many times since it was
3712 // able to run, so give up and remove it.
3713 remove = true;
3714 } else {
3715 // The process may be gone, but the activity lives on!
3716 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003717 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003718 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003719 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3720 "Removing activity " + r + " from stack at " + i
3721 + ": haveState=" + r.haveState
3722 + " stateNotNeeded=" + r.stateNotNeeded
3723 + " finishing=" + r.finishing
3724 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003725 if (!r.finishing) {
3726 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3727 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3728 r.userId, System.identityHashCode(r),
3729 r.task.taskId, r.shortComponentName,
3730 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003731 if (r.state == ActivityState.RESUMED) {
3732 mService.updateUsageStats(r, false);
3733 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003734 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003735 } else {
3736 // We have the current state for this activity, so
3737 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003738 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3739 if (DEBUG_APP) Slog.v(TAG_APP,
3740 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003741 r.app = null;
3742 r.nowVisible = false;
3743 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003744 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003745 "App died, clearing saved state of " + r);
3746 r.icicle = null;
3747 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003748 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003749 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003750 if (remove) {
3751 removeActivityFromHistoryLocked(r, "appDied");
3752 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003753 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003754 }
3755 }
3756
3757 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003758 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003759
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003760 final void updateTransitLocked(int transit, Bundle options) {
3761 if (options != null) {
3762 ActivityRecord r = topRunningActivityLocked(null);
3763 if (r != null && r.state != ActivityState.RESUMED) {
3764 r.updateOptionsLocked(options);
3765 } else {
3766 ActivityOptions.abort(options);
3767 }
3768 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003769 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003770 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003771
Craig Mautner21d24a22014-04-23 11:45:37 -07003772 void updateTaskMovement(TaskRecord task, boolean toFront) {
3773 if (task.isPersistable) {
3774 task.mLastTimeMoved = System.currentTimeMillis();
3775 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3776 // recently will be most negative, tasks sent to the bottom before that will be less
3777 // negative. Similarly for recent tasks moved to the top which will be most positive.
3778 if (!toFront) {
3779 task.mLastTimeMoved *= -1;
3780 }
3781 }
3782 }
3783
Craig Mautner84984fa2014-06-19 11:19:20 -07003784 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003785 final int top = mTaskHistory.size() - 1;
3786 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3787 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003788 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003789 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3790 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003791 mTaskHistory.remove(taskNdx);
3792 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003793 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003794 return;
3795 }
3796 }
3797 }
3798
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003799 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003800 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003801 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003802
Craig Mautner11bf9a52013-02-19 14:08:51 -08003803 final int numTasks = mTaskHistory.size();
3804 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003805 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003806 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003807 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003808 ActivityOptions.abort(options);
3809 } else {
3810 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3811 }
3812 return;
3813 }
3814
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003815 if (timeTracker != null) {
3816 // The caller wants a time tracker associated with this task.
3817 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
3818 tr.mActivities.get(i).appTimeTracker = timeTracker;
3819 }
3820 }
3821
Craig Mautner11bf9a52013-02-19 14:08:51 -08003822 // Shift all activities with this task up to the top
3823 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07003824 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003825
Chong Zhang45c25ce2015-08-10 22:18:26 -07003826 // Don't refocus if invisible to current user
3827 ActivityRecord top = tr.getTopActivity();
3828 if (!okToShowLocked(top)) {
3829 addRecentActivityLocked(top);
3830 ActivityOptions.abort(options);
3831 return;
3832 }
3833
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003834 // Set focus to the top running activity of this stack.
3835 ActivityRecord r = topRunningActivityLocked(null);
3836 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003837
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003838 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003839 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003840 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003841 if (r != null) {
3842 mNoAnimActivities.add(r);
3843 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003844 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003845 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003846 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003847 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003848
Craig Mautner05d29032013-05-03 13:40:13 -07003849 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003850 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003851
3852 if (VALIDATE_TOKENS) {
3853 validateAppTokensLocked();
3854 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003855 }
3856
3857 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003858 * Worker method for rearranging history stack. Implements the function of moving all
3859 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003860 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003861 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003862 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3863 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003864 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003865 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003866 * @return Returns true if the move completed, false if not.
3867 */
Craig Mautner299f9602015-01-26 09:47:33 -08003868 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003869 final TaskRecord tr = taskForIdLocked(taskId);
3870 if (tr == null) {
3871 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3872 return false;
3873 }
3874
3875 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07003876 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003877
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003878 // If we have a watcher, preflight the move before committing to it. First check
3879 // for *other* available tasks, but if none are available, then try again allowing the
3880 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003881 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003882 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003883 if (next == null) {
3884 next = topRunningActivityLocked(null, 0);
3885 }
3886 if (next != null) {
3887 // ask watcher if this is allowed
3888 boolean moveOK = true;
3889 try {
3890 moveOK = mService.mController.activityResuming(next.packageName);
3891 } catch (RemoteException e) {
3892 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003893 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003894 }
3895 if (!moveOK) {
3896 return false;
3897 }
3898 }
3899 }
3900
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003901 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003902
riddle_hsuc215a4f2014-12-27 12:10:45 +08003903 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07003904
3905 // If true, we should resume the home activity next if the task we are moving to the
3906 // back is over the home stack. We force to false if the task we are moving to back
3907 // is the home task and we don't want it resumed after moving to the back.
3908 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
3909 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08003910 final TaskRecord nextTask = getNextTask(tr);
3911 if (nextTask != null) {
3912 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3913 } else {
3914 prevIsHome = true;
3915 }
3916 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003917 mTaskHistory.remove(tr);
3918 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003919 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003920
Craig Mautnerc8143c62013-09-03 12:15:57 -07003921 // There is an assumption that moving a task to the back moves it behind the home activity.
3922 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003923 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003924 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3925 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003926 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003927 break;
3928 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003929 if (taskNdx == 1) {
3930 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003931 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003932 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003933 }
3934
Craig Mautner299f9602015-01-26 09:47:33 -08003935 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003936 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003937
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003938 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003939 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003940 }
3941
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003942 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07003943 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003944 if (!mService.mBooting && !mService.mBooted) {
3945 // Not ready yet!
3946 return false;
3947 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003948 final int taskToReturnTo = tr.getTaskToReturnTo();
3949 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003950 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003951 }
3952
Craig Mautner05d29032013-05-03 13:40:13 -07003953 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003954 return true;
3955 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003956
Craig Mautner8849a5e2013-04-02 16:41:03 -07003957 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003958 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003959 final Uri data = r.intent.getData();
3960 final String strData = data != null ? data.toSafeString() : null;
3961
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003962 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003963 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003964 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003965 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003966 }
3967
3968 /**
3969 * Make sure the given activity matches the current configuration. Returns
3970 * false if the activity had to be destroyed. Returns true if the
3971 * configuration is the same, or the activity will remain running as-is
3972 * for whatever reason. Ensures the HistoryRecord is updated with the
3973 * correct configuration and all other bookkeeping is handled.
3974 */
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07003975 final boolean ensureActivityConfigurationLocked(ActivityRecord r, int globalChanges,
3976 boolean preserveWindow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003977 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003978 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003979 "Skipping config check (will change): " + r);
3980 return true;
3981 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003982
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003983 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003984 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003985
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003986 // Short circuit: if the two configurations are the exact same
3987 // object (the common case), then there is nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003988 final Configuration newConfig = mService.mConfiguration;
3989 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003990 if (r.configuration == newConfig
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003991 && r.taskConfigOverride == taskConfig
Wale Ogunwale60454db2015-01-23 16:05:07 -08003992 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003993 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003994 "Configuration unchanged in " + r);
3995 return true;
3996 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003997
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003998 // We don't worry about activities that are finishing.
3999 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004000 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004001 "Configuration doesn't matter in finishing " + r);
4002 r.stopFreezingScreenLocked(false);
4003 return true;
4004 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004005
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004006 // Okay we now are going to make this activity have the new config.
4007 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08004008 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004009 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004010 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004011 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004012
Filip Gruszczynski23493322015-07-29 17:02:59 -07004013 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004014 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004015 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004016 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004017 "Configuration no differences in " + r);
4018 return true;
4019 }
4020
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004021 // If the activity isn't currently running, just leave the new
4022 // configuration and it will pick that up next time it starts.
4023 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004024 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004025 "Configuration doesn't matter not running " + r);
4026 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004027 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004028 return true;
4029 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004030
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004031 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004032 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4033 "Checking to restart " + r.info.name + ": changed=0x"
4034 + Integer.toHexString(changes) + ", handles=0x"
4035 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig);
4036
Dianne Hackborne6676352011-06-01 16:51:20 -07004037 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004038 // Aha, the activity isn't handling the change, so DIE DIE DIE.
4039 r.configChangeFlags |= changes;
4040 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004041 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004042 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004043 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004044 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004045 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004046 } else if (r.state == ActivityState.PAUSING) {
4047 // A little annoying: we are waiting for this activity to
4048 // finish pausing. Let's not do anything now, but just
4049 // flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004050 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004051 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004052 r.configDestroy = true;
4053 return true;
4054 } else if (r.state == ActivityState.RESUMED) {
4055 // Try to optimize this case: the configuration is changing
4056 // and we need to restart the top, resumed activity.
4057 // Instead of doing the normal handshaking, just say
4058 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004059 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004060 "Config is relaunching resumed " + r);
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004061 relaunchActivityLocked(r, r.configChangeFlags, true,
4062 preserveWindow && isResizeOnlyChange(changes));
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004063 r.configChangeFlags = 0;
4064 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004065 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004066 "Config is relaunching non-resumed " + r);
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004067 relaunchActivityLocked(r, r.configChangeFlags, false,
4068 preserveWindow && isResizeOnlyChange(changes));
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004069 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004070 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004071
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004072 // All done... tell the caller we weren't able to keep this
4073 // activity around.
4074 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004075 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004076
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004077 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004078 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004079 // changes is always sent to all processes when they happen so it can just use whatever
4080 // system level configuration it last got.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004081 if (r.app != null && r.app.thread != null) {
4082 try {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004083 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Sending new config to " + r);
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004084 r.app.thread.scheduleActivityConfigurationChanged(
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004085 r.appToken, new Configuration(taskConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004086 } catch (RemoteException e) {
4087 // If process died, whatever.
4088 }
4089 }
4090 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004091
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004092 return true;
4093 }
4094
Filip Gruszczynski23493322015-07-29 17:02:59 -07004095 private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4096 Configuration oldTaskOverride) {
4097 // Determine what has changed. May be nothing, if this is a config
4098 // that has come back from the app after going idle. In that case
4099 // we just want to leave the official config object now in the
4100 // activity and do nothing else.
4101 int taskChanges = oldTaskOverride.diff(taskConfig);
4102 // We don't want to use size changes if they don't cross boundaries that are important to
4103 // the app.
4104 if ((taskChanges & ActivityInfo.CONFIG_SCREEN_SIZE) != 0) {
4105 final boolean crosses = record.crossesHorizontalSizeThreshold(
4106 oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4107 || record.crossesVerticalSizeThreshold(
4108 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4109 if (!crosses) {
4110 taskChanges &= ~ActivityInfo.CONFIG_SCREEN_SIZE;
4111 }
4112 }
4113 if ((taskChanges & ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
4114 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4115 final int newSmallest = taskConfig.smallestScreenWidthDp;
4116 final boolean crosses = record.crossesHorizontalSizeThreshold(oldSmallest, newSmallest)
4117 || record.crossesVerticalSizeThreshold(oldSmallest, newSmallest);
4118 if (!crosses) {
4119 taskChanges &= ~ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
4120 }
4121 }
4122 return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4123 }
4124
4125 private static int catchConfigChangesFromUnset(Configuration taskConfig,
4126 Configuration oldTaskOverride, int taskChanges) {
4127 if (taskChanges == 0) {
4128 // {@link Configuration#diff} doesn't catch changes from unset values.
4129 // Check for changes we care about.
4130 if (oldTaskOverride.orientation != taskConfig.orientation) {
4131 taskChanges |= ActivityInfo.CONFIG_ORIENTATION;
4132 }
4133 // We want to explicitly track situations where the size configuration goes from
4134 // undefined to defined. We don't care about crossing the threshold in that case,
4135 // because there is no threshold.
4136 final int oldHeight = oldTaskOverride.screenHeightDp;
4137 final int newHeight = taskConfig.screenHeightDp;
4138 final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4139 if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4140 || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
4141 taskChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
4142 }
4143 final int oldWidth = oldTaskOverride.screenWidthDp;
4144 final int newWidth = taskConfig.screenWidthDp;
4145 final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4146 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4147 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
4148 taskChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
4149 }
4150 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4151 final int newSmallest = taskConfig.smallestScreenWidthDp;
4152 final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4153 if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4154 || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
4155 taskChanges |= ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
4156 }
4157 }
4158 return taskChanges;
4159 }
4160
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004161 private static boolean isResizeOnlyChange(int change) {
4162 return (change & ~(ActivityInfo.CONFIG_SCREEN_SIZE
4163 | ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE | ActivityInfo.CONFIG_ORIENTATION)) == 0;
4164 }
4165
4166 private boolean relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume,
4167 boolean preserveWindow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004168 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004169 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004170 if (andResume) {
4171 results = r.results;
4172 newIntents = r.newIntents;
4173 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004174 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4175 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004176 + " andResume=" + andResume + " preserveWindow=" + preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004177 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004178 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004179 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004180
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004181 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004182
Craig Mautner34b73df2014-01-12 21:11:08 -08004183 mStackSupervisor.removeChildActivityContainers(r);
4184
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004185 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004186 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
4187 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004188 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004189 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4190 !andResume, new Configuration(mService.mConfiguration),
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004191 new Configuration(r.task.mOverrideConfig), preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004192 // Note: don't need to call pauseIfSleepingLocked() here, because
4193 // the caller will only pass in 'andResume' if this activity is
4194 // currently resumed, which implies we aren't sleeping.
4195 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004196 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004197 }
4198
4199 if (andResume) {
4200 r.results = null;
4201 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004202 r.state = ActivityState.RESUMED;
4203 } else {
4204 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4205 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004206 }
4207
4208 return true;
4209 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004210
4211 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004212 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4213 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4214 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4215 final ActivityRecord r = activities.get(activityNdx);
4216 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004217 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004218 }
4219 if (r.fullscreen && !r.finishing) {
4220 return false;
4221 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004222 }
4223 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004224 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004225 if (r == null) {
4226 return false;
4227 }
4228 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4229 + " would have returned true for r=" + r);
4230 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004231 }
4232
4233 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004234 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4235 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4236 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4237 final ActivityRecord r = activities.get(activityNdx);
4238 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004239 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004240 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004241 }
4242 }
4243 }
4244
Wale Ogunwale540e1232015-05-01 15:35:39 -07004245 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4246 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004247 boolean didSomething = false;
4248 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004249 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004250 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4251 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4252 int numActivities = activities.size();
4253 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4254 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004255 final boolean sameComponent =
4256 (r.packageName.equals(packageName) && (filterByClasses == null
4257 || filterByClasses.contains(r.realActivity.getClassName())))
4258 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004259 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004260 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004261 && (r.app == null || evenPersistent || !r.app.persistent)) {
4262 if (!doit) {
4263 if (r.finishing) {
4264 // If this activity is just finishing, then it is not
4265 // interesting as far as something to stop.
4266 continue;
4267 }
4268 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004269 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004270 if (r.isHomeActivity()) {
4271 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4272 Slog.i(TAG, "Skip force-stop again " + r);
4273 continue;
4274 } else {
4275 homeActivity = r.realActivity;
4276 }
4277 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004278 didSomething = true;
4279 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004280 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004281 if (r.app != null) {
4282 r.app.removed = true;
4283 }
4284 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004285 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004286 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004287 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4288 true)) {
4289 // r has been deleted from mActivities, accommodate.
4290 --numActivities;
4291 --activityNdx;
4292 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004293 }
4294 }
4295 }
4296 return didSomething;
4297 }
4298
Dianne Hackborn09233282014-04-30 11:33:59 -07004299 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004300 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4301 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004302 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004303 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004304 if (task.getTopActivity() == null) {
4305 continue;
4306 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004307 ActivityRecord r = null;
4308 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004309 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004310 int numActivities = 0;
4311 int numRunning = 0;
4312 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004313 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004314 continue;
4315 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004316 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004317 tmp = activities.get(activityNdx);
4318 if (tmp.finishing) {
4319 continue;
4320 }
4321 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004322
Craig Mautneraab647e2013-02-28 16:31:36 -08004323 // Initialize state for next task if needed.
4324 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4325 top = r;
4326 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004327 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004328
4329 // Add 'r' into the current task.
4330 numActivities++;
4331 if (r.app != null && r.app.thread != null) {
4332 numRunning++;
4333 }
4334
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004335 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004336 TAG, r.intent.getComponent().flattenToShortString()
4337 + ": task=" + r.task);
4338 }
4339
4340 RunningTaskInfo ci = new RunningTaskInfo();
4341 ci.id = task.taskId;
4342 ci.baseActivity = r.intent.getComponent();
4343 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004344 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004345 if (focusedStack && topTask) {
4346 // Give the latest time to ensure foreground task can be sorted
4347 // at the first, because lastActiveTime of creating task is 0.
4348 ci.lastActiveTime = System.currentTimeMillis();
4349 topTask = false;
4350 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004351
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004352 if (top.task != null) {
4353 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004354 }
4355 ci.numActivities = numActivities;
4356 ci.numRunning = numRunning;
Craig Mautneraab647e2013-02-28 16:31:36 -08004357 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004358 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004359 }
4360
4361 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004362 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004363 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004364 if (top >= 0) {
4365 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4366 int activityTop = activities.size() - 1;
4367 if (activityTop > 0) {
4368 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4369 "unhandled-back", true);
4370 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004371 }
4372 }
4373
Craig Mautner6b74cb52013-09-27 17:02:21 -07004374 /**
4375 * Reset local parameters because an app's activity died.
4376 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004377 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004378 */
4379 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004380 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004381 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004382 "App died while pausing: " + mPausingActivity);
4383 mPausingActivity = null;
4384 }
4385 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4386 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004387 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004388 }
4389
Craig Mautner19091252013-10-05 00:03:53 -07004390 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004391 }
4392
Craig Mautnercae015f2013-02-08 14:31:27 -08004393 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004394 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4395 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4396 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4397 final ActivityRecord r = activities.get(activityNdx);
4398 if (r.app == app) {
4399 Slog.w(TAG, " Force finishing activity "
4400 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004401 // Force the destroy to skip right to removal.
4402 r.app = null;
4403 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004404 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004405 }
4406 }
4407 }
4408
Dianne Hackborn390517b2013-05-30 15:03:32 -07004409 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004410 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004411 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004412 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4413 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004414 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4415 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004416 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07004417 " Task id #" + task.taskId + "\n" +
4418 " mFullscreen=" + task.mFullscreen + "\n" +
4419 " mBounds=" + task.mBounds + "\n" +
4420 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004421 if (printed) {
4422 header = null;
4423 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004424 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004425 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004426 }
4427
4428 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4429 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4430
4431 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004432 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4433 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004434 }
4435 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004436 final int top = mTaskHistory.size() - 1;
4437 if (top >= 0) {
4438 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4439 int listTop = list.size() - 1;
4440 if (listTop >= 0) {
4441 activities.add(list.get(listTop));
4442 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004443 }
4444 } else {
4445 ItemMatcher matcher = new ItemMatcher();
4446 matcher.build(name);
4447
Craig Mautneraab647e2013-02-28 16:31:36 -08004448 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4449 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4450 if (matcher.match(r1, r1.intent.getComponent())) {
4451 activities.add(r1);
4452 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004453 }
4454 }
4455 }
4456
4457 return activities;
4458 }
4459
4460 ActivityRecord restartPackage(String packageName) {
4461 ActivityRecord starting = topRunningActivityLocked(null);
4462
4463 // All activities that came from the package must be
4464 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004465 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4466 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4467 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4468 final ActivityRecord a = activities.get(activityNdx);
4469 if (a.info.packageName.equals(packageName)) {
4470 a.forceNewConfig = true;
4471 if (starting != null && a == starting && a.visible) {
4472 a.startFreezingScreenLocked(starting.app,
4473 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4474 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004475 }
4476 }
4477 }
4478
4479 return starting;
4480 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004481
Craig Mautner299f9602015-01-26 09:47:33 -08004482 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale040b4702015-08-06 18:10:50 -07004483 removeTask(task, reason, !MOVING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004484 }
4485
Wale Ogunwale000957c2015-04-03 08:19:12 -07004486 /**
4487 * Removes the input task from this stack.
4488 * @param task to remove.
4489 * @param reason for removal.
Wale Ogunwale040b4702015-08-06 18:10:50 -07004490 * @param moving task to another stack. In the case we are moving we don't want to perform
4491 * some operations on the task like removing it from window manager or recents.
Wale Ogunwale000957c2015-04-03 08:19:12 -07004492 */
Wale Ogunwale040b4702015-08-06 18:10:50 -07004493 void removeTask(TaskRecord task, String reason, boolean moving) {
4494 if (!moving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004495 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004496 mWindowManager.removeTask(task.taskId);
4497 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004498
Craig Mautner04a0ea62014-01-13 12:51:26 -08004499 final ActivityRecord r = mResumedActivity;
4500 if (r != null && r.task == task) {
4501 mResumedActivity = null;
4502 }
4503
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004504 final int taskNdx = mTaskHistory.indexOf(task);
4505 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004506 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4507 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4508 if (!nextTask.isOverHomeStack()) {
4509 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4510 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004511 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004512 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004513 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004514
Wale Ogunwale040b4702015-08-06 18:10:50 -07004515 if (!moving && task.mActivities.isEmpty()) {
Craig Mautner41db4a72014-05-07 17:20:56 -07004516 final boolean isVoiceSession = task.voiceSession != null;
4517 if (isVoiceSession) {
4518 try {
4519 task.voiceSession.taskFinished(task.intent, task.taskId);
4520 } catch (RemoteException e) {
4521 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004522 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004523 if (task.autoRemoveFromRecents() || isVoiceSession) {
4524 // Task creator asked to remove this when done, or this task was a voice
4525 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004526 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004527 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004528 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004529 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004530
4531 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004532 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Craig Mautner04a0ea62014-01-13 12:51:26 -08004533 if (isOnHomeDisplay()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004534 String myReason = reason + " leftTaskHistoryEmpty";
4535 if (mFullscreen || !adjustFocusToNextVisibleStackLocked(null, myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004536 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004537 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004538 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004539 if (mStacks != null) {
4540 mStacks.remove(this);
4541 mStacks.add(0, this);
4542 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004543 if (!isHomeStack()) {
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004544 mActivityContainer.onTaskListEmptyLocked();
4545 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004546 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004547
4548 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004549 }
4550
Dianne Hackborn91097de2014-04-04 18:02:06 -07004551 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4552 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4553 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004554 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4555 voiceInteractor);
Chong Zhang0fa656b2015-08-31 15:17:21 -07004556 // add the task to stack first, mTaskPositioner might need the stack association
4557 addTask(task, toTop, false);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004558 if (mTaskPositioner != null) {
Filip Gruszczynski9b1ce522015-08-20 18:37:19 -07004559 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, info.initialLayout);
Wale Ogunwalea6e902e2015-09-21 18:37:15 -07004560 } else if (mBounds != null && task.mResizeable) {
4561 task.updateOverrideConfiguration(mBounds);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004562 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004563 return task;
4564 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004565
4566 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004567 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004568 }
4569
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004570 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004571 task.stack = this;
4572 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004573 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004574 } else {
4575 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004576 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004577 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004578 if (!moving && task.voiceSession != null) {
4579 try {
4580 task.voiceSession.taskStarted(task.intent, task.taskId);
4581 } catch (RemoteException e) {
4582 }
4583 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004584 }
4585
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004586 void positionTask(final TaskRecord task, int position, boolean moving) {
4587 task.stack = this;
4588 insertTaskAtPosition(task, position);
4589 if (!moving && task.voiceSession != null) {
4590 try {
4591 task.voiceSession.taskStarted(task.intent, task.taskId);
4592 } catch (RemoteException e) {
4593 }
4594 }
4595 }
4596
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004597 void addConfigOverride(ActivityRecord r, TaskRecord task) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07004598 final Rect bounds = task.getLaunchBounds();
Chong Zhang0fa656b2015-08-31 15:17:21 -07004599 task.updateOverrideConfiguration(bounds);
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07004600 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
4601 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
4602 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId,
4603 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind,
Wale Ogunwale61b009e2015-09-16 15:43:05 -07004604 bounds, task.mOverrideConfig, !r.isHomeActivity());
Wale Ogunwale706ed792015-08-02 10:29:44 -07004605 r.taskConfigOverride = task.mOverrideConfig;
4606 }
4607
4608 private void setAppTask(ActivityRecord r, TaskRecord task) {
4609 final Rect bounds = task.getLaunchBounds();
Chong Zhang0fa656b2015-08-31 15:17:21 -07004610 task.updateOverrideConfiguration(bounds);
4611 mWindowManager.setAppTask(
4612 r.appToken, task.taskId, task.getLaunchBounds(), task.mOverrideConfig);
Wale Ogunwale706ed792015-08-02 10:29:44 -07004613 r.taskConfigOverride = task.mOverrideConfig;
4614 }
4615
Craig Mautnerc00204b2013-03-05 15:02:14 -08004616 public int getStackId() {
4617 return mStackId;
4618 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004619
4620 @Override
4621 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004622 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4623 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004624 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004625
Craig Mautner15df08a2015-04-01 12:17:18 -07004626 void onLockTaskPackagesUpdatedLocked() {
4627 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4628 mTaskHistory.get(taskNdx).setLockTaskAuth();
4629 }
4630 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004631}