blob: 37ddd4df7ffb0760b29d5f855cfcff2261e67664 [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 Ogunwale61803ee2015-08-07 19:59:47 -070020import static android.app.ActivityManager.FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -070021import static android.app.ActivityManager.FULLSCREEN_WORKSPACE_STACK_ID;
22import static android.app.ActivityManager.HOME_STACK_ID;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070023import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -070024
Wale Ogunwalee23149f2015-03-06 15:39:44 -080025import static com.android.server.am.ActivityManagerDebugConfig.*;
Craig Mautner0eea92c2013-05-16 13:35:39 -070026
Craig Mautner84984fa2014-06-19 11:19:20 -070027import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
28import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070029
Wale Ogunwale040b4702015-08-06 18:10:50 -070030import static com.android.server.am.ActivityStackSupervisor.MOVING;
31
Wale Ogunwale706ed792015-08-02 10:29:44 -070032import android.graphics.Rect;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070033import android.util.ArraySet;
Wale Ogunwale706ed792015-08-02 10:29:44 -070034import android.view.IApplicationToken;
Dianne Hackborn91097de2014-04-04 18:02:06 -070035import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080036import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070037import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070038import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080039import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080040import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080041import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080042import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070043import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070044
45import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070046import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070047import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070048import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080049import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070050import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080051import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070052import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070053import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080057import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080058import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070059import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070060import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080061import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070062import android.os.Handler;
63import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090064import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070065import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070066import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.os.RemoteException;
68import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080069import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070070import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070071import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070072import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070073import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070074import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070075
Craig Mautnercae015f2013-02-08 14:31:27 -080076import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080077import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import java.lang.ref.WeakReference;
79import java.util.ArrayList;
80import java.util.Iterator;
81import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080082import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070083import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070084
85/**
86 * State and management of a single stack of activities.
87 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070088final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080089
Wale Ogunwalee23149f2015-03-06 15:39:44 -080090 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070091 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
92 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080093 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070094 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070095 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070096 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070097 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070098 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070099 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
100 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700101 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700102 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700103 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
104 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
105 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
106 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
107 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700108
109 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800110
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700111 // Ticks during which we check progress while waiting for an app to launch.
112 static final int LAUNCH_TICK = 500;
113
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700114 // How long we wait until giving up on the last activity to pause. This
115 // is short because it directly impacts the responsiveness of starting the
116 // next activity.
117 static final int PAUSE_TIMEOUT = 500;
118
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700119 // How long we wait for the activity to tell us it has stopped before
120 // giving up. This is a good amount of time because we really need this
121 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700122 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700123
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700124 // How long we wait until giving up on an activity telling us it has
125 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700126 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800127
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700128 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800129 // disabled.
130 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800131
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700132 // How long between activity launches that we consider safe to not warn
133 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700134 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800135
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700136 // Set to false to disable the preview that is shown while a new activity
137 // is being started.
138 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800139
Craig Mautner5eda9b32013-07-02 11:58:16 -0700140 // How long to wait for all background Activities to redraw following a call to
141 // convertToTranslucent().
142 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
143
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700144 enum ActivityState {
145 INITIALIZING,
146 RESUMED,
147 PAUSING,
148 PAUSED,
149 STOPPING,
150 STOPPED,
151 FINISHING,
152 DESTROYING,
153 DESTROYED
154 }
155
156 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700157 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800158 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800159
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700160 /**
161 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800162 * running) activities. It contains #TaskRecord objects.
163 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800164 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800165
166 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800167 * Used for validating app tokens with window manager.
168 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800169 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800170
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700171 /**
172 * List of running activities, sorted by recent usage.
173 * The first entry in the list is the least recently used.
174 * It contains HistoryRecord objects.
175 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800176 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700177
178 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700179 * Animations that for the current transition have requested not to
180 * be considered for the transition animation.
181 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800182 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700183
184 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700185 * When we are in the process of pausing an activity, before starting the
186 * next one, this variable holds the activity that is currently being paused.
187 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800188 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700189
190 /**
191 * This is the last activity that we put into the paused state. This is
192 * used to determine if we need to do an activity transition while sleeping,
193 * when we normally hold the top activity paused.
194 */
195 ActivityRecord mLastPausedActivity = null;
196
197 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700198 * Activities that specify No History must be removed once the user navigates away from them.
199 * If the device goes to sleep with such an activity in the paused state then we save it here
200 * and finish it later if another activity replaces it on wakeup.
201 */
202 ActivityRecord mLastNoHistoryActivity = null;
203
204 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700205 * Current activity that is resumed, or null if there is none.
206 */
207 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800208
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700209 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700210 * This is the last activity that has been started. It is only used to
211 * identify when multiple activities are started at once so that the user
212 * can be warned they may not be in the activity they think they are.
213 */
214 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800215
Craig Mautner5eda9b32013-07-02 11:58:16 -0700216 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
217 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
218 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
219 // Activity in mTranslucentActivityWaiting is notified via
220 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
221 // background activity being drawn then the same call will be made with a true value.
222 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700223 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700224
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700225 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700226 * Set when we know we are going to be calling updateConfiguration()
227 * soon, so want to skip intermediate config checks.
228 */
229 boolean mConfigWillChange;
230
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700231 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800232 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700233 // Current bounds of the stack or null if fullscreen.
234 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800235
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700236 long mLaunchStartTime = 0;
237 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800238
Craig Mautner858d8a62013-04-23 17:08:34 -0700239 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700240
Craig Mautnerc00204b2013-03-05 15:02:14 -0800241 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800242 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800243 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
244 ArrayList<ActivityStack> mStacks;
245 /** The attached Display's unique identifier, or -1 if detached */
246 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800247
Craig Mautner27084302013-03-25 08:05:25 -0700248 /** Run all ActivityStacks through this */
249 final ActivityStackSupervisor mStackSupervisor;
250
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700251 private final LaunchingTaskPositioner mTaskPositioner;
252
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700253 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700254 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
255 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
256 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
257 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700258 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700259 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700260 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700261
262 static class ScheduleDestroyArgs {
263 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700264 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700265 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700266 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700267 mReason = reason;
268 }
269 }
270
Zoran Marcetaf958b322012-08-09 20:27:12 +0900271 final Handler mHandler;
272
273 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800274
Craig Mautnerc8143c62013-09-03 12:15:57 -0700275 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900276 super(looper);
277 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700278
Zoran Marcetaf958b322012-08-09 20:27:12 +0900279 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700280 public void handleMessage(Message msg) {
281 switch (msg.what) {
282 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800283 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700284 // We don't at this point know if the activity is fullscreen,
285 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800286 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700287 synchronized (mService) {
288 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700289 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700290 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700291 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800292 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700293 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700294 case LAUNCH_TICK_MSG: {
295 ActivityRecord r = (ActivityRecord)msg.obj;
296 synchronized (mService) {
297 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700298 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700299 }
300 }
301 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700302 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800303 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700304 // We don't at this point know if the activity is fullscreen,
305 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800306 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800307 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800308 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800309 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700310 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700311 case STOP_TIMEOUT_MSG: {
312 ActivityRecord r = (ActivityRecord)msg.obj;
313 // We don't at this point know if the activity is fullscreen,
314 // so we need to be conservative and assume it isn't.
315 Slog.w(TAG, "Activity stop timeout for " + r);
316 synchronized (mService) {
317 if (r.isInHistory()) {
318 activityStoppedLocked(r, null, null, null);
319 }
320 }
321 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700322 case DESTROY_ACTIVITIES_MSG: {
323 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
324 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700325 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700326 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700327 } break;
328 case TRANSLUCENT_TIMEOUT_MSG: {
329 synchronized (mService) {
330 notifyActivityDrawnLocked(null);
331 }
332 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700333 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700334 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700335 final ActivityRecord r = getVisibleBehindActivity();
336 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700337 if (r != null) {
338 mService.killAppAtUsersRequest(r.app, null);
339 }
340 }
341 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700342 }
343 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800344 }
345
Craig Mautner34b73df2014-01-12 21:11:08 -0800346 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800347 int count = 0;
348 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
349 count += mTaskHistory.get(taskNdx).mActivities.size();
350 }
351 return count;
352 }
353
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800354 int numTasks() {
355 return mTaskHistory.size();
356 }
357
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800358 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
359 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800360 mActivityContainer = activityContainer;
361 mStackSupervisor = activityContainer.getOuter();
362 mService = mStackSupervisor.mService;
363 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
364 mWindowManager = mService.mWindowManager;
365 mStackId = activityContainer.mStackId;
366 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800367 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700368 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
369 ? new LaunchingTaskPositioner() : null;
370 }
371
372 void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
373 mDisplayId = activityDisplay.mDisplayId;
374 mStacks = activityDisplay.mStacks;
375 mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
376 mFullscreen = mBounds == null;
377 if (mTaskPositioner != null) {
378 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
379 mTaskPositioner.configure(mBounds);
380 }
381 }
382
383 void detachDisplay() {
384 mDisplayId = Display.INVALID_DISPLAY;
385 mStacks = null;
386 if (mTaskPositioner != null) {
387 mTaskPositioner.reset();
388 }
389 mWindowManager.detachStack(mStackId);
390 }
391
392 void setBounds(Rect bounds) {
393 mBounds = mFullscreen ? null : new Rect(bounds);
394 mTaskPositioner.configure(bounds);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700395 }
Craig Mautner5962b122012-10-05 14:45:52 -0700396
Amith Yamasani734983f2014-03-04 16:48:05 -0800397 boolean okToShowLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700398 return mStackSupervisor.okToShowLocked(r);
Craig Mautner5962b122012-10-05 14:45:52 -0700399 }
400
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700401 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800402 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700403 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
404 if (r != null) {
405 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800406 }
407 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700408 return null;
409 }
410
411 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800412 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
413 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800414 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800415 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
416 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800417 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800418 return r;
419 }
420 }
421 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700422 return null;
423 }
424
425 /**
426 * This is a simplified version of topRunningActivityLocked that provides a number of
427 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800428 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700429 * @param token If non-null, any history records matching this token will be skipped.
430 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800431 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700432 * @return Returns the HistoryRecord of the next activity on the stack.
433 */
434 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800435 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
436 TaskRecord task = mTaskHistory.get(taskNdx);
437 if (task.taskId == taskId) {
438 continue;
439 }
440 ArrayList<ActivityRecord> activities = task.mActivities;
441 for (int i = activities.size() - 1; i >= 0; --i) {
442 final ActivityRecord r = activities.get(i);
443 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800444 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800445 return r;
446 }
447 }
448 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700449 return null;
450 }
451
Craig Mautner8849a5e2013-04-02 16:41:03 -0700452 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700453 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
454 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700455 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
456 final ActivityRecord r = activities.get(activityNdx);
457 if (!r.finishing) {
458 return r;
459 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700460 }
461 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700462 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700463 }
464
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700465 final TaskRecord topTask() {
466 final int size = mTaskHistory.size();
467 if (size > 0) {
468 return mTaskHistory.get(size - 1);
469 }
470 return null;
471 }
472
Craig Mautnerd2328952013-03-05 12:46:26 -0800473 TaskRecord taskForIdLocked(int id) {
474 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
475 final TaskRecord task = mTaskHistory.get(taskNdx);
476 if (task.taskId == id) {
477 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800478 }
479 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700480 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700481 }
482
Craig Mautnerd2328952013-03-05 12:46:26 -0800483 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700484 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800485 return isInStackLocked(r);
486 }
487
488 ActivityRecord isInStackLocked(ActivityRecord r) {
489 if (r == null) {
490 return null;
491 }
492 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700493 if (task != null && task.stack != null
494 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800495 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800496 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800497 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800498 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800499 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800500 }
501
Craig Mautner2420ead2013-04-01 17:13:20 -0700502 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700503 final boolean hadit = mLRUActivities.remove(r);
504 mLRUActivities.add(r);
505 return hadit;
506 }
507
Craig Mautnerde4ef022013-04-07 19:01:33 -0700508 final boolean isHomeStack() {
509 return mStackId == HOME_STACK_ID;
510 }
511
Craig Mautnere0a38842013-12-16 16:14:02 -0800512 final boolean isOnHomeDisplay() {
513 return isAttached() &&
514 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
515 }
516
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700517 void moveToFront(String reason) {
518 moveToFront(reason, null);
519 }
520
521 /**
522 * @param reason The reason for moving the stack to the front.
523 * @param task If non-null, the task will be moved to the top of the stack.
524 * */
525 void moveToFront(String reason, TaskRecord task) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800526 if (isAttached()) {
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800527 final boolean homeStack = isHomeStack()
528 || (mActivityContainer.mParentActivity != null
529 && mActivityContainer.mParentActivity.isHomeActivity());
530 ActivityStack lastFocusStack = null;
531 if (!homeStack) {
532 // Need to move this stack to the front before calling
533 // {@link ActivityStackSupervisor#moveHomeStack} below.
534 lastFocusStack = mStacks.get(mStacks.size() - 1);
535 mStacks.remove(this);
536 mStacks.add(this);
Wale Ogunwaleaf0e4482015-02-24 12:27:31 -0800537 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700538 // TODO(multi-display): Focus stack currently adjusted in call to move home stack.
539 // Needs to also work if focus is moving to the non-home display.
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800540 if (isOnHomeDisplay()) {
541 mStackSupervisor.moveHomeStack(homeStack, reason, lastFocusStack);
542 }
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700543 if (task != null) {
544 insertTaskAtTop(task, null);
545 } else {
546 task = topTask();
547 }
Craig Mautner6b904ef2014-12-17 15:45:03 -0800548 if (task != null) {
549 mWindowManager.moveTaskToTop(task.taskId);
550 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800551 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800552 }
553
554 final boolean isAttached() {
555 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800556 }
557
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700558 /**
559 * Returns the top activity in any existing task matching the given
560 * Intent. Returns null if no such task is found.
561 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700562 ActivityRecord findTaskLocked(ActivityRecord target) {
563 Intent intent = target.intent;
564 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700565 ComponentName cls = intent.getComponent();
566 if (info.targetActivity != null) {
567 cls = new ComponentName(info.packageName, info.targetActivity);
568 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700569 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700570 boolean isDocument = intent != null & intent.isDocument();
571 // If documentData is non-null then it must match the existing task data.
572 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800573
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700574 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800575 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
576 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700577 if (task.voiceSession != null) {
578 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700579 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700580 continue;
581 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700582 if (task.userId != userId) {
583 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700584 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700585 continue;
586 }
Craig Mautner000f0022013-02-26 15:04:29 -0800587 final ActivityRecord r = task.getTopActivity();
588 if (r == null || r.finishing || r.userId != userId ||
589 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700590 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800591 continue;
592 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700593 if (r.mActivityType != target.mActivityType) {
594 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
595 continue;
596 }
Craig Mautner000f0022013-02-26 15:04:29 -0800597
Craig Mautnerd00f4742014-03-12 14:17:26 -0700598 final Intent taskIntent = task.intent;
599 final Intent affinityIntent = task.affinityIntent;
600 final boolean taskIsDocument;
601 final Uri taskDocumentData;
602 if (taskIntent != null && taskIntent.isDocument()) {
603 taskIsDocument = true;
604 taskDocumentData = taskIntent.getData();
605 } else if (affinityIntent != null && affinityIntent.isDocument()) {
606 taskIsDocument = true;
607 taskDocumentData = affinityIntent.getData();
608 } else {
609 taskIsDocument = false;
610 taskDocumentData = null;
611 }
612
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700613 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700614 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700615 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700616 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700617 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
618 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700619 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700620 return r;
621 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700622 } else if (taskIntent != null && taskIntent.getComponent() != null &&
623 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700624 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700625 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800626 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700627 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
628 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800629 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700630 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
631 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700632 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700633 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800634 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700635 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
636 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800637 return r;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700638 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700639 }
640
641 return null;
642 }
643
644 /**
645 * Returns the first activity (starting from the top of the stack) that
646 * is the same as the given activity. Returns null if no such activity
647 * is found.
648 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700649 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700650 ComponentName cls = intent.getComponent();
651 if (info.targetActivity != null) {
652 cls = new ComponentName(info.packageName, info.targetActivity);
653 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700654 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700655
Craig Mautner000f0022013-02-26 15:04:29 -0800656 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700657 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700658 final boolean notCurrentUserTask =
659 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700660 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700661
Craig Mautner000f0022013-02-26 15:04:29 -0800662 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
663 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700664 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700665 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700666 }
Craig Mautner000f0022013-02-26 15:04:29 -0800667 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700668 return r;
669 }
670 }
671 }
672
673 return null;
674 }
675
Amith Yamasani742a6712011-05-04 14:49:28 -0700676 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700677 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700678 */
Craig Mautner93529a42013-10-04 15:03:13 -0700679 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800680 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700681 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800682 }
683 mCurrentUser = userId;
684
685 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800686 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800687 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700688 final TaskRecord task = mTaskHistory.get(i);
689
690 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
691 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700692 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700693 || task.topRunningActivityLocked(null) != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700694 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700695 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800696 mTaskHistory.remove(i);
697 mTaskHistory.add(task);
698 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800699 // Use same value for i.
700 } else {
701 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800702 }
703 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700704 if (VALIDATE_TOKENS) {
705 validateAppTokensLocked();
706 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700707 }
708
Craig Mautner2420ead2013-04-01 17:13:20 -0700709 void minimalResumeActivityLocked(ActivityRecord r) {
710 r.state = ActivityState.RESUMED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700711 if (DEBUG_STATES) Slog.v(TAG_STATES,
712 "Moving to RESUMED: " + r + " (starting new instance)");
Craig Mautner2420ead2013-04-01 17:13:20 -0700713 r.stopped = false;
714 mResumedActivity = r;
715 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800716 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700717 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700718 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700719 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700720 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
721 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700722 }
723
Chong Zhang45c25ce2015-08-10 22:18:26 -0700724 private void addRecentActivityLocked(ActivityRecord r) {
725 if (r != null) {
726 mRecentTasks.addLocked(r.task);
727 r.task.touchActiveTime();
728 }
729 }
730
Narayan Kamath7829c812015-06-08 17:39:43 +0100731 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700732 if (mFullyDrawnStartTime != 0) {
733 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
734 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100735 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700736 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
737 }
738
739 private void stopFullyDrawnTraceIfNeeded() {
740 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
741 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
742 mFullyDrawnStartTime = 0;
743 }
744 }
745
Craig Mautnere79d42682013-04-01 19:01:53 -0700746 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700747 if (r.displayStartTime == 0) {
748 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
749 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100750 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700751 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700752 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700753 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100754 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700755 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700756 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700757 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800758
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700759 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700760 // Make sure that there is no activity waiting for this to launch.
761 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
762 r.displayStartTime = r.fullyDrawnStartTime = 0;
763 } else {
764 mStackSupervisor.removeTimeoutsForActivityLocked(r);
765 mStackSupervisor.scheduleIdleTimeoutLocked(r);
766 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700767 }
768
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800769 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800770 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800771 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
772 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
773 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
774 activities.get(activityNdx).setSleeping(false);
775 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800776 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800777 if (mPausingActivity != null) {
778 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
779 activityPausedLocked(mPausingActivity.appToken, true);
780 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800781 }
782
Craig Mautner0eea92c2013-05-16 13:35:39 -0700783 /**
784 * @return true if something must be done before going to sleep.
785 */
786 boolean checkReadyForSleepLocked() {
787 if (mResumedActivity != null) {
788 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700789 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
790 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
791 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700792 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700793 return true;
794 }
795 if (mPausingActivity != null) {
796 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700797 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700798 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800799 }
800
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700801 if (hasVisibleBehindActivity()) {
802 // Stop visible behind activity before going to sleep.
803 final ActivityRecord r = mActivityContainer.mActivityDisplay.mVisibleBehindActivity;
804 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700805 if (DEBUG_STATES) Slog.v(TAG_STATES,
806 "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700807 return true;
808 }
809
Craig Mautner0eea92c2013-05-16 13:35:39 -0700810 return false;
811 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800812
Craig Mautner0eea92c2013-05-16 13:35:39 -0700813 void goToSleep() {
814 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800815
Craig Mautner0eea92c2013-05-16 13:35:39 -0700816 // Make sure any stopped but visible activities are now sleeping.
817 // This ensures that the activity's onStop() is called.
818 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
819 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
820 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
821 final ActivityRecord r = activities.get(activityNdx);
822 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
823 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800824 }
825 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800826 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700827 }
Craig Mautner59c00972012-07-30 12:10:24 -0700828
Dianne Hackbornd2835932010-12-13 16:28:46 -0800829 public final Bitmap screenshotActivities(ActivityRecord who) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700830 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800831 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700832 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800833 return null;
834 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800835
Winson Chung083baf92014-07-11 10:32:42 -0700836 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700837 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800838 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700839 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700840 return null;
841 }
842
Winson Chung48a10a52014-08-27 14:36:51 -0700843 int w = mService.mThumbnailWidth;
844 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800845 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700846 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800847 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Dianne Hackborn27eac1d2015-03-16 17:15:53 -0700848 w, h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800849 }
Winson Chung376543b2014-05-21 17:43:28 -0700850 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800851 return null;
852 }
853
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700854 /**
855 * Start pausing the currently resumed activity. It is an error to call this if there
856 * is already an activity being paused or there is no resumed activity.
857 *
858 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
859 * @param uiSleeping True if this is happening with the user interface going to sleep (the
860 * screen turning off).
861 * @param resuming True if this is being called as part of resuming the top activity, so
862 * we shouldn't try to instigate a resume here.
863 * @param dontWait True if the caller does not want to wait for the pause to complete. If
864 * set to true, we will immediately complete the pause here before returning.
865 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
866 * it to tell us when it is done.
867 */
868 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
869 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800870 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800871 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
872 + " state=" + mPausingActivity.state);
873 if (!mService.isSleeping()) {
874 // Avoid recursion among check for sleep and complete pause during sleeping.
875 // Because activity will be paused immediately after resume, just let pause
876 // be completed by the order of activity paused from clients.
877 completePauseLocked(false);
878 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800879 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700880 ActivityRecord prev = mResumedActivity;
881 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700882 if (!resuming) {
883 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
884 mStackSupervisor.resumeTopActivitiesLocked();
885 }
886 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700887 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800888
889 if (mActivityContainer.mParentActivity == null) {
890 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700891 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800892 }
893
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700894 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700895 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700896 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800897 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700898 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700899 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
900 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700901 prev.state = ActivityState.PAUSING;
902 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700903 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700904 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Skuhne17690ff2015-08-27 09:47:20 -0700905 // In freeform mode we only update the thumbnail when there is no thumbnail yet since every
906 // focus change will request a thumbnail to be taken.
907 // Note furthermore that since windows can change their content in freeform mode all the
908 // time a thumbnail is possibly constantly outdated.
909 if (mService.mHasRecents &&
910 (next == null || next.noDisplay || next.task != prev.task || uiSleeping) &&
911 (!prev.task.hasThumbnail() ||
912 prev.task.stack.mStackId != FREEFORM_WORKSPACE_STACK_ID)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800913 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700914 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700915 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700916
917 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800918
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700919 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700920 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700921 try {
922 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700923 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700924 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700925 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800926 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700927 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700928 } catch (Exception e) {
929 // Ignore exception, if process died other code will cleanup.
930 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800931 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700932 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700933 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700934 }
935 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800936 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700937 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700938 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700939 }
940
941 // If we are not going to sleep, we want to ensure the device is
942 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700943 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700944 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700945 }
946
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800947 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700948 // Have the window manager pause its key dispatching until the new
949 // activity has started. If we're pausing the activity just because
950 // the screen is being turned off and the UI is sleeping, don't interrupt
951 // key dispatch; the same activity will pick it up again on wakeup.
952 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800953 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700954 } else if (DEBUG_PAUSE) {
955 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700956 }
957
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700958 if (dontWait) {
959 // If the caller said they don't want to wait for the pause, then complete
960 // the pause now.
961 completePauseLocked(false);
962 return false;
963
964 } else {
965 // Schedule a pause timeout in case the app doesn't respond.
966 // We don't give it much time because this directly impacts the
967 // responsiveness seen by the user.
968 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
969 msg.obj = prev;
970 prev.pauseTime = SystemClock.uptimeMillis();
971 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700972 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700973 return true;
974 }
975
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700976 } else {
977 // This activity failed to schedule the
978 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700979 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700980 if (!resuming) {
981 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
982 }
983 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700984 }
985 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700986
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700987 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700988 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
989 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700990
Craig Mautnerd2328952013-03-05 12:46:26 -0800991 final ActivityRecord r = isInStackLocked(token);
992 if (r != null) {
993 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
994 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700995 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -0800996 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700997 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800998 } else {
999 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1000 r.userId, System.identityHashCode(r), r.shortComponentName,
1001 mPausingActivity != null
1002 ? mPausingActivity.shortComponentName : "(none)");
louis_chang047dfd42015-04-08 16:35:55 +08001003 if (r.finishing && r.state == ActivityState.PAUSING) {
1004 if (DEBUG_PAUSE) Slog.v(TAG,
1005 "Executing finish of failed to pause activity: " + r);
1006 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1007 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001008 }
1009 }
1010 }
1011
Craig Mautnera0026042014-04-23 11:45:37 -07001012 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1013 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07001014 if (r.state != ActivityState.STOPPING) {
1015 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1016 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1017 return;
1018 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001019 if (persistentState != null) {
1020 r.persistentState = persistentState;
1021 mService.notifyTaskPersisterLocked(r.task, false);
1022 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001023 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001024 if (icicle != null) {
1025 // If icicle is null, this is happening due to a timeout, so we
1026 // haven't really saved the state.
1027 r.icicle = icicle;
1028 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -08001029 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -08001030 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001031 }
1032 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001033 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001034 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1035 r.stopped = true;
1036 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -07001037 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
1038 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001039 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001040 if (r.finishing) {
1041 r.clearOptionsLocked();
1042 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001043 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001044 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -07001045 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001046 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001047 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001048 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001049 }
1050 }
1051 }
1052
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001053 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001054 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001055 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001056
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001057 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001058 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001059 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001060 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001061 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001062 } else if (prev.app != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001063 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -08001064 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001065 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1066 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001067 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001068 if (prev.configDestroy) {
1069 // The previous is being paused because the configuration
1070 // is changing, which means it is actually stopping...
1071 // To juggle the fact that we are also starting a new
1072 // instance right now, we need to first completely stop
1073 // the current instance before starting the new one.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001074 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001075 destroyActivityLocked(prev, true, "pause-config");
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001076 } else if (!hasVisibleBehindActivity() || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001077 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001078 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001079 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -07001080 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
1081 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001082 // If we already have a few activities waiting to stop,
1083 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07001084 // them out. Or if r is the last of activity of the last task the stack
1085 // will be empty and must be cleared immediately.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001086 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -07001087 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001088 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001089 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001090 }
1091 }
1092 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001093 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001094 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001095 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001096 // It is possible the activity was freezing the screen before it was paused.
1097 // In that case go ahead and remove the freeze this activity has on the screen
1098 // since it is no longer visible.
1099 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001100 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001101 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001102
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001103 if (resumeNext) {
1104 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1105 if (!mService.isSleepingOrShuttingDown()) {
1106 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1107 } else {
1108 mStackSupervisor.checkReadyForSleepLocked();
1109 ActivityRecord top = topStack.topRunningActivityLocked(null);
1110 if (top == null || (prev != null && top != prev)) {
1111 // If there are no more activities available to run,
1112 // do resume anyway to start something. Also if the top
1113 // activity on the stack is not the just paused activity,
1114 // we need to go ahead and resume it to ensure we complete
1115 // an in-flight app switch.
1116 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1117 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001118 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001119 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001120
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001121 if (prev != null) {
1122 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001123
Craig Mautner525f3d92013-05-07 14:01:50 -07001124 if (prev.app != null && prev.cpuTimeAtResume > 0
1125 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001126 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1127 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001128 if (diff > 0) {
1129 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1130 synchronized (bsi) {
1131 BatteryStatsImpl.Uid.Proc ps =
1132 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001133 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001134 if (ps != null) {
1135 ps.addForegroundTimeLocked(diff);
1136 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001137 }
1138 }
1139 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001140 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001141 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001142
1143 // Notfiy when the task stack has changed
1144 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001145 }
1146
1147 /**
1148 * Once we know that we have asked an application to put an activity in
1149 * the resumed state (either by launching it or explicitly telling it),
1150 * this function updates the rest of our state to match that fact.
1151 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001152 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001153 next.idle = false;
1154 next.results = null;
1155 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001156
1157 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1158 ProcessRecord app = next.task.mActivities.get(0).app;
1159 if (app != null && app != mService.mHomeProcess) {
1160 mService.mHomeProcess = app;
1161 }
1162 }
1163
Craig Mautner07566322013-09-26 16:42:55 -07001164 if (next.nowVisible) {
1165 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001166 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001167 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001168
1169 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001170 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001171
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001172 mStackSupervisor.reportResumedActivityLocked(next);
1173
1174 next.resumeKeyDispatchingLocked();
1175 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001176
1177 // Mark the point when the activity is resuming
1178 // TODO: To be more accurate, the mark should be before the onCreate,
1179 // not after the onResume. But for subsequent starts, onResume is fine.
1180 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001181 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001182 } else {
1183 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1184 }
Winson Chung376543b2014-05-21 17:43:28 -07001185
George Mount6ba042b2014-07-28 11:12:28 -07001186 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001187
1188 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1189 // When resuming an activity, require it to call requestVisibleBehind() again.
1190 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1191 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001192 }
1193
Craig Mautner2568c3a2015-03-26 14:22:34 -07001194 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001195 r.visible = visible;
1196 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001197 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001198 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001199 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001200 container.setVisible(visible);
1201 }
1202 }
1203
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001204 // Find the first visible activity above the passed activity and if it is translucent return it
1205 // otherwise return null;
1206 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1207 TaskRecord task = r.task;
1208 if (task == null) {
1209 return null;
1210 }
1211
1212 ActivityStack stack = task.stack;
1213 if (stack == null) {
1214 return null;
1215 }
1216
1217 int stackNdx = mStacks.indexOf(stack);
1218
1219 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1220 int taskNdx = tasks.indexOf(task);
1221
1222 ArrayList<ActivityRecord> activities = task.mActivities;
1223 int activityNdx = activities.indexOf(r) + 1;
1224
1225 final int numStacks = mStacks.size();
1226 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001227 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001228 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001229 final int numTasks = tasks.size();
1230 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001231 final TaskRecord currentTask = tasks.get(taskNdx);
1232 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001233 final int numActivities = activities.size();
1234 while (activityNdx < numActivities) {
1235 final ActivityRecord activity = activities.get(activityNdx);
1236 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001237 return historyStack.mFullscreen
1238 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001239 }
1240 ++activityNdx;
1241 }
1242 activityNdx = 0;
1243 ++taskNdx;
1244 }
1245 taskNdx = 0;
1246 ++stackNdx;
1247 }
1248
1249 return null;
1250 }
1251
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001252 private ActivityStack getNextVisibleStackLocked() {
1253 ArrayList<ActivityStack> stacks = mStacks;
1254 final ActivityRecord parent = mActivityContainer.mParentActivity;
1255 if (parent != null) {
1256 stacks = parent.task.stack.mStacks;
1257 }
1258 if (stacks != null) {
1259 for (int i = stacks.size() - 1; i >= 0; --i) {
1260 ActivityStack stack = stacks.get(i);
1261 if (stack != this && stack.isStackVisibleLocked()) {
1262 return stack;
1263 }
1264 }
1265 }
1266 return null;
1267 }
1268
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001269 /** Returns true if the stack contains a fullscreen task. */
1270 private boolean hasFullscreenTask() {
1271 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1272 final TaskRecord task = mTaskHistory.get(i);
1273 if (task.mFullscreen) {
1274 return true;
1275 }
1276 }
1277 return false;
1278 }
1279
1280 /** Return true if this stack is hidden by the presence of a docked stack. */
1281 private boolean isHiddenByDockedStack() {
1282 final ActivityStack dockedStack = mStackSupervisor.getStack(DOCKED_STACK_ID);
1283 if (dockedStack != null) {
1284 final int dockedStackIndex = mStacks.indexOf(dockedStack);
1285 final int stackIndex = mStacks.indexOf(this);
1286 if (dockedStackIndex > stackIndex) {
1287 // Fullscreen stacks or stacks with fullscreen task below the docked stack are not
1288 // visible. We do this so we don't have the 2 stacks and their tasks overlap.
1289 if (mFullscreen) {
1290 return true;
1291 }
1292
1293 // We need to also check the tasks in the stack because they can be fullscreen
1294 // even though their stack isn't due to their root activity not been resizeable
1295 // (i.e. doesn't support multi-window mode).
1296 if (hasFullscreenTask()) {
1297 return true;
1298 }
1299 }
1300 }
1301 return false;
1302 }
1303
1304 /** Returns true if the stack is considered visible. */
Todd Kennedyaab56db2015-01-30 09:39:53 -08001305 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001306 if (!isAttached()) {
1307 return false;
1308 }
1309
1310 if (mStackSupervisor.isFrontStack(this)) {
1311 return true;
1312 }
1313
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001314 final int stackIndex = mStacks.indexOf(this);
1315
1316 if (stackIndex == mStacks.size() - 1) {
1317 Slog.wtf(TAG,
1318 "Stack=" + this + " isn't front stack but is at the top of the stack list");
1319 return false;
1320 }
1321
1322 if (isHiddenByDockedStack()) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001323 return false;
1324 }
1325
Jose Lima729cb232014-05-05 15:59:40 -07001326 /**
1327 * Start at the task above this one and go up, looking for a visible
1328 * fullscreen activity, or a translucent activity that requested the
1329 * wallpaper to be shown behind it.
1330 */
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001331 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001332 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001333 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1334
1335 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1336 continue;
1337 }
1338
1339 if (stack.mStackId == FREEFORM_WORKSPACE_STACK_ID
1340 || stack.mStackId == HOME_STACK_ID) {
1341 // The freeform and home stacks can't have any other stack visible behind them
1342 // when they are fullscreen since they act as base/cut-off points for visibility.
1343 // NOTE: we don't cut-off at the FULLSCREEN_WORKSPACE_STACK_ID because the home
1344 // stack sometimes needs to be visible behind it when it is displaying a dialog
1345 // activity. We let it fall through to the logic below to determine visibility.
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001346 return false;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001347 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001348
Todd Kennedyaab56db2015-01-30 09:39:53 -08001349 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001350 final TaskRecord task = tasks.get(taskNdx);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001351 // task above isn't fullscreen, so, we assume we're still visible.
1352 if (!task.mFullscreen) {
1353 continue;
1354 }
Craig Mautner84984fa2014-06-19 11:19:20 -07001355 final ArrayList<ActivityRecord> activities = task.mActivities;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001356 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Jose Lima7ba71252014-04-30 12:59:27 -07001357 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001358
1359 // Conditions for an activity to obscure the stack we're
1360 // examining:
1361 // 1. Not Finishing AND Visible AND:
1362 // 2. Either:
1363 // - Full Screen Activity OR
1364 // - On top of Home and our stack is NOT home
1365 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001366 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001367 return false;
1368 }
1369 }
1370 }
1371 }
1372
1373 return true;
1374 }
1375
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001376 /**
1377 * Make sure that all activities that need to be visible (that is, they
1378 * currently can be seen by the user) actually are.
1379 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001380 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1381 ActivityRecord top = topRunningActivityLocked(null);
1382 if (top == null) {
1383 return;
1384 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001385 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1386 "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001387 + " configChanges=0x" + Integer.toHexString(configChanges));
1388
Craig Mautner5eda9b32013-07-02 11:58:16 -07001389 if (mTranslucentActivityWaiting != top) {
1390 mUndrawnActivitiesBelowTopTranslucent.clear();
1391 if (mTranslucentActivityWaiting != null) {
1392 // Call the callback with a timeout indication.
1393 notifyActivityDrawnLocked(null);
1394 mTranslucentActivityWaiting = null;
1395 }
1396 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1397 }
1398
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001399 // If the top activity is not fullscreen, then we need to
1400 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001401 boolean aboveTop = true;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001402 boolean behindFullscreen = !isStackVisibleLocked();
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001403 boolean noStackActivityResumed = (isInStackLocked(starting) == null);
Jose Lima7ba71252014-04-30 12:59:27 -07001404
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001405 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001406 final TaskRecord task = mTaskHistory.get(taskNdx);
1407 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001408 // Set to true if an activity in this task is fullscreen thereby hiding other
1409 // activities in the same task. Initialized to the same value as behindFullscreen
1410 // which represent if the entire task/stack is behind another fullscreen task/stack.
1411 boolean behindFullscreenActivity = behindFullscreen;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001412 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1413 final ActivityRecord r = activities.get(activityNdx);
1414 if (r.finishing) {
1415 continue;
1416 }
1417 if (aboveTop && r != top) {
1418 continue;
1419 }
1420 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001421 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1422 // but must be drawn initially for the animation as though they were visible.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001423 if (!behindFullscreenActivity || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001424 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1425 "Make visible? " + r + " finishing=" + r.finishing
Craig Mautnerd44711d2013-02-23 11:24:36 -08001426 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001427
Craig Mautnerd44711d2013-02-23 11:24:36 -08001428 // First: if this is not the current activity being started, make
1429 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001430 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001431 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001432 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001433
1434 if (r.app == null || r.app.thread == null) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001435 // This activity needs to be visible, but isn't even running...
1436 // get it started and resume if no other stack in this stack is resumed.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001437 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1438 "Start and freeze screen for " + r);
Craig Mautnerbb742462014-07-07 15:28:55 -07001439 if (r != starting) {
1440 r.startFreezingScreenLocked(r.app, configChanges);
1441 }
1442 if (!r.visible || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001443 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1444 "Starting and making visible: " + r);
Craig Mautner2568c3a2015-03-26 14:22:34 -07001445 setVisible(r, true);
Craig Mautnerbb742462014-07-07 15:28:55 -07001446 }
1447 if (r != starting) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001448 mStackSupervisor.startSpecificActivityLocked(
1449 r, noStackActivityResumed, false);
riddle_hsu36ee73d2015-06-05 16:38:38 +08001450 if (activityNdx >= activities.size()) {
1451 // Record may be removed if its process needs to restart.
1452 activityNdx = activities.size() - 1;
1453 } else {
1454 noStackActivityResumed = false;
1455 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001456 }
1457
1458 } else if (r.visible) {
1459 // If this activity is already visible, then there is nothing
1460 // else to do here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001461 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1462 "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001463 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001464 try {
George Mount6ba042b2014-07-28 11:12:28 -07001465 if (r.returningOptions != null) {
1466 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1467 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001468 }
1469 } catch(RemoteException e) {
1470 }
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001471 if (r.state == ActivityState.RESUMED) {
1472 noStackActivityResumed = false;
1473 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001474 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001475 // This activity is not currently visible, but is running.
1476 // Tell it to become visible.
1477 r.visible = true;
1478 if (r.state != ActivityState.RESUMED && r != starting) {
1479 // If this activity is paused, tell it
1480 // to now show its window.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001481 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1482 "Making visible and scheduling visibility: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001483 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001484 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001485 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001486 mUndrawnActivitiesBelowTopTranslucent.add(r);
1487 }
Craig Mautner2568c3a2015-03-26 14:22:34 -07001488 setVisible(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001489 r.sleeping = false;
1490 r.app.pendingUiClean = true;
1491 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1492 r.stopFreezingScreenLocked(false);
1493 } catch (Exception e) {
1494 // Just skip on any failure; we'll make it
1495 // visible when it next restarts.
1496 Slog.w(TAG, "Exception thrown making visibile: "
1497 + r.intent.getComponent(), e);
1498 }
1499 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001500 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001501
Craig Mautnerd44711d2013-02-23 11:24:36 -08001502 // Aggregate current change flags.
1503 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001504
Craig Mautnerd44711d2013-02-23 11:24:36 -08001505 if (r.fullscreen) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001506 // At this point, nothing else needs to be shown in this task.
1507 behindFullscreenActivity = true;
1508 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
1509 + " behindFullscreen=" + behindFullscreen
1510 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautner84984fa2014-06-19 11:19:20 -07001511 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001512 behindFullscreenActivity = true;
1513 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1514 + " behindFullscreen=" + behindFullscreen
1515 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001516 }
1517 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001518 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001519 "Make invisible? " + r + " finishing=" + r.finishing
1520 + " state=" + r.state + " behindFullscreen=" + behindFullscreen
1521 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001522 // Now for any activities that aren't visible to the user, make
1523 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001524 if (r.visible) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001525 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001526 try {
Craig Mautner2568c3a2015-03-26 14:22:34 -07001527 setVisible(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001528 switch (r.state) {
1529 case STOPPING:
1530 case STOPPED:
1531 if (r.app != null && r.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001532 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1533 "Scheduling invisibility: " + r);
Craig Mautner4addfc52013-06-25 08:05:45 -07001534 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1535 }
1536 break;
1537
1538 case INITIALIZING:
1539 case RESUMED:
1540 case PAUSING:
1541 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001542 // This case created for transitioning activities from
1543 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001544 if (getVisibleBehindActivity() == r) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001545 releaseBackgroundResources(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001546 } else {
1547 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1548 mStackSupervisor.mStoppingActivities.add(r);
1549 }
1550 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001551 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001552 break;
1553
1554 default:
1555 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001556 }
1557 } catch (Exception e) {
1558 // Just skip on any failure; we'll make it
1559 // visible when it next restarts.
1560 Slog.w(TAG, "Exception thrown making hidden: "
1561 + r.intent.getComponent(), e);
1562 }
1563 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001564 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001565 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001566 }
1567 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001568 // Factoring if the previous task is fullscreen there by affecting the visibility of
1569 // task behind it.
1570 behindFullscreen |= task.mFullscreen;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001571 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001572
1573 if (mTranslucentActivityWaiting != null &&
1574 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1575 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1576 notifyActivityDrawnLocked(null);
1577 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001578 }
Craig Mautner58547802013-03-05 08:23:53 -08001579
Todd Kennedyaab56db2015-01-30 09:39:53 -08001580 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001581 mTranslucentActivityWaiting = r;
1582 mUndrawnActivitiesBelowTopTranslucent.clear();
1583 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1584 }
1585
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001586 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1587 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1588 final TaskRecord task = mTaskHistory.get(taskNdx);
1589 final ArrayList<ActivityRecord> activities = task.mActivities;
1590 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1591 final ActivityRecord r = activities.get(activityNdx);
1592 if ( r.appTimeTracker != except) {
1593 r.appTimeTracker = null;
1594 }
1595 }
1596 }
1597 }
1598
Craig Mautner5eda9b32013-07-02 11:58:16 -07001599 /**
1600 * Called as activities below the top translucent activity are redrawn. When the last one is
1601 * redrawn notify the top activity by calling
1602 * {@link Activity#onTranslucentConversionComplete}.
1603 *
1604 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1605 * occurred and the activity will be notified immediately.
1606 */
1607 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001608 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001609 if ((r == null)
1610 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1611 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1612 // The last undrawn activity below the top has just been drawn. If there is an
1613 // opaque activity at the top, notify it that it can become translucent safely now.
1614 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1615 mTranslucentActivityWaiting = null;
1616 mUndrawnActivitiesBelowTopTranslucent.clear();
1617 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1618
Craig Mautner71dd1b62014-02-18 15:48:52 -08001619 if (waitingActivity != null) {
1620 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1621 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1622 try {
1623 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1624 waitingActivity.appToken, r != null);
1625 } catch (RemoteException e) {
1626 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001627 }
1628 }
1629 }
1630 }
1631
Craig Mautnera61bc652013-10-28 15:43:18 -07001632 /** If any activities below the top running one are in the INITIALIZING state and they have a
1633 * starting window displayed then remove that starting window. It is possible that the activity
1634 * in this state will never resumed in which case that starting window will be orphaned. */
1635 void cancelInitializingActivities() {
1636 final ActivityRecord topActivity = topRunningActivityLocked(null);
1637 boolean aboveTop = true;
1638 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1639 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1640 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1641 final ActivityRecord r = activities.get(activityNdx);
1642 if (aboveTop) {
1643 if (r == topActivity) {
1644 aboveTop = false;
1645 }
1646 continue;
1647 }
1648
1649 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001650 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1651 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001652 r.mStartingWindowShown = false;
1653 mWindowManager.removeAppStartingWindow(r.appToken);
1654 }
1655 }
1656 }
1657 }
1658
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001659 /**
1660 * Ensure that the top activity in the stack is resumed.
1661 *
1662 * @param prev The previously resumed activity, for when in the process
1663 * of pausing; can be null to call from elsewhere.
1664 *
1665 * @return Returns true if something is being resumed, or false if
1666 * nothing happened.
1667 */
1668 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001669 return resumeTopActivityLocked(prev, null);
1670 }
1671
1672 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001673 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001674 // Don't even start recursing.
1675 return false;
1676 }
1677
1678 boolean result = false;
1679 try {
1680 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001681 mStackSupervisor.inResumeTopActivity = true;
1682 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1683 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001684 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001685 }
Craig Mautner544efa72014-09-04 16:41:20 -07001686 result = resumeTopActivityInnerLocked(prev, options);
1687 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001688 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001689 }
1690 return result;
1691 }
1692
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001693 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001694 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001695
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001696 if (!mService.mBooting && !mService.mBooted) {
1697 // Not ready yet!
1698 return false;
1699 }
1700
Craig Mautnerdf88d732014-01-27 09:21:32 -08001701 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001702 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001703 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001704 // Do not resume this stack if its parent is not resumed.
1705 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1706 return false;
1707 }
1708
Craig Mautnera61bc652013-10-28 15:43:18 -07001709 cancelInitializingActivities();
1710
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001711 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001712 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001713
1714 // Remember how we'll process this pause/resume situation, and ensure
1715 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001716 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1717 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001718
Craig Mautner84984fa2014-06-19 11:19:20 -07001719 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001720 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001721 // There are no more activities!
1722 final String reason = "noMoreActivities";
1723 if (!mFullscreen) {
1724 // Try to move focus to the next visible stack with a running activity if this
1725 // stack is not covering the entire screen.
1726 final ActivityStack stack = getNextVisibleStackLocked();
1727 if (adjustFocusToNextVisibleStackLocked(stack, reason)) {
1728 return mStackSupervisor.resumeTopActivitiesLocked(stack, prev, null);
1729 }
1730 }
1731 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001732 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001733 if (DEBUG_STATES) Slog.d(TAG_STATES,
1734 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001735 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001736 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001737 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1738 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1739 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001740 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001741 }
1742
1743 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001744
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001745 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001746 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1747 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001748 // Make sure we have executed any pending transitions, since there
1749 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001750 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001751 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001752 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001753 if (DEBUG_STATES) Slog.d(TAG_STATES,
1754 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001755 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001756 return false;
1757 }
1758
Craig Mautner525f3d92013-05-07 14:01:50 -07001759 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001760 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001761 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001762 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001763 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001764 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001765 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001766 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001767 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001768 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001769 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001770 } else if (!isOnHomeDisplay()) {
1771 return false;
1772 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001773 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08001774 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001775 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1776 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1777 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001778 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001779 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001780 }
1781
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001782 // If we are sleeping, and there is no resumed activity, and the top
1783 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001784 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001785 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001786 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001787 // Make sure we have executed any pending transitions, since there
1788 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001789 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001790 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001791 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001792 if (DEBUG_STATES) Slog.d(TAG_STATES,
1793 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001794 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001795 return false;
1796 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001797
1798 // Make sure that the user who owns this activity is started. If not,
1799 // we will just leave it as is because someone should be bringing
1800 // another user's activities to the top of the stack.
1801 if (mService.mStartedUsers.get(next.userId) == null) {
1802 Slog.w(TAG, "Skipping resume of top activity " + next
1803 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001804 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001805 return false;
1806 }
1807
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001808 // The activity may be waiting for stop, but that is no longer
1809 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001810 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001811 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001812 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001813 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001814
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001815 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001816
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001817 // If we are currently pausing an activity, then don't do anything
1818 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001819 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001820 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001821 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001822 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001823 return false;
1824 }
1825
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001826 // Okay we are now going to start a switch, to 'next'. We may first
1827 // have to pause the current activity, but this is an important point
1828 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001829 // XXX "App Redirected" dialog is getting too many false positives
1830 // at this point, so turn off for now.
1831 if (false) {
1832 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1833 long now = SystemClock.uptimeMillis();
1834 final boolean inTime = mLastStartedActivity.startTime != 0
1835 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1836 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1837 final int nextUid = next.info.applicationInfo.uid;
1838 if (inTime && lastUid != nextUid
1839 && lastUid != next.launchedFromUid
1840 && mService.checkPermission(
1841 android.Manifest.permission.STOP_APP_SWITCHES,
1842 -1, next.launchedFromUid)
1843 != PackageManager.PERMISSION_GRANTED) {
1844 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1845 } else {
1846 next.startTime = now;
1847 mLastStartedActivity = next;
1848 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001849 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001850 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001851 mLastStartedActivity = next;
1852 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001853 }
Craig Mautner58547802013-03-05 08:23:53 -08001854
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001855 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
1856
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001857 // We need to start pausing the current activity so the top one
1858 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001859 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1860 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001861 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001862 if (DEBUG_STATES) Slog.d(TAG_STATES,
1863 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001864 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001865 }
1866 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001867 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001868 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001869 // At this point we want to put the upcoming activity's process
1870 // at the top of the LRU list, since we know we will be needing it
1871 // very soon and it would be a waste to let it get killed if it
1872 // happens to be sitting towards the end.
1873 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001874 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001875 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001876 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001877 return true;
1878 }
1879
Christopher Tated3f175c2012-06-14 14:16:54 -07001880 // If the most recent activity was noHistory but was only stopped rather
1881 // than stopped+finished because the device went to sleep, we need to make
1882 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001883 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001884 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001885 if (DEBUG_STATES) Slog.d(TAG_STATES,
1886 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07001887 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001888 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001889 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001890 }
1891
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001892 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001893 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1894 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001895 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001896 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1897 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001898 } else {
1899 // The next activity is already visible, so hide the previous
1900 // activity's windows right now so we can show the new one ASAP.
1901 // We only do this if the previous is finishing, which should mean
1902 // it is on top of the one being resumed so hiding it quickly
1903 // is good. Otherwise, we want to do the normal route of allowing
1904 // the resumed activity to be shown so we can decide if the
1905 // previous should actually be hidden depending on whether the
1906 // new one is found to be full-screen or not.
1907 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001908 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001909 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1910 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001911 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001912 + ", nowVisible=" + next.nowVisible);
1913 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001914 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08001915 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001916 + ", waitingVisible="
1917 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1918 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001919 }
1920 }
1921 }
1922
Dianne Hackborne7f97212011-02-24 14:40:20 -08001923 // Launching this app's activity, make sure the app is no longer
1924 // considered stopped.
1925 try {
1926 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001927 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001928 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001929 } catch (IllegalArgumentException e) {
1930 Slog.w(TAG, "Failed trying to unstop package "
1931 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001932 }
1933
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001934 // We are starting up the next activity, so tell the window manager
1935 // that the previous one will be hidden soon. This way it can know
1936 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001937 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001938 if (prev != null) {
1939 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001940 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001941 "Prepare close transition: prev=" + prev);
1942 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001943 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001944 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001945 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001946 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001947 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1948 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001949 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001950 mWindowManager.setAppWillBeHidden(prev.appToken);
1951 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001952 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001953 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
1954 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001955 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001956 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001957 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001958 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001959 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001960 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001961 : next.mLaunchTaskBehind
1962 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1963 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001964 }
1965 }
1966 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001967 mWindowManager.setAppWillBeHidden(prev.appToken);
1968 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001969 }
Craig Mautner967212c2013-04-13 21:10:58 -07001970 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001971 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001972 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001973 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001974 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001975 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001976 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001977 }
1978 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001979
1980 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001981 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001982 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1983 if (opts != null) {
1984 resumeAnimOptions = opts.toBundle();
1985 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001986 next.applyOptionsLocked();
1987 } else {
1988 next.clearOptionsLocked();
1989 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001990
Craig Mautnercf910b02013-04-23 11:23:27 -07001991 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001992 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001993 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001994
1995 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001996 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001997
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001998 // schedule launch ticks to collect information about slow apps.
1999 next.startLaunchTickingLocked();
2000
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002001 ActivityRecord lastResumedActivity =
2002 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002003 ActivityState lastState = next.state;
2004
2005 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002006
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002007 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002008 next.state = ActivityState.RESUMED;
2009 mResumedActivity = next;
2010 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08002011 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07002012 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002013 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002014 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002015
2016 // Have the window manager re-evaluate the orientation of
2017 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002018 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07002019 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002020 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07002021 mService.mConfiguration,
2022 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2023 if (config != null) {
2024 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002025 }
Maxim Bogatov05075302015-05-19 18:33:08 -07002026 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002027 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002028
Craig Mautner525f3d92013-05-07 14:01:50 -07002029 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002030 // The configuration update wasn't able to keep the existing
2031 // instance of the activity, and instead started a new one.
2032 // We should be all done, but let's just make sure our activity
2033 // is still at the top and schedule another run if something
2034 // weird happened.
2035 ActivityRecord nextNext = topRunningActivityLocked(null);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002036 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002037 "Activity config changed during resume: " + next
2038 + ", new next: " + nextNext);
2039 if (nextNext != next) {
2040 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002041 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002042 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002043 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002044 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07002045 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002046 return true;
2047 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002048 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002049 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002050 }
Craig Mautner58547802013-03-05 08:23:53 -08002051
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002052 try {
2053 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002054 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002055 if (a != null) {
2056 final int N = a.size();
2057 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002058 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2059 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002060 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002061 }
2062 }
2063
2064 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002065 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002066 }
2067
Craig Mautner299f9602015-01-26 09:47:33 -08002068 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2069 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002070
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002071 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07002072 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002073 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002074 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002075 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002076 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002077 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002078
Craig Mautner0eea92c2013-05-16 13:35:39 -07002079 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002080
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002081 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002082 } catch (Exception e) {
2083 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002084 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002085 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002086 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002087 if (lastStack != null) {
2088 lastStack.mResumedActivity = lastResumedActivity;
2089 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002090 Slog.i(TAG, "Restarting because process died: " + next);
2091 if (!next.hasBeenLaunched) {
2092 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002093 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2094 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002095 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002096 next.appToken, next.packageName, next.theme,
2097 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07002098 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
2099 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002100 }
George Mount2c92c972014-03-20 09:38:23 -07002101 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002102 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002103 return true;
2104 }
2105
2106 // From this point on, if something goes wrong there is no way
2107 // to recover the activity.
2108 try {
2109 next.visible = true;
2110 completeResumeLocked(next);
2111 } catch (Exception e) {
2112 // If any exception gets thrown, toss away this
2113 // activity and try the next one.
2114 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002115 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002116 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002117 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002118 return true;
2119 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002120 next.stopped = false;
2121
2122 } else {
2123 // Whoops, need to restart this activity!
2124 if (!next.hasBeenLaunched) {
2125 next.hasBeenLaunched = true;
2126 } else {
2127 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002128 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002129 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002130 mService.compatibilityInfoForPackageLocked(
2131 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002132 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002133 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002134 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002135 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002136 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002137 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002138 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002139 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002140 }
2141
Craig Mautnercf910b02013-04-23 11:23:27 -07002142 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002143 return true;
2144 }
2145
riddle_hsuc215a4f2014-12-27 12:10:45 +08002146 private TaskRecord getNextTask(TaskRecord targetTask) {
2147 final int index = mTaskHistory.indexOf(targetTask);
2148 if (index >= 0) {
2149 final int numTasks = mTaskHistory.size();
2150 for (int i = index + 1; i < numTasks; ++i) {
2151 TaskRecord task = mTaskHistory.get(i);
2152 if (task.userId == targetTask.userId) {
2153 return task;
2154 }
2155 }
2156 }
2157 return null;
2158 }
2159
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002160 private void insertTaskAtPosition(TaskRecord task, int position) {
2161 if (position >= mTaskHistory.size()) {
2162 insertTaskAtTop(task, null);
2163 return;
2164 }
2165 // Calculate maximum possible position for this task.
2166 int maxPosition = mTaskHistory.size();
2167 if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
2168 && task.topRunningActivityLocked(null) == null) {
2169 // Put non-current user tasks below current user tasks.
2170 while (maxPosition > 0) {
2171 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2172 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2173 || tmpTask.topRunningActivityLocked(null) == null) {
2174 break;
2175 }
2176 maxPosition--;
2177 }
2178 }
2179 position = Math.min(position, maxPosition);
2180 mTaskHistory.remove(task);
2181 mTaskHistory.add(position, task);
2182 updateTaskMovement(task, true);
2183 }
2184
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002185 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002186 // If the moving task is over home stack, transfer its return type to next task
2187 if (task.isOverHomeStack()) {
2188 final TaskRecord nextTask = getNextTask(task);
2189 if (nextTask != null) {
2190 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2191 }
2192 }
2193
Craig Mautner9c85c202013-10-04 20:11:26 -07002194 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002195 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002196 if (isOnHomeDisplay()) {
2197 ActivityStack lastStack = mStackSupervisor.getLastStack();
2198 final boolean fromHome = lastStack.isHomeStack();
2199 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07002200 task.setTaskToReturnTo(fromHome
2201 ? lastStack.topTask() == null
2202 ? HOME_ACTIVITY_TYPE
2203 : lastStack.topTask().taskType
2204 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08002205 }
2206 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002207 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002208 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002209
Craig Mautnerac6f8432013-07-17 13:24:59 -07002210 mTaskHistory.remove(task);
2211 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002212 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002213 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002214 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002215 || (newActivity == null && task.topRunningActivityLocked(null) == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002216 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002217 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002218 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002219 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002220 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002221 || tmpTask.topRunningActivityLocked(null) == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002222 break;
2223 }
2224 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002225 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002226 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002227 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002228 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002229 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002230
Craig Mautner8849a5e2013-04-02 16:41:03 -07002231 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002232 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002233 TaskRecord rTask = r.task;
2234 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002235 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2236 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002237 // Last activity in task had been removed or ActivityManagerService is reusing task.
2238 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002239 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002240 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002241 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002242 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002243 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002244 if (!newTask) {
2245 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002246 boolean startIt = true;
2247 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2248 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002249 if (task.getTopActivity() == null) {
2250 // All activities in task are finishing.
2251 continue;
2252 }
Craig Mautner70a86932013-02-28 22:37:44 -08002253 if (task == r.task) {
2254 // Here it is! Now, if this is not yet visible to the
2255 // user, then just add it without starting; it will
2256 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002257 if (!startIt) {
2258 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2259 + task, new RuntimeException("here").fillInStackTrace());
2260 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002261 r.putInHistory();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002262 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002263 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002264 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002265 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002266 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002267 return;
2268 }
2269 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002270 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002271 startIt = false;
2272 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002273 }
2274 }
2275
2276 // Place a new activity at top of stack, so it is next to interact
2277 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002278
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002279 // If we are not placing the new activity frontmost, we do not want
2280 // to deliver the onUserLeaving callback to the actual frontmost
2281 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002282 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002283 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002284 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002285 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002286 }
Craig Mautner70a86932013-02-28 22:37:44 -08002287
2288 task = r.task;
2289
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002290 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002291 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002292 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002293 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002294 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002295
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002296 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002297 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002298 // We want to show the starting preview window if we are
2299 // switching to a new task, or the next activity's process is
2300 // not currently running.
2301 boolean showStartingIcon = newTask;
2302 ProcessRecord proc = r.app;
2303 if (proc == null) {
2304 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2305 }
2306 if (proc == null || proc.thread == null) {
2307 showStartingIcon = true;
2308 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002309 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002310 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002311 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002312 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002313 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002314 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002315 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002316 ? r.mLaunchTaskBehind
2317 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2318 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002319 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002320 mNoAnimActivities.remove(r);
2321 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002322 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002323 boolean doShow = true;
2324 if (newTask) {
2325 // Even though this activity is starting fresh, we still need
2326 // to reset it to make sure we apply affinities to move any
2327 // existing activities from other tasks in to it.
2328 // If the caller has requested that the target task be
2329 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002330 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002331 resetTaskIfNeededLocked(r, r);
2332 doShow = topRunningNonDelayedActivityLocked(null) == r;
2333 }
George Mount70778d72014-07-01 16:33:45 -07002334 } else if (options != null && new ActivityOptions(options).getAnimationType()
2335 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2336 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002337 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002338 if (r.mLaunchTaskBehind) {
2339 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2340 // tell WindowManager that r is visible even though it is at the back of the stack.
2341 mWindowManager.setAppVisibility(r.appToken, true);
2342 ensureActivitiesVisibleLocked(null, 0);
2343 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002344 // Figure out if we are transitioning from another activity that is
2345 // "has the same starting icon" as the next one. This allows the
2346 // window manager to keep the previous window it had previously
2347 // created, if it still had one.
2348 ActivityRecord prev = mResumedActivity;
2349 if (prev != null) {
2350 // We don't want to reuse the previous starting preview if:
2351 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002352 if (prev.task != r.task) {
2353 prev = null;
2354 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002355 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002356 else if (prev.nowVisible) {
2357 prev = null;
2358 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002359 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002360 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002361 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002362 mService.compatibilityInfoForPackageLocked(
2363 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002364 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002365 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002366 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002367 }
2368 } else {
2369 // If this is the first activity, don't do any fancy animations,
2370 // because there is nothing for it to animate on top of.
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002371 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002372 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002373 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002374 }
2375 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002376 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002377 }
2378
2379 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002380 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Chong Zhang45c25ce2015-08-10 22:18:26 -07002381 } else {
2382 addRecentActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002383 }
2384 }
2385
Dianne Hackbornbe707852011-11-11 14:32:10 -08002386 final void validateAppTokensLocked() {
2387 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002388 mValidateAppTokens.ensureCapacity(numActivities());
2389 final int numTasks = mTaskHistory.size();
2390 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2391 TaskRecord task = mTaskHistory.get(taskNdx);
2392 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002393 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002394 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002395 }
Craig Mautner000f0022013-02-26 15:04:29 -08002396 TaskGroup group = new TaskGroup();
2397 group.taskId = task.taskId;
2398 mValidateAppTokens.add(group);
2399 final int numActivities = activities.size();
2400 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2401 final ActivityRecord r = activities.get(activityNdx);
2402 group.tokens.add(r.appToken);
2403 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002404 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002405 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002406 }
2407
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002408 /**
2409 * Perform a reset of the given task, if needed as part of launching it.
2410 * Returns the new HistoryRecord at the top of the task.
2411 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002412 /**
2413 * Helper method for #resetTaskIfNeededLocked.
2414 * We are inside of the task being reset... we'll either finish this activity, push it out
2415 * for another task, or leave it as-is.
2416 * @param task The task containing the Activity (taskTop) that might be reset.
2417 * @param forceReset
2418 * @return An ActivityOptions that needs to be processed.
2419 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002420 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002421 ActivityOptions topOptions = null;
2422
2423 int replyChainEnd = -1;
2424 boolean canMoveOptions = true;
2425
2426 // We only do this for activities that are not the root of the task (since if we finish
2427 // the root, we may no longer have the task!).
2428 final ArrayList<ActivityRecord> activities = task.mActivities;
2429 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002430 final int rootActivityNdx = task.findEffectiveRootIndex();
2431 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002432 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002433 if (target.frontOfTask)
2434 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002435
2436 final int flags = target.info.flags;
2437 final boolean finishOnTaskLaunch =
2438 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2439 final boolean allowTaskReparenting =
2440 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2441 final boolean clearWhenTaskReset =
2442 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2443
2444 if (!finishOnTaskLaunch
2445 && !clearWhenTaskReset
2446 && target.resultTo != null) {
2447 // If this activity is sending a reply to a previous
2448 // activity, we can't do anything with it now until
2449 // we reach the start of the reply chain.
2450 // XXX note that we are assuming the result is always
2451 // to the previous activity, which is almost always
2452 // the case but we really shouldn't count on.
2453 if (replyChainEnd < 0) {
2454 replyChainEnd = i;
2455 }
2456 } else if (!finishOnTaskLaunch
2457 && !clearWhenTaskReset
2458 && allowTaskReparenting
2459 && target.taskAffinity != null
2460 && !target.taskAffinity.equals(task.affinity)) {
2461 // If this activity has an affinity for another
2462 // task, then we need to move it out of here. We will
2463 // move it as far out of the way as possible, to the
2464 // bottom of the activity stack. This also keeps it
2465 // correctly ordered with any activities we previously
2466 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002467 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002468 final ActivityRecord bottom =
2469 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002470 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002471 if (bottom != null && target.taskAffinity != null
2472 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002473 // If the activity currently at the bottom has the
2474 // same task affinity as the one we are moving,
2475 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002476 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002477 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002478 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002479 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002480 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002481 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002482 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002483 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002484 + " out to new task " + target.task);
2485 }
2486
Wale Ogunwale706ed792015-08-02 10:29:44 -07002487 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002488
Craig Mautner525f3d92013-05-07 14:01:50 -07002489 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002490 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2491 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002492 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002493 if (p.finishing) {
2494 continue;
2495 }
2496
Craig Mautnere3a74d52013-02-22 14:14:58 -08002497 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002498 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002499 topOptions = p.takeOptionsLocked();
2500 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002501 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002502 }
2503 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002504 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2505 "Removing activity " + p + " from task=" + task + " adding to task="
2506 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002507 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2508 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002509 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002510 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002511
Wale Ogunwale706ed792015-08-02 10:29:44 -07002512 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002513 }
2514
Wale Ogunwale706ed792015-08-02 10:29:44 -07002515 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002516 if (VALIDATE_TOKENS) {
2517 validateAppTokensLocked();
2518 }
2519
2520 replyChainEnd = -1;
2521 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2522 // If the activity should just be removed -- either
2523 // because it asks for it, or the task should be
2524 // cleared -- then finish it and anything that is
2525 // part of its reply chain.
2526 int end;
2527 if (clearWhenTaskReset) {
2528 // In this case, we want to finish this activity
2529 // and everything above it, so be sneaky and pretend
2530 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002531 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002532 } else if (replyChainEnd < 0) {
2533 end = i;
2534 } else {
2535 end = replyChainEnd;
2536 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002537 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002538 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002539 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002540 if (p.finishing) {
2541 continue;
2542 }
2543 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002544 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002545 topOptions = p.takeOptionsLocked();
2546 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002547 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002548 }
2549 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002550 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002551 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002552 if (finishActivityLocked(
2553 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002554 end--;
2555 srcPos--;
2556 }
2557 }
2558 replyChainEnd = -1;
2559 } else {
2560 // If we were in the middle of a chain, well the
2561 // activity that started it all doesn't want anything
2562 // special, so leave it all as-is.
2563 replyChainEnd = -1;
2564 }
2565 }
2566
2567 return topOptions;
2568 }
2569
2570 /**
2571 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2572 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2573 * @param affinityTask The task we are looking for an affinity to.
2574 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2575 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2576 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2577 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002578 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002579 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002580 int replyChainEnd = -1;
2581 final int taskId = task.taskId;
2582 final String taskAffinity = task.affinity;
2583
2584 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2585 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002586 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2587
2588 // Do not operate on or below the effective root Activity.
2589 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002590 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002591 if (target.frontOfTask)
2592 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002593
2594 final int flags = target.info.flags;
2595 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2596 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2597
2598 if (target.resultTo != null) {
2599 // If this activity is sending a reply to a previous
2600 // activity, we can't do anything with it now until
2601 // we reach the start of the reply chain.
2602 // XXX note that we are assuming the result is always
2603 // to the previous activity, which is almost always
2604 // the case but we really shouldn't count on.
2605 if (replyChainEnd < 0) {
2606 replyChainEnd = i;
2607 }
2608 } else if (topTaskIsHigher
2609 && allowTaskReparenting
2610 && taskAffinity != null
2611 && taskAffinity.equals(target.taskAffinity)) {
2612 // This activity has an affinity for our task. Either remove it if we are
2613 // clearing or move it over to our task. Note that
2614 // we currently punt on the case where we are resetting a
2615 // task that is not at the top but who has activities above
2616 // with an affinity to it... this is really not a normal
2617 // case, and we will need to later pull that task to the front
2618 // and usually at that point we will do the reset and pick
2619 // up those remaining activities. (This only happens if
2620 // someone starts an activity in a new task from an activity
2621 // in a task that is not currently on top.)
2622 if (forceReset || finishOnTaskLaunch) {
2623 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002624 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2625 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002626 for (int srcPos = start; srcPos >= i; --srcPos) {
2627 final ActivityRecord p = activities.get(srcPos);
2628 if (p.finishing) {
2629 continue;
2630 }
Todd Kennedy539db512014-12-15 09:57:55 -08002631 finishActivityLocked(
2632 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002633 }
2634 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002635 if (taskInsertionPoint < 0) {
2636 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002637
Craig Mautner77878772013-03-04 19:46:24 -08002638 }
Craig Mautner77878772013-03-04 19:46:24 -08002639
2640 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002641 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2642 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2643 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002644 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002645 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002646 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002647 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002648
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002649 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2650 "Removing and adding activity " + p + " to stack at " + task
2651 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002652 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2653 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002654 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002655 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002656 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002657 if (VALIDATE_TOKENS) {
2658 validateAppTokensLocked();
2659 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002660
2661 // Now we've moved it in to place... but what if this is
2662 // a singleTop activity and we have put it on top of another
2663 // instance of the same activity? Then we drop the instance
2664 // below so it remains singleTop.
2665 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2666 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002667 int targetNdx = taskActivities.indexOf(target);
2668 if (targetNdx > 0) {
2669 ActivityRecord p = taskActivities.get(targetNdx - 1);
2670 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002671 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2672 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002673 }
2674 }
2675 }
2676 }
2677
2678 replyChainEnd = -1;
2679 }
2680 }
Craig Mautner77878772013-03-04 19:46:24 -08002681 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002682 }
2683
Craig Mautner8849a5e2013-04-02 16:41:03 -07002684 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002685 ActivityRecord newActivity) {
2686 boolean forceReset =
2687 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2688 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2689 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2690 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2691 forceReset = true;
2692 }
2693 }
2694
2695 final TaskRecord task = taskTop.task;
2696
2697 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2698 * for remaining tasks. Used for later tasks to reparent to task. */
2699 boolean taskFound = false;
2700
2701 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2702 ActivityOptions topOptions = null;
2703
Craig Mautner77878772013-03-04 19:46:24 -08002704 // Preserve the location for reparenting in the new task.
2705 int reparentInsertionPoint = -1;
2706
Craig Mautnere3a74d52013-02-22 14:14:58 -08002707 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2708 final TaskRecord targetTask = mTaskHistory.get(i);
2709
2710 if (targetTask == task) {
2711 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2712 taskFound = true;
2713 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002714 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2715 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002716 }
2717 }
2718
Craig Mautner70a86932013-02-28 22:37:44 -08002719 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002720 if (taskNdx >= 0) {
2721 do {
2722 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2723 } while (taskTop == null && taskNdx >= 0);
2724 }
Craig Mautner70a86932013-02-28 22:37:44 -08002725
Craig Mautnere3a74d52013-02-22 14:14:58 -08002726 if (topOptions != null) {
2727 // If we got some ActivityOptions from an activity on top that
2728 // was removed from the task, propagate them to the new real top.
2729 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002730 taskTop.updateOptionsLocked(topOptions);
2731 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002732 topOptions.abort();
2733 }
2734 }
2735
2736 return taskTop;
2737 }
2738
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002739 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2740 String resultWho, int requestCode, int resultCode, Intent data) {
2741
2742 if (callingUid > 0) {
2743 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002744 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002745 }
2746
2747 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2748 + " : who=" + resultWho + " req=" + requestCode
2749 + " res=" + resultCode + " data=" + data);
2750 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2751 try {
2752 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2753 list.add(new ResultInfo(resultWho, requestCode,
2754 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002755 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002756 return;
2757 } catch (Exception e) {
2758 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2759 }
2760 }
2761
2762 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2763 }
2764
Craig Mautner299f9602015-01-26 09:47:33 -08002765 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002766 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2767 ActivityRecord next = topRunningActivityLocked(null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002768 final String myReason = reason + " adjustFocus";
Craig Mautner04f0b702013-10-22 12:31:01 -07002769 if (next != r) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07002770 if (next != null && (mStackId == FREEFORM_WORKSPACE_STACK_ID
2771 || mStackId == DOCKED_STACK_ID)) {
2772 // For freeform and docked stacks we always keep the focus within the stack as
2773 // long as there is a running activity in the stack that we can adjust focus to.
Wale Ogunwale61803ee2015-08-07 19:59:47 -07002774 mService.setFocusedActivityLocked(next, myReason);
2775 return;
2776 } else {
2777 final TaskRecord task = r.task;
2778 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
2779 // For non-fullscreen stack, we want to move the focus to the next visible
2780 // stack to prevent the home screen from moving to the top and obscuring
2781 // other visible stacks.
2782 if (!mFullscreen
2783 && adjustFocusToNextVisibleStackLocked(null, myReason)) {
2784 return;
2785 }
2786 // Move the home stack to the top if this stack is fullscreen or there is no
2787 // other visible stack.
2788 if (mStackSupervisor.moveHomeStackTaskToTop(
2789 task.getTaskToReturnTo(), myReason)) {
2790 // Activity focus was already adjusted. Nothing else to do...
2791 return;
2792 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002793 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002794 }
2795 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002796
2797 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
Winson Chung648c83b2014-04-28 15:11:56 -07002798 if (top != null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002799 mService.setFocusedActivityLocked(top, myReason);
Winson Chung648c83b2014-04-28 15:11:56 -07002800 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002801 }
2802 }
2803
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002804 private boolean adjustFocusToNextVisibleStackLocked(ActivityStack inStack, String reason) {
2805 final ActivityStack stack = (inStack != null) ? inStack : getNextVisibleStackLocked();
2806 final String myReason = reason + " adjustFocusToNextVisibleStack";
2807 if (stack == null) {
2808 return false;
2809 }
2810 final ActivityRecord top = stack.topRunningActivityLocked(null);
2811 if (top == null) {
2812 return false;
2813 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002814 mService.setFocusedActivityLocked(top, myReason);
2815 return true;
2816 }
2817
Craig Mautnerf3333272013-04-22 10:55:53 -07002818 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002819 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002820 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2821 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2822 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002823 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002824 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07002825 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
2826 "stop-no-history", false)) {
2827 // Activity was finished, no need to continue trying to schedule stop.
2828 adjustFocusedActivityLocked(r, "stopActivityFinished");
2829 r.resumeKeyDispatchingLocked();
2830 return;
2831 }
Christopher Tated3f175c2012-06-14 14:16:54 -07002832 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002833 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07002834 + " on stop because we're just sleeping");
2835 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002836 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002837 }
2838
2839 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002840 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002841 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002842 try {
2843 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002844 if (DEBUG_STATES) Slog.v(TAG_STATES,
2845 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002846 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002847 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2848 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002849 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002850 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002851 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002852 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002853 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002854 r.setSleeping(true);
2855 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002856 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002857 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002858 } catch (Exception e) {
2859 // Maybe just ignore exceptions here... if the process
2860 // has crashed, our death notification will clean things
2861 // up.
2862 Slog.w(TAG, "Exception thrown during pause", e);
2863 // Just in case, assume it to be stopped.
2864 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002865 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002866 r.state = ActivityState.STOPPED;
2867 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002868 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002869 }
2870 }
2871 }
2872 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002873
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002874 /**
2875 * @return Returns true if the activity is being finished, false if for
2876 * some reason it is being left as-is.
2877 */
2878 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002879 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002880 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002881 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
2882 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002883 + ", result=" + resultCode + ", data=" + resultData
2884 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002885 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002886 return false;
2887 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002888
Craig Mautnerd44711d2013-02-23 11:24:36 -08002889 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002890 return true;
2891 }
2892
Craig Mautnerd2328952013-03-05 12:46:26 -08002893 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002894 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2895 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2896 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2897 ActivityRecord r = activities.get(activityNdx);
2898 if (r.resultTo == self && r.requestCode == requestCode) {
2899 if ((r.resultWho == null && resultWho == null) ||
2900 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2901 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2902 false);
2903 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002904 }
2905 }
2906 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002907 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002908 }
2909
Todd Kennedy539db512014-12-15 09:57:55 -08002910 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002911 ActivityRecord r = topRunningActivityLocked(null);
2912 if (r != null && r.app == app) {
2913 // If the top running activity is from this crashing
2914 // process, then terminate it to avoid getting in a loop.
2915 Slog.w(TAG, " Force finishing activity "
2916 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002917 int taskNdx = mTaskHistory.indexOf(r.task);
2918 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002919 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002920 // Also terminate any activities below it that aren't yet
2921 // stopped, to avoid a situation where one will get
2922 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002923 --activityNdx;
2924 if (activityNdx < 0) {
2925 do {
2926 --taskNdx;
2927 if (taskNdx < 0) {
2928 break;
2929 }
2930 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2931 } while (activityNdx < 0);
2932 }
2933 if (activityNdx >= 0) {
2934 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002935 if (r.state == ActivityState.RESUMED
2936 || r.state == ActivityState.PAUSING
2937 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002938 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002939 Slog.w(TAG, " Force finishing activity "
2940 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002941 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002942 }
2943 }
2944 }
2945 }
2946 }
2947
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002948 final void finishVoiceTask(IVoiceInteractionSession session) {
2949 IBinder sessionBinder = session.asBinder();
2950 boolean didOne = false;
2951 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2952 TaskRecord tr = mTaskHistory.get(taskNdx);
2953 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2954 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2955 ActivityRecord r = tr.mActivities.get(activityNdx);
2956 if (!r.finishing) {
2957 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2958 false);
2959 didOne = true;
2960 }
2961 }
2962 }
2963 }
2964 if (didOne) {
2965 mService.updateOomAdjLocked();
2966 }
2967 }
2968
Craig Mautnerd2328952013-03-05 12:46:26 -08002969 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002970 ArrayList<ActivityRecord> activities = r.task.mActivities;
2971 for (int index = activities.indexOf(r); index >= 0; --index) {
2972 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002973 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002974 break;
2975 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002976 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002977 }
2978 return true;
2979 }
2980
Dianne Hackborn5c607432012-02-28 14:44:19 -08002981 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2982 // send the result
2983 ActivityRecord resultTo = r.resultTo;
2984 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002985 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08002986 + " who=" + r.resultWho + " req=" + r.requestCode
2987 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002988 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002989 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01002990 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002991 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002992 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002993 if (r.info.applicationInfo.uid > 0) {
2994 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2995 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002996 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002997 }
2998 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2999 resultData);
3000 r.resultTo = null;
3001 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003002 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003003
3004 // Make sure this HistoryRecord is not holding on to other resources,
3005 // because clients have remote IPC references to this object so we
3006 // can't assume that will go away and want to avoid circular IPC refs.
3007 r.results = null;
3008 r.pendingResults = null;
3009 r.newIntents = null;
3010 r.icicle = null;
3011 }
3012
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003013 /**
3014 * @return Returns true if this activity has been removed from the history
3015 * list, or false if it is still in the list and will be removed later.
3016 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003017 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3018 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003019 if (r.finishing) {
3020 Slog.w(TAG, "Duplicate finish request for " + r);
3021 return false;
3022 }
3023
Wale Ogunwale7d701172015-03-11 15:36:30 -07003024 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08003025 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003026 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003027 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08003028 task.taskId, r.shortComponentName, reason);
3029 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003030 final int index = activities.indexOf(r);
3031 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003032 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07003033 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003034 // If the caller asked that this activity (and all above it)
3035 // be cleared when the task is reset, don't lose that information,
3036 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08003037 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003038 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003039 }
3040 }
3041
3042 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003043
Craig Mautner299f9602015-01-26 09:47:33 -08003044 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003045
Dianne Hackborn5c607432012-02-28 14:44:19 -08003046 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003047
Craig Mautnerde4ef022013-04-07 19:01:33 -07003048 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003049 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003050 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003051 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003052 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08003053 ? AppTransition.TRANSIT_TASK_CLOSE
3054 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08003055
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003056 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003057 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003058
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003059 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003060 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3061 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3062 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003063 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003064 }
3065
Craig Mautneraea74a52014-03-08 14:23:10 -08003066 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07003067 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08003068 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003069 } else if (r.state != ActivityState.PAUSING) {
3070 // If the activity is PAUSING, we will complete the finish once
3071 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003072 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003073 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003074 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003075 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003076 }
3077
3078 return false;
3079 }
3080
Craig Mautnerf3333272013-04-22 10:55:53 -07003081 static final int FINISH_IMMEDIATELY = 0;
3082 static final int FINISH_AFTER_PAUSE = 1;
3083 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003084
Craig Mautnerf3333272013-04-22 10:55:53 -07003085 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003086 // First things first: if this activity is currently visible,
3087 // and the resumed activity is not yet visible, then hold off on
3088 // finishing until the resumed one becomes visible.
3089 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003090 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
3091 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07003092 if (mStackSupervisor.mStoppingActivities.size() > 3
3093 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003094 // If we already have a few activities waiting to stop,
3095 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07003096 // them out. Or if r is the last of activity of the last task the stack
3097 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07003098 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003099 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003100 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003101 }
3102 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003103 if (DEBUG_STATES) Slog.v(TAG_STATES,
3104 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003105 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003106 if (oomAdj) {
3107 mService.updateOomAdjLocked();
3108 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003109 return r;
3110 }
3111
3112 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003113 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003114 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003115 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003116 if (mResumedActivity == r) {
3117 mResumedActivity = null;
3118 }
3119 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003120 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003121 r.state = ActivityState.FINISHING;
3122
3123 if (mode == FINISH_IMMEDIATELY
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003124 || (mode == FINISH_AFTER_PAUSE && prevState == ActivityState.PAUSED)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003125 || prevState == ActivityState.STOPPED
3126 || prevState == ActivityState.INITIALIZING) {
3127 // If this activity is already stopped, we can just finish
3128 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07003129 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003130 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003131 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003132 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003133 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003134 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003135 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3136 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003137 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003138 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003139
3140 // Need to go through the full pause cycle to get this
3141 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003142 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003143 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003144 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003145 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003146 return r;
3147 }
3148
Craig Mautneree36c772014-07-16 14:56:05 -07003149 void finishAllActivitiesLocked(boolean immediately) {
3150 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003151 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3152 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3153 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3154 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003155 noActivitiesInStack = false;
3156 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003157 continue;
3158 }
Craig Mautneree36c772014-07-16 14:56:05 -07003159 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003160 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3161 }
3162 }
Craig Mautneree36c772014-07-16 14:56:05 -07003163 if (noActivitiesInStack) {
3164 mActivityContainer.onTaskListEmptyLocked();
3165 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003166 }
3167
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003168 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3169 // Basic case: for simple app-centric recents, we need to recreate
3170 // the task if the affinity has changed.
3171 if (srec == null || srec.task.affinity == null ||
3172 !srec.task.affinity.equals(destAffinity)) {
3173 return true;
3174 }
3175 // Document-centric case: an app may be split in to multiple documents;
3176 // they need to re-create their task if this current activity is the root
3177 // of a document, unless simply finishing it will return them to the the
3178 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003179 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3180 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003181 // Okay, this activity is at the root of its task. What to do, what to do...
3182 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3183 // Finishing won't return to an application, so we need to recreate.
3184 return true;
3185 }
3186 // We now need to get the task below it to determine what to do.
3187 int taskIdx = mTaskHistory.indexOf(srec.task);
3188 if (taskIdx <= 0) {
3189 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3190 return false;
3191 }
3192 if (taskIdx == 0) {
3193 // At the bottom of the stack, nothing to go back to.
3194 return true;
3195 }
3196 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3197 if (!srec.task.affinity.equals(prevTask.affinity)) {
3198 // These are different apps, so need to recreate.
3199 return true;
3200 }
3201 }
3202 return false;
3203 }
3204
Wale Ogunwale7d701172015-03-11 15:36:30 -07003205 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003206 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003207 final TaskRecord task = srec.task;
3208 final ArrayList<ActivityRecord> activities = task.mActivities;
3209 final int start = activities.indexOf(srec);
3210 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003211 return false;
3212 }
3213 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003214 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003215 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003216 final ComponentName dest = destIntent.getComponent();
3217 if (start > 0 && dest != null) {
3218 for (int i = finishTo; i >= 0; i--) {
3219 ActivityRecord r = activities.get(i);
3220 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003221 r.info.name.equals(dest.getClassName())) {
3222 finishTo = i;
3223 parent = r;
3224 foundParentInTask = true;
3225 break;
3226 }
3227 }
3228 }
3229
3230 IActivityController controller = mService.mController;
3231 if (controller != null) {
3232 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3233 if (next != null) {
3234 // ask watcher if this is allowed
3235 boolean resumeOK = true;
3236 try {
3237 resumeOK = controller.activityResuming(next.packageName);
3238 } catch (RemoteException e) {
3239 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003240 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003241 }
3242
3243 if (!resumeOK) {
3244 return false;
3245 }
3246 }
3247 }
3248 final long origId = Binder.clearCallingIdentity();
3249 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003250 ActivityRecord r = activities.get(i);
3251 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003252 // Only return the supplied result for the first activity finished
3253 resultCode = Activity.RESULT_CANCELED;
3254 resultData = null;
3255 }
3256
3257 if (parent != null && foundParentInTask) {
3258 final int parentLaunchMode = parent.info.launchMode;
3259 final int destIntentFlags = destIntent.getFlags();
3260 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3261 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3262 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3263 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003264 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3265 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003266 } else {
3267 try {
3268 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3269 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07003270 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07003271 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003272 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07003273 -1, parent.launchedFromUid, 0, null, false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003274 foundParentInTask = res == ActivityManager.START_SUCCESS;
3275 } catch (RemoteException e) {
3276 foundParentInTask = false;
3277 }
3278 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003279 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003280 }
3281 }
3282 Binder.restoreCallingIdentity(origId);
3283 return foundParentInTask;
3284 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003285 /**
3286 * Perform the common clean-up of an activity record. This is called both
3287 * as part of destroyActivityLocked() (when destroying the client-side
3288 * representation) and cleaning things up as a result of its hosting
3289 * processing going away, in which case there is no remaining client-side
3290 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003291 *
3292 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003293 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003294 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3295 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003296 if (mResumedActivity == r) {
3297 mResumedActivity = null;
3298 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003299 if (mPausingActivity == r) {
3300 mPausingActivity = null;
3301 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003302 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003303
3304 r.configDestroy = false;
3305 r.frozenBeforeDestroy = false;
3306
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003307 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003308 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003309 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003310 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003311 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003312 }
3313
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003314 // Make sure this record is no longer in the pending finishes list.
3315 // This could happen, for example, if we are trimming activities
3316 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003317 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003318 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003319
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003320 // Remove any pending results.
3321 if (r.finishing && r.pendingResults != null) {
3322 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3323 PendingIntentRecord rec = apr.get();
3324 if (rec != null) {
3325 mService.cancelIntentSenderLocked(rec, false);
3326 }
3327 }
3328 r.pendingResults = null;
3329 }
3330
3331 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003332 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003333 }
3334
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003335 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003336 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003337 if (getVisibleBehindActivity() == r) {
3338 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003339 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003340 }
3341
3342 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003343 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003344 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003345 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003346 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003347 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003348 }
3349
Craig Mautner299f9602015-01-26 09:47:33 -08003350 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003351 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003352 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003353 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003354 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3355 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3356
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003357 r.takeFromHistory();
3358 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003359 if (DEBUG_STATES) Slog.v(TAG_STATES,
3360 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003361 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003362 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003363 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003364 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003365 if (VALIDATE_TOKENS) {
3366 validateAppTokensLocked();
3367 }
Craig Mautner312ba862014-02-10 17:55:01 -08003368 final TaskRecord task = r.task;
3369 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003370 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003371 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003372 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3373 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003374 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003375 }
Craig Mautner299f9602015-01-26 09:47:33 -08003376 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003377 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003378 cleanUpActivityServicesLocked(r);
3379 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003380 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003381
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003382 /**
3383 * Perform clean-up of service connections in an activity record.
3384 */
3385 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3386 // Throw away any services that have been bound by this activity.
3387 if (r.connections != null) {
3388 Iterator<ConnectionRecord> it = r.connections.iterator();
3389 while (it.hasNext()) {
3390 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003391 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003392 }
3393 r.connections = null;
3394 }
3395 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003396
Craig Mautneree2e45a2014-06-27 12:10:03 -07003397 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003398 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003399 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003400 mHandler.sendMessage(msg);
3401 }
3402
Craig Mautneree2e45a2014-06-27 12:10:03 -07003403 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003404 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003405 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003406 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3407 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3408 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3409 final ActivityRecord r = activities.get(activityNdx);
3410 if (r.finishing) {
3411 continue;
3412 }
3413 if (r.fullscreen) {
3414 lastIsOpaque = true;
3415 }
3416 if (owner != null && r.app != owner) {
3417 continue;
3418 }
3419 if (!lastIsOpaque) {
3420 continue;
3421 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003422 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003423 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003424 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003425 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003426 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003427 activityRemoved = true;
3428 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003429 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003430 }
3431 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003432 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003433 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003434 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003435 }
3436
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003437 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3438 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003439 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3440 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003441 + " pausing=" + mPausingActivity + " for reason " + reason);
3442 return destroyActivityLocked(r, true, reason);
3443 }
3444 return false;
3445 }
3446
3447 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3448 String reason) {
3449 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003450 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003451 int maxTasks = tasks.size() / 4;
3452 if (maxTasks < 1) {
3453 maxTasks = 1;
3454 }
3455 int numReleased = 0;
3456 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3457 final TaskRecord task = mTaskHistory.get(taskNdx);
3458 if (!tasks.contains(task)) {
3459 continue;
3460 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003461 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003462 int curNum = 0;
3463 final ArrayList<ActivityRecord> activities = task.mActivities;
3464 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3465 final ActivityRecord activity = activities.get(actNdx);
3466 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003467 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003468 + " in state " + activity.state + " resumed=" + mResumedActivity
3469 + " pausing=" + mPausingActivity + " for reason " + reason);
3470 destroyActivityLocked(activity, true, reason);
3471 if (activities.get(actNdx) != activity) {
3472 // Was removed from list, back up so we don't miss the next one.
3473 actNdx--;
3474 }
3475 curNum++;
3476 }
3477 }
3478 if (curNum > 0) {
3479 numReleased += curNum;
3480 maxTasks--;
3481 if (mTaskHistory.get(taskNdx) != task) {
3482 // The entire task got removed, back up so we don't miss the next one.
3483 taskNdx--;
3484 }
3485 }
3486 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003487 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3488 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003489 return numReleased;
3490 }
3491
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003492 /**
3493 * Destroy the current CLIENT SIDE instance of an activity. This may be
3494 * called both when actually finishing an activity, or when performing
3495 * a configuration switch where we destroy the current client-side object
3496 * but then create a new client-side object for this same HistoryRecord.
3497 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003498 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003499 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3500 "Removing activity from " + reason + ": token=" + r
3501 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003502 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003503 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003504 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003505
3506 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003507
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003508 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003509
3510 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003511
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003512 if (hadApp) {
3513 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003514 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003515 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3516 mService.mHeavyWeightProcess = null;
3517 mService.mHandler.sendEmptyMessage(
3518 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3519 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003520 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003521 // Update any services we are bound to that might care about whether
3522 // their client may have activities.
3523 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003524 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003525 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003526 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003527 }
3528 }
3529
3530 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003531
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003532 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003533 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003534 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003535 r.configChangeFlags);
3536 } catch (Exception e) {
3537 // We can just ignore exceptions here... if the process
3538 // has crashed, our death notification will clean things
3539 // up.
3540 //Slog.w(TAG, "Exception thrown during finish", e);
3541 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003542 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003543 removedFromHistory = true;
3544 skipDestroy = true;
3545 }
3546 }
3547
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003548 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003549
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003550 // If the activity is finishing, we need to wait on removing it
3551 // from the list to give it a chance to do its cleanup. During
3552 // that time it may make calls back with its token so we need to
3553 // be able to find it on the list and so we don't want to remove
3554 // it from the list yet. Otherwise, we can just immediately put
3555 // it in the destroyed state since we are not removing it from the
3556 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003557 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003558 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003559 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003560 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003561 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003562 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3563 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003564 if (DEBUG_STATES) Slog.v(TAG_STATES,
3565 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003566 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003567 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003568 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003569 }
3570 } else {
3571 // remove this record from the history.
3572 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003573 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003574 removedFromHistory = true;
3575 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003576 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003577 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003578 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003579 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003580 }
3581 }
3582
3583 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003584
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003585 if (!mLRUActivities.remove(r) && hadApp) {
3586 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3587 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003588
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003589 return removedFromHistory;
3590 }
3591
Craig Mautner299f9602015-01-26 09:47:33 -08003592 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003593 final long origId = Binder.clearCallingIdentity();
3594 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003595 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003596 if (r != null) {
3597 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003598 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003599 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003600
Wale Ogunwale60454db2015-01-23 16:05:07 -08003601 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003602 if (r.state == ActivityState.DESTROYING) {
3603 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003604 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003605 }
3606 }
Craig Mautner05d29032013-05-03 13:40:13 -07003607 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003608 } finally {
3609 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003610 }
3611 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003612
Todd Kennedyaab56db2015-01-30 09:39:53 -08003613 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003614 if (hasVisibleBehindActivity() &&
3615 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003616 if (r == topRunningActivityLocked(null)) {
3617 // Don't release the top activity if it has requested to run behind the next
3618 // activity.
3619 return;
3620 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003621 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003622 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003623 " thread=" + r.app.thread);
3624 if (r != null && r.app != null && r.app.thread != null) {
3625 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003626 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003627 } catch (RemoteException e) {
3628 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003629 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003630 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003631 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003632 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003633 }
3634 }
3635 }
3636
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003637 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003638 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3639 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003640 if (r != null) {
3641 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003642 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003643 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003644 }
3645 mStackSupervisor.resumeTopActivitiesLocked();
3646 }
3647
Jose Lima4b6c6692014-08-12 17:41:12 -07003648 boolean hasVisibleBehindActivity() {
3649 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003650 }
3651
Jose Lima4b6c6692014-08-12 17:41:12 -07003652 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003653 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003654 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003655 }
3656 }
3657
Jose Lima4b6c6692014-08-12 17:41:12 -07003658 ActivityRecord getVisibleBehindActivity() {
3659 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003660 }
3661
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003662 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3663 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003664 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003665 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3666 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003667 while (i > 0) {
3668 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003669 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003670 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003671 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003672 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003673 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003674 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003675 }
3676 }
3677 }
3678
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003679 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3680 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003681 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3682 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003683 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3684 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003685 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003686 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003687 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3688 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003689
3690 boolean hasVisibleActivities = false;
3691
3692 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003693 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003694 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3695 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003696 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3697 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3698 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3699 final ActivityRecord r = activities.get(activityNdx);
3700 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003701 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3702 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003703 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003704 if (r.visible) {
3705 hasVisibleActivities = true;
3706 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003707 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003708 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3709 // Don't currently have state for the activity, or
3710 // it is finishing -- always remove it.
3711 remove = true;
3712 } else if (r.launchCount > 2 &&
3713 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3714 // We have launched this activity too many times since it was
3715 // able to run, so give up and remove it.
3716 remove = true;
3717 } else {
3718 // The process may be gone, but the activity lives on!
3719 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003720 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003721 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003722 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3723 "Removing activity " + r + " from stack at " + i
3724 + ": haveState=" + r.haveState
3725 + " stateNotNeeded=" + r.stateNotNeeded
3726 + " finishing=" + r.finishing
3727 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003728 if (!r.finishing) {
3729 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3730 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3731 r.userId, System.identityHashCode(r),
3732 r.task.taskId, r.shortComponentName,
3733 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003734 if (r.state == ActivityState.RESUMED) {
3735 mService.updateUsageStats(r, false);
3736 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003737 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003738 } else {
3739 // We have the current state for this activity, so
3740 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003741 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3742 if (DEBUG_APP) Slog.v(TAG_APP,
3743 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003744 r.app = null;
3745 r.nowVisible = false;
3746 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003747 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003748 "App died, clearing saved state of " + r);
3749 r.icicle = null;
3750 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003751 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003752 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003753 if (remove) {
3754 removeActivityFromHistoryLocked(r, "appDied");
3755 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003756 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003757 }
3758 }
3759
3760 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003761 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003762
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003763 final void updateTransitLocked(int transit, Bundle options) {
3764 if (options != null) {
3765 ActivityRecord r = topRunningActivityLocked(null);
3766 if (r != null && r.state != ActivityState.RESUMED) {
3767 r.updateOptionsLocked(options);
3768 } else {
3769 ActivityOptions.abort(options);
3770 }
3771 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003772 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003773 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003774
Craig Mautner21d24a22014-04-23 11:45:37 -07003775 void updateTaskMovement(TaskRecord task, boolean toFront) {
3776 if (task.isPersistable) {
3777 task.mLastTimeMoved = System.currentTimeMillis();
3778 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3779 // recently will be most negative, tasks sent to the bottom before that will be less
3780 // negative. Similarly for recent tasks moved to the top which will be most positive.
3781 if (!toFront) {
3782 task.mLastTimeMoved *= -1;
3783 }
3784 }
3785 }
3786
Craig Mautner84984fa2014-06-19 11:19:20 -07003787 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003788 final int top = mTaskHistory.size() - 1;
3789 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3790 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003791 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003792 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3793 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003794 mTaskHistory.remove(taskNdx);
3795 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003796 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003797 return;
3798 }
3799 }
3800 }
3801
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003802 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003803 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003804 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003805
Craig Mautner11bf9a52013-02-19 14:08:51 -08003806 final int numTasks = mTaskHistory.size();
3807 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003808 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003809 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003810 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003811 ActivityOptions.abort(options);
3812 } else {
3813 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3814 }
3815 return;
3816 }
3817
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003818 if (timeTracker != null) {
3819 // The caller wants a time tracker associated with this task.
3820 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
3821 tr.mActivities.get(i).appTimeTracker = timeTracker;
3822 }
3823 }
3824
Craig Mautner11bf9a52013-02-19 14:08:51 -08003825 // Shift all activities with this task up to the top
3826 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07003827 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003828
Chong Zhang45c25ce2015-08-10 22:18:26 -07003829 // Don't refocus if invisible to current user
3830 ActivityRecord top = tr.getTopActivity();
3831 if (!okToShowLocked(top)) {
3832 addRecentActivityLocked(top);
3833 ActivityOptions.abort(options);
3834 return;
3835 }
3836
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003837 // Set focus to the top running activity of this stack.
3838 ActivityRecord r = topRunningActivityLocked(null);
3839 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003840
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003841 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003842 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003843 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003844 if (r != null) {
3845 mNoAnimActivities.add(r);
3846 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003847 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003848 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003849 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003850 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003851
Craig Mautner05d29032013-05-03 13:40:13 -07003852 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003853 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003854
3855 if (VALIDATE_TOKENS) {
3856 validateAppTokensLocked();
3857 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003858 }
3859
3860 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003861 * Worker method for rearranging history stack. Implements the function of moving all
3862 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003863 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003864 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003865 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3866 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003867 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003868 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003869 * @return Returns true if the move completed, false if not.
3870 */
Craig Mautner299f9602015-01-26 09:47:33 -08003871 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003872 final TaskRecord tr = taskForIdLocked(taskId);
3873 if (tr == null) {
3874 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3875 return false;
3876 }
3877
3878 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07003879 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003880
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003881 // If we have a watcher, preflight the move before committing to it. First check
3882 // for *other* available tasks, but if none are available, then try again allowing the
3883 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003884 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003885 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003886 if (next == null) {
3887 next = topRunningActivityLocked(null, 0);
3888 }
3889 if (next != null) {
3890 // ask watcher if this is allowed
3891 boolean moveOK = true;
3892 try {
3893 moveOK = mService.mController.activityResuming(next.packageName);
3894 } catch (RemoteException e) {
3895 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003896 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003897 }
3898 if (!moveOK) {
3899 return false;
3900 }
3901 }
3902 }
3903
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003904 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003905
riddle_hsuc215a4f2014-12-27 12:10:45 +08003906 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07003907
3908 // If true, we should resume the home activity next if the task we are moving to the
3909 // back is over the home stack. We force to false if the task we are moving to back
3910 // is the home task and we don't want it resumed after moving to the back.
3911 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
3912 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08003913 final TaskRecord nextTask = getNextTask(tr);
3914 if (nextTask != null) {
3915 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3916 } else {
3917 prevIsHome = true;
3918 }
3919 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003920 mTaskHistory.remove(tr);
3921 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003922 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003923
Craig Mautnerc8143c62013-09-03 12:15:57 -07003924 // There is an assumption that moving a task to the back moves it behind the home activity.
3925 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003926 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003927 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3928 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003929 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003930 break;
3931 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003932 if (taskNdx == 1) {
3933 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003934 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003935 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003936 }
3937
Craig Mautner299f9602015-01-26 09:47:33 -08003938 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003939 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003940
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003941 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003942 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003943 }
3944
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003945 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07003946 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003947 if (!mService.mBooting && !mService.mBooted) {
3948 // Not ready yet!
3949 return false;
3950 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003951 final int taskToReturnTo = tr.getTaskToReturnTo();
3952 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003953 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003954 }
3955
Craig Mautner05d29032013-05-03 13:40:13 -07003956 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003957 return true;
3958 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003959
Craig Mautner8849a5e2013-04-02 16:41:03 -07003960 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003961 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003962 final Uri data = r.intent.getData();
3963 final String strData = data != null ? data.toSafeString() : null;
3964
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003965 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003966 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003967 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003968 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003969 }
3970
3971 /**
3972 * Make sure the given activity matches the current configuration. Returns
3973 * false if the activity had to be destroyed. Returns true if the
3974 * configuration is the same, or the activity will remain running as-is
3975 * for whatever reason. Ensures the HistoryRecord is updated with the
3976 * correct configuration and all other bookkeeping is handled.
3977 */
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07003978 final boolean ensureActivityConfigurationLocked(ActivityRecord r, int globalChanges) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003979 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003980 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003981 "Skipping config check (will change): " + r);
3982 return true;
3983 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003984
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003985 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003986 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003987
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003988 // Short circuit: if the two configurations are the exact same
3989 // object (the common case), then there is nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003990 final Configuration newConfig = mService.mConfiguration;
3991 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003992 if (r.configuration == newConfig
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003993 && r.taskConfigOverride == taskConfig
Wale Ogunwale60454db2015-01-23 16:05:07 -08003994 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003995 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003996 "Configuration unchanged in " + r);
3997 return true;
3998 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003999
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004000 // We don't worry about activities that are finishing.
4001 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004002 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004003 "Configuration doesn't matter in finishing " + r);
4004 r.stopFreezingScreenLocked(false);
4005 return true;
4006 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004007
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004008 // Okay we now are going to make this activity have the new config.
4009 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08004010 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004011 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004012 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004013 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004014
Filip Gruszczynski23493322015-07-29 17:02:59 -07004015 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004016 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004017 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004018 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004019 "Configuration no differences in " + r);
4020 return true;
4021 }
4022
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004023 // If the activity isn't currently running, just leave the new
4024 // configuration and it will pick that up next time it starts.
4025 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004026 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004027 "Configuration doesn't matter not running " + r);
4028 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004029 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004030 return true;
4031 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004032
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004033 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004034 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4035 "Checking to restart " + r.info.name + ": changed=0x"
4036 + Integer.toHexString(changes) + ", handles=0x"
4037 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig);
4038
Dianne Hackborne6676352011-06-01 16:51:20 -07004039 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004040 // Aha, the activity isn't handling the change, so DIE DIE DIE.
4041 r.configChangeFlags |= changes;
4042 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004043 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004044 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004045 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004046 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004047 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004048 } else if (r.state == ActivityState.PAUSING) {
4049 // A little annoying: we are waiting for this activity to
4050 // finish pausing. Let's not do anything now, but just
4051 // flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004052 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004053 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004054 r.configDestroy = true;
4055 return true;
4056 } else if (r.state == ActivityState.RESUMED) {
4057 // Try to optimize this case: the configuration is changing
4058 // and we need to restart the top, resumed activity.
4059 // Instead of doing the normal handshaking, just say
4060 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004061 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004062 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004063 relaunchActivityLocked(r, r.configChangeFlags, true);
4064 r.configChangeFlags = 0;
4065 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004066 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004067 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004068 relaunchActivityLocked(r, r.configChangeFlags, false);
4069 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
Craig Mautner2568c3a2015-03-26 14:22:34 -07004161 private boolean relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004162 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004163 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004164 if (andResume) {
4165 results = r.results;
4166 newIntents = r.newIntents;
4167 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004168 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4169 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004170 + " andResume=" + andResume);
4171 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004172 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004173 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004174
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004175 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004176
Craig Mautner34b73df2014-01-12 21:11:08 -08004177 mStackSupervisor.removeChildActivityContainers(r);
4178
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004179 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004180 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
4181 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004182 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004183 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4184 !andResume, new Configuration(mService.mConfiguration),
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004185 new Configuration(r.task.mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004186 // Note: don't need to call pauseIfSleepingLocked() here, because
4187 // the caller will only pass in 'andResume' if this activity is
4188 // currently resumed, which implies we aren't sleeping.
4189 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004190 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004191 }
4192
4193 if (andResume) {
4194 r.results = null;
4195 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004196 r.state = ActivityState.RESUMED;
4197 } else {
4198 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4199 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004200 }
4201
4202 return true;
4203 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004204
4205 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004206 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4207 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4208 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4209 final ActivityRecord r = activities.get(activityNdx);
4210 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004211 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004212 }
4213 if (r.fullscreen && !r.finishing) {
4214 return false;
4215 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004216 }
4217 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004218 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004219 if (r == null) {
4220 return false;
4221 }
4222 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4223 + " would have returned true for r=" + r);
4224 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004225 }
4226
4227 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004228 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4229 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4230 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4231 final ActivityRecord r = activities.get(activityNdx);
4232 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004233 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004234 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004235 }
4236 }
4237 }
4238
Wale Ogunwale540e1232015-05-01 15:35:39 -07004239 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4240 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004241 boolean didSomething = false;
4242 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004243 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004244 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4245 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4246 int numActivities = activities.size();
4247 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4248 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004249 final boolean sameComponent =
4250 (r.packageName.equals(packageName) && (filterByClasses == null
4251 || filterByClasses.contains(r.realActivity.getClassName())))
4252 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004253 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004254 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004255 && (r.app == null || evenPersistent || !r.app.persistent)) {
4256 if (!doit) {
4257 if (r.finishing) {
4258 // If this activity is just finishing, then it is not
4259 // interesting as far as something to stop.
4260 continue;
4261 }
4262 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004263 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004264 if (r.isHomeActivity()) {
4265 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4266 Slog.i(TAG, "Skip force-stop again " + r);
4267 continue;
4268 } else {
4269 homeActivity = r.realActivity;
4270 }
4271 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004272 didSomething = true;
4273 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004274 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004275 if (r.app != null) {
4276 r.app.removed = true;
4277 }
4278 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004279 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004280 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004281 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4282 true)) {
4283 // r has been deleted from mActivities, accommodate.
4284 --numActivities;
4285 --activityNdx;
4286 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004287 }
4288 }
4289 }
4290 return didSomething;
4291 }
4292
Dianne Hackborn09233282014-04-30 11:33:59 -07004293 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004294 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4295 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004296 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004297 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004298 if (task.getTopActivity() == null) {
4299 continue;
4300 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004301 ActivityRecord r = null;
4302 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004303 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004304 int numActivities = 0;
4305 int numRunning = 0;
4306 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004307 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004308 continue;
4309 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004310 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004311 tmp = activities.get(activityNdx);
4312 if (tmp.finishing) {
4313 continue;
4314 }
4315 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004316
Craig Mautneraab647e2013-02-28 16:31:36 -08004317 // Initialize state for next task if needed.
4318 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4319 top = r;
4320 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004321 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004322
4323 // Add 'r' into the current task.
4324 numActivities++;
4325 if (r.app != null && r.app.thread != null) {
4326 numRunning++;
4327 }
4328
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004329 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004330 TAG, r.intent.getComponent().flattenToShortString()
4331 + ": task=" + r.task);
4332 }
4333
4334 RunningTaskInfo ci = new RunningTaskInfo();
4335 ci.id = task.taskId;
4336 ci.baseActivity = r.intent.getComponent();
4337 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004338 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004339 if (focusedStack && topTask) {
4340 // Give the latest time to ensure foreground task can be sorted
4341 // at the first, because lastActiveTime of creating task is 0.
4342 ci.lastActiveTime = System.currentTimeMillis();
4343 topTask = false;
4344 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004345
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004346 if (top.task != null) {
4347 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004348 }
4349 ci.numActivities = numActivities;
4350 ci.numRunning = numRunning;
Craig Mautneraab647e2013-02-28 16:31:36 -08004351 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004352 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004353 }
4354
4355 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004356 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004357 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004358 if (top >= 0) {
4359 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4360 int activityTop = activities.size() - 1;
4361 if (activityTop > 0) {
4362 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4363 "unhandled-back", true);
4364 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004365 }
4366 }
4367
Craig Mautner6b74cb52013-09-27 17:02:21 -07004368 /**
4369 * Reset local parameters because an app's activity died.
4370 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004371 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004372 */
4373 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004374 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004375 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004376 "App died while pausing: " + mPausingActivity);
4377 mPausingActivity = null;
4378 }
4379 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4380 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004381 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004382 }
4383
Craig Mautner19091252013-10-05 00:03:53 -07004384 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004385 }
4386
Craig Mautnercae015f2013-02-08 14:31:27 -08004387 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004388 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4389 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4390 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4391 final ActivityRecord r = activities.get(activityNdx);
4392 if (r.app == app) {
4393 Slog.w(TAG, " Force finishing activity "
4394 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004395 // Force the destroy to skip right to removal.
4396 r.app = null;
4397 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004398 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004399 }
4400 }
4401 }
4402
Dianne Hackborn390517b2013-05-30 15:03:32 -07004403 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004404 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004405 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004406 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4407 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004408 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4409 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004410 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07004411 " Task id #" + task.taskId + "\n" +
4412 " mFullscreen=" + task.mFullscreen + "\n" +
4413 " mBounds=" + task.mBounds + "\n" +
4414 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004415 if (printed) {
4416 header = null;
4417 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004418 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004419 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004420 }
4421
4422 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4423 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4424
4425 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004426 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4427 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004428 }
4429 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004430 final int top = mTaskHistory.size() - 1;
4431 if (top >= 0) {
4432 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4433 int listTop = list.size() - 1;
4434 if (listTop >= 0) {
4435 activities.add(list.get(listTop));
4436 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004437 }
4438 } else {
4439 ItemMatcher matcher = new ItemMatcher();
4440 matcher.build(name);
4441
Craig Mautneraab647e2013-02-28 16:31:36 -08004442 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4443 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4444 if (matcher.match(r1, r1.intent.getComponent())) {
4445 activities.add(r1);
4446 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004447 }
4448 }
4449 }
4450
4451 return activities;
4452 }
4453
4454 ActivityRecord restartPackage(String packageName) {
4455 ActivityRecord starting = topRunningActivityLocked(null);
4456
4457 // All activities that came from the package must be
4458 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004459 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4460 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4461 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4462 final ActivityRecord a = activities.get(activityNdx);
4463 if (a.info.packageName.equals(packageName)) {
4464 a.forceNewConfig = true;
4465 if (starting != null && a == starting && a.visible) {
4466 a.startFreezingScreenLocked(starting.app,
4467 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4468 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004469 }
4470 }
4471 }
4472
4473 return starting;
4474 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004475
Craig Mautner299f9602015-01-26 09:47:33 -08004476 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale040b4702015-08-06 18:10:50 -07004477 removeTask(task, reason, !MOVING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004478 }
4479
Wale Ogunwale000957c2015-04-03 08:19:12 -07004480 /**
4481 * Removes the input task from this stack.
4482 * @param task to remove.
4483 * @param reason for removal.
Wale Ogunwale040b4702015-08-06 18:10:50 -07004484 * @param moving task to another stack. In the case we are moving we don't want to perform
4485 * some operations on the task like removing it from window manager or recents.
Wale Ogunwale000957c2015-04-03 08:19:12 -07004486 */
Wale Ogunwale040b4702015-08-06 18:10:50 -07004487 void removeTask(TaskRecord task, String reason, boolean moving) {
4488 if (!moving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004489 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004490 mWindowManager.removeTask(task.taskId);
4491 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004492
Craig Mautner04a0ea62014-01-13 12:51:26 -08004493 final ActivityRecord r = mResumedActivity;
4494 if (r != null && r.task == task) {
4495 mResumedActivity = null;
4496 }
4497
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004498 final int taskNdx = mTaskHistory.indexOf(task);
4499 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004500 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4501 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4502 if (!nextTask.isOverHomeStack()) {
4503 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4504 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004505 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004506 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004507 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004508
Wale Ogunwale040b4702015-08-06 18:10:50 -07004509 if (!moving && task.mActivities.isEmpty()) {
Craig Mautner41db4a72014-05-07 17:20:56 -07004510 final boolean isVoiceSession = task.voiceSession != null;
4511 if (isVoiceSession) {
4512 try {
4513 task.voiceSession.taskFinished(task.intent, task.taskId);
4514 } catch (RemoteException e) {
4515 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004516 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004517 if (task.autoRemoveFromRecents() || isVoiceSession) {
4518 // Task creator asked to remove this when done, or this task was a voice
4519 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004520 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004521 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004522 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004523 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004524
4525 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004526 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004527 final boolean notHomeStack = !isHomeStack();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004528 if (isOnHomeDisplay()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004529 String myReason = reason + " leftTaskHistoryEmpty";
4530 if (mFullscreen || !adjustFocusToNextVisibleStackLocked(null, myReason)) {
4531 mStackSupervisor.moveHomeStack(notHomeStack, myReason);
4532 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004533 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004534 if (mStacks != null) {
4535 mStacks.remove(this);
4536 mStacks.add(0, this);
4537 }
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004538 if (notHomeStack) {
4539 mActivityContainer.onTaskListEmptyLocked();
4540 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004541 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004542
4543 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004544 }
4545
Dianne Hackborn91097de2014-04-04 18:02:06 -07004546 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4547 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4548 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004549 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4550 voiceInteractor);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004551 if (mTaskPositioner != null) {
Filip Gruszczynski9b1ce522015-08-20 18:37:19 -07004552 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, info.initialLayout);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004553 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004554 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004555 return task;
4556 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004557
4558 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004559 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004560 }
4561
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004562 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004563 task.stack = this;
4564 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004565 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004566 } else {
4567 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004568 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004569 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004570 if (!moving && task.voiceSession != null) {
4571 try {
4572 task.voiceSession.taskStarted(task.intent, task.taskId);
4573 } catch (RemoteException e) {
4574 }
4575 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004576 }
4577
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004578 void positionTask(final TaskRecord task, int position, boolean moving) {
4579 task.stack = this;
4580 insertTaskAtPosition(task, position);
4581 if (!moving && task.voiceSession != null) {
4582 try {
4583 task.voiceSession.taskStarted(task.intent, task.taskId);
4584 } catch (RemoteException e) {
4585 }
4586 }
4587 }
4588
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004589 void addConfigOverride(ActivityRecord r, TaskRecord task) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07004590 final Rect bounds = task.getLaunchBounds();
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07004591 final Configuration config = task.updateOverrideConfiguration(mStackId, bounds);
4592 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
4593 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
4594 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId,
4595 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind,
4596 bounds, config);
Wale Ogunwale706ed792015-08-02 10:29:44 -07004597 r.taskConfigOverride = task.mOverrideConfig;
4598 }
4599
4600 private void setAppTask(ActivityRecord r, TaskRecord task) {
4601 final Rect bounds = task.getLaunchBounds();
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07004602 final Configuration config = task.updateOverrideConfiguration(mStackId, bounds);
4603 mWindowManager.setAppTask(r.appToken, task.taskId, task.getLaunchBounds(), config);
Wale Ogunwale706ed792015-08-02 10:29:44 -07004604 r.taskConfigOverride = task.mOverrideConfig;
4605 }
4606
Craig Mautnerc00204b2013-03-05 15:02:14 -08004607 public int getStackId() {
4608 return mStackId;
4609 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004610
4611 @Override
4612 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004613 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4614 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004615 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004616
Craig Mautner15df08a2015-04-01 12:17:18 -07004617 void onLockTaskPackagesUpdatedLocked() {
4618 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4619 mTaskHistory.get(taskNdx).setLockTaskAuth();
4620 }
4621 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004622}