blob: 39895ac54e7fbdd33cb74b20aea46bd8ecdba635 [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 Ogunwale3797c222015-10-27 14:21:58 -070019import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
21import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
22import static android.app.ActivityManager.StackId.HOME_STACK_ID;
23import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080024import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
25import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
26import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
27import static android.content.pm.ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
Wale Ogunwale5658e4b2016-02-12 12:22:19 -080028import static android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070029import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -070030
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -080031import static android.content.res.Configuration.SCREENLAYOUT_UNDEFINED;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080032import static com.android.server.am.ActivityManagerDebugConfig.*;
Chong Zhang75b37202015-12-04 14:16:36 -080033import static com.android.server.am.ActivityManagerService.LOCK_SCREEN_SHOWN;
Craig Mautner84984fa2014-06-19 11:19:20 -070034import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
35import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070036
Wale Ogunwalef40c11b2016-02-26 08:16:02 -080037import static com.android.server.am.ActivityRecord.STARTING_WINDOW_REMOVED;
38import static com.android.server.am.ActivityRecord.STARTING_WINDOW_SHOWN;
Wale Ogunwale39381972015-12-17 17:15:29 -080039import static com.android.server.am.ActivityStackSupervisor.FindTaskResult;
Wale Ogunwale040b4702015-08-06 18:10:50 -070040import static com.android.server.am.ActivityStackSupervisor.MOVING;
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -070041import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Wale Ogunwale040b4702015-08-06 18:10:50 -070042
Winsonc809cbb2015-11-02 12:06:15 -080043import android.graphics.Point;
Wale Ogunwale706ed792015-08-02 10:29:44 -070044import android.graphics.Rect;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070045import android.util.ArraySet;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -070046
Dianne Hackborn91097de2014-04-04 18:02:06 -070047import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080048import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070049import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070050import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080051import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080052import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080053import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080054import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070055import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056
57import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070058import android.app.ActivityManager;
Wale Ogunwale3797c222015-10-27 14:21:58 -070059import android.app.ActivityManager.StackId;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070060import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080062import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080064import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070065import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070067import android.content.pm.ActivityInfo;
Todd Kennedy39bfee52016-02-24 10:28:21 -080068import android.content.pm.ApplicationInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080070import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080071import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070072import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070073import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080074import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070075import android.os.Handler;
76import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090077import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070078import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070079import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070080import android.os.RemoteException;
81import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080082import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070083import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070084import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070085import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070086import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070087import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070088
Craig Mautnercae015f2013-02-08 14:31:27 -080089import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080090import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070091import java.lang.ref.WeakReference;
92import java.util.ArrayList;
93import java.util.Iterator;
94import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080095import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070096import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070097
98/**
99 * State and management of a single stack of activities.
100 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -0700101final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800102
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800103 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700104 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
105 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800106 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700107 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700108 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700109 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700110 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700111 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700112 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
113 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700114 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700115 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700116 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
117 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
118 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
119 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
120 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700121
122 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800123
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700124 // Ticks during which we check progress while waiting for an app to launch.
125 static final int LAUNCH_TICK = 500;
126
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700127 // How long we wait until giving up on the last activity to pause. This
128 // is short because it directly impacts the responsiveness of starting the
129 // next activity.
130 static final int PAUSE_TIMEOUT = 500;
131
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700132 // How long we wait for the activity to tell us it has stopped before
133 // giving up. This is a good amount of time because we really need this
134 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700135 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700136
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700137 // How long we wait until giving up on an activity telling us it has
138 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700139 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800140
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700141 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800142 // disabled.
143 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800144
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700145 // How long between activity launches that we consider safe to not warn
146 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700147 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800148
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700149 // Set to false to disable the preview that is shown while a new activity
150 // is being started.
151 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800152
Craig Mautner5eda9b32013-07-02 11:58:16 -0700153 // How long to wait for all background Activities to redraw following a call to
154 // convertToTranslucent().
155 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
156
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -0800157 // How many activities have to be scheduled to stop to force a stop pass.
158 private static final int MAX_STOPPING_TO_FORCE = 3;
159
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700160 enum ActivityState {
161 INITIALIZING,
162 RESUMED,
163 PAUSING,
164 PAUSED,
165 STOPPING,
166 STOPPED,
167 FINISHING,
168 DESTROYING,
169 DESTROYED
170 }
171
Filip Gruszczynski0e381e22016-01-14 16:31:33 -0800172 // Stack is not considered visible.
173 static final int STACK_INVISIBLE = 0;
174 // Stack is considered visible
175 static final int STACK_VISIBLE = 1;
176 // Stack is considered visible, but only becuase it has activity that is visible behind other
177 // activities and there is a specific combination of stacks.
178 static final int STACK_VISIBLE_ACTIVITY_BEHIND = 2;
179
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700180 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700181 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800182 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800183
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700184 /**
185 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800186 * running) activities. It contains #TaskRecord objects.
187 */
Todd Kennedy39bfee52016-02-24 10:28:21 -0800188 private final ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800189
190 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800191 * Used for validating app tokens with window manager.
192 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800193 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800194
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700195 /**
196 * List of running activities, sorted by recent usage.
197 * The first entry in the list is the least recently used.
198 * It contains HistoryRecord objects.
199 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800200 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700201
202 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700203 * Animations that for the current transition have requested not to
204 * be considered for the transition animation.
205 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800206 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700207
208 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700209 * When we are in the process of pausing an activity, before starting the
210 * next one, this variable holds the activity that is currently being paused.
211 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800212 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700213
214 /**
215 * This is the last activity that we put into the paused state. This is
216 * used to determine if we need to do an activity transition while sleeping,
217 * when we normally hold the top activity paused.
218 */
219 ActivityRecord mLastPausedActivity = null;
220
221 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700222 * Activities that specify No History must be removed once the user navigates away from them.
223 * If the device goes to sleep with such an activity in the paused state then we save it here
224 * and finish it later if another activity replaces it on wakeup.
225 */
226 ActivityRecord mLastNoHistoryActivity = null;
227
228 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700229 * Current activity that is resumed, or null if there is none.
230 */
231 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800232
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700233 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700234 * This is the last activity that has been started. It is only used to
235 * identify when multiple activities are started at once so that the user
236 * can be warned they may not be in the activity they think they are.
237 */
238 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800239
Craig Mautner5eda9b32013-07-02 11:58:16 -0700240 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
241 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
242 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
243 // Activity in mTranslucentActivityWaiting is notified via
244 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
245 // background activity being drawn then the same call will be made with a true value.
246 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700247 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700248
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700249 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700250 * Set when we know we are going to be calling updateConfiguration()
251 * soon, so want to skip intermediate config checks.
252 */
253 boolean mConfigWillChange;
254
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700255 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800256 boolean mFullscreen = true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700257 // Current bounds of the stack or null if fullscreen.
258 Rect mBounds = null;
Todd Kennedyaab56db2015-01-30 09:39:53 -0800259
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700260 long mLaunchStartTime = 0;
261 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800262
Craig Mautner858d8a62013-04-23 17:08:34 -0700263 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700264
Craig Mautnerc00204b2013-03-05 15:02:14 -0800265 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800266 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800267 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
268 ArrayList<ActivityStack> mStacks;
269 /** The attached Display's unique identifier, or -1 if detached */
270 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800271
Craig Mautner27084302013-03-25 08:05:25 -0700272 /** Run all ActivityStacks through this */
273 final ActivityStackSupervisor mStackSupervisor;
274
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700275 private final LaunchingTaskPositioner mTaskPositioner;
276
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700277 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700278 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
279 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
280 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
281 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700282 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700283 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700284 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700285
286 static class ScheduleDestroyArgs {
287 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700288 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700289 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700290 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700291 mReason = reason;
292 }
293 }
294
Zoran Marcetaf958b322012-08-09 20:27:12 +0900295 final Handler mHandler;
296
297 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800298
Craig Mautnerc8143c62013-09-03 12:15:57 -0700299 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900300 super(looper);
301 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700302
Zoran Marcetaf958b322012-08-09 20:27:12 +0900303 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700304 public void handleMessage(Message msg) {
305 switch (msg.what) {
306 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800307 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700308 // We don't at this point know if the activity is fullscreen,
309 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800310 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700311 synchronized (mService) {
312 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700313 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700314 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700315 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800316 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700317 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700318 case LAUNCH_TICK_MSG: {
319 ActivityRecord r = (ActivityRecord)msg.obj;
320 synchronized (mService) {
321 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700322 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700323 }
324 }
325 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700326 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800327 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700328 // We don't at this point know if the activity is fullscreen,
329 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800330 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800331 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800332 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800333 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700334 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700335 case STOP_TIMEOUT_MSG: {
336 ActivityRecord r = (ActivityRecord)msg.obj;
337 // We don't at this point know if the activity is fullscreen,
338 // so we need to be conservative and assume it isn't.
339 Slog.w(TAG, "Activity stop timeout for " + r);
340 synchronized (mService) {
341 if (r.isInHistory()) {
342 activityStoppedLocked(r, null, null, null);
343 }
344 }
345 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700346 case DESTROY_ACTIVITIES_MSG: {
347 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
348 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700349 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700350 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700351 } break;
352 case TRANSLUCENT_TIMEOUT_MSG: {
353 synchronized (mService) {
354 notifyActivityDrawnLocked(null);
355 }
356 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700357 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700358 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700359 final ActivityRecord r = getVisibleBehindActivity();
360 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700361 if (r != null) {
362 mService.killAppAtUsersRequest(r.app, null);
363 }
364 }
365 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700366 }
367 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800368 }
369
Craig Mautner34b73df2014-01-12 21:11:08 -0800370 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800371 int count = 0;
372 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
373 count += mTaskHistory.get(taskNdx).mActivities.size();
374 }
375 return count;
376 }
377
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800378 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
379 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800380 mActivityContainer = activityContainer;
381 mStackSupervisor = activityContainer.getOuter();
382 mService = mStackSupervisor.mService;
383 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
384 mWindowManager = mService.mWindowManager;
385 mStackId = activityContainer.mStackId;
Fyodor Kupolovf63b89c2015-10-27 18:08:56 -0700386 mCurrentUser = mService.mUserController.getCurrentUserIdLocked();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800387 mRecentTasks = recentTasks;
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700388 mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
389 ? new LaunchingTaskPositioner() : null;
390 }
391
392 void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
393 mDisplayId = activityDisplay.mDisplayId;
394 mStacks = activityDisplay.mStacks;
395 mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
396 mFullscreen = mBounds == null;
397 if (mTaskPositioner != null) {
398 mTaskPositioner.setDisplay(activityDisplay.mDisplay);
399 mTaskPositioner.configure(mBounds);
400 }
Wale Ogunwale961f4852016-02-01 20:25:54 -0800401
402 if (mStackId == DOCKED_STACK_ID) {
403 // If we created a docked stack we want to resize it so it resizes all other stacks
404 // in the system.
405 mStackSupervisor.resizeDockedStackLocked(
406 mBounds, null, null, null, null, PRESERVE_WINDOWS);
407 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700408 }
409
410 void detachDisplay() {
411 mDisplayId = Display.INVALID_DISPLAY;
412 mStacks = null;
413 if (mTaskPositioner != null) {
414 mTaskPositioner.reset();
415 }
416 mWindowManager.detachStack(mStackId);
417 }
418
Winsonc809cbb2015-11-02 12:06:15 -0800419 public void getDisplaySize(Point out) {
420 mActivityContainer.mActivityDisplay.mDisplay.getSize(out);
421 }
422
Filip Gruszczynskie5390e72015-08-18 16:39:00 -0700423 void setBounds(Rect bounds) {
424 mBounds = mFullscreen ? null : new Rect(bounds);
Filip Gruszczynski9ac01a72015-09-04 11:12:17 -0700425 if (mTaskPositioner != null) {
426 mTaskPositioner.configure(bounds);
427 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700428 }
Craig Mautner5962b122012-10-05 14:45:52 -0700429
Amith Yamasani734983f2014-03-04 16:48:05 -0800430 boolean okToShowLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700431 return mStackSupervisor.okToShowLocked(r);
Craig Mautner5962b122012-10-05 14:45:52 -0700432 }
433
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700434 final ActivityRecord topRunningActivityLocked() {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800435 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700436 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
Craig Mautner6b74cb52013-09-27 17:02:21 -0700437 if (r != null) {
438 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800439 }
440 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700441 return null;
442 }
443
444 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800445 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
446 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800447 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800448 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
449 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800450 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800451 return r;
452 }
453 }
454 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700455 return null;
456 }
457
458 /**
459 * This is a simplified version of topRunningActivityLocked that provides a number of
460 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800461 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700462 * @param token If non-null, any history records matching this token will be skipped.
463 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800464 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700465 * @return Returns the HistoryRecord of the next activity on the stack.
466 */
467 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800468 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
469 TaskRecord task = mTaskHistory.get(taskNdx);
470 if (task.taskId == taskId) {
471 continue;
472 }
473 ArrayList<ActivityRecord> activities = task.mActivities;
474 for (int i = activities.size() - 1; i >= 0; --i) {
475 final ActivityRecord r = activities.get(i);
476 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800477 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800478 return r;
479 }
480 }
481 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700482 return null;
483 }
484
Craig Mautner8849a5e2013-04-02 16:41:03 -0700485 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700486 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
487 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700488 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
489 final ActivityRecord r = activities.get(activityNdx);
490 if (!r.finishing) {
491 return r;
492 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700493 }
494 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700495 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700496 }
497
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700498 final TaskRecord topTask() {
499 final int size = mTaskHistory.size();
500 if (size > 0) {
501 return mTaskHistory.get(size - 1);
502 }
503 return null;
504 }
505
Craig Mautnerd2328952013-03-05 12:46:26 -0800506 TaskRecord taskForIdLocked(int id) {
507 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
508 final TaskRecord task = mTaskHistory.get(taskNdx);
509 if (task.taskId == id) {
510 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800511 }
512 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700513 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700514 }
515
Craig Mautnerd2328952013-03-05 12:46:26 -0800516 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700517 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800518 return isInStackLocked(r);
519 }
520
521 ActivityRecord isInStackLocked(ActivityRecord r) {
522 if (r == null) {
523 return null;
524 }
525 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700526 if (task != null && task.stack != null
527 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800528 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800529 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800530 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800531 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800532 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800533 }
534
Craig Mautner2420ead2013-04-01 17:13:20 -0700535 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700536 final boolean hadit = mLRUActivities.remove(r);
537 mLRUActivities.add(r);
538 return hadit;
539 }
540
Craig Mautnerde4ef022013-04-07 19:01:33 -0700541 final boolean isHomeStack() {
542 return mStackId == HOME_STACK_ID;
543 }
544
Winson Chung0583d3d2015-12-18 10:03:12 -0500545 final boolean isDockedStack() {
546 return mStackId == DOCKED_STACK_ID;
547 }
548
549 final boolean isPinnedStack() {
550 return mStackId == PINNED_STACK_ID;
551 }
552
Craig Mautnere0a38842013-12-16 16:14:02 -0800553 final boolean isOnHomeDisplay() {
554 return isAttached() &&
555 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
556 }
557
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700558 void moveToFront(String reason) {
559 moveToFront(reason, null);
560 }
561
562 /**
563 * @param reason The reason for moving the stack to the front.
564 * @param task If non-null, the task will be moved to the top of the stack.
565 * */
566 void moveToFront(String reason, TaskRecord task) {
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700567 if (!isAttached()) {
568 return;
569 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700570
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700571 mStacks.remove(this);
572 int addIndex = mStacks.size();
573
574 if (addIndex > 0) {
575 final ActivityStack topStack = mStacks.get(addIndex - 1);
Filip Gruszczynski114d5ca2015-12-04 09:05:00 -0800576 if (StackId.isAlwaysOnTop(topStack.mStackId) && topStack != this) {
577 // If the top stack is always on top, we move this stack just below it.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700578 addIndex--;
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800579 }
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700580 }
581
582 mStacks.add(addIndex, this);
583
584 // TODO(multi-display): Needs to also work if focus is moving to the non-home display.
585 if (isOnHomeDisplay()) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800586 mStackSupervisor.setFocusStackUnchecked(reason, this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700587 }
588 if (task != null) {
589 insertTaskAtTop(task, null);
590 } else {
591 task = topTask();
592 }
593 if (task != null) {
594 mWindowManager.moveTaskToTop(task.taskId);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800595 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800596 }
597
Wale Ogunwaled046a012015-12-24 13:05:59 -0800598 boolean isFocusable() {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800599 if (StackId.canReceiveKeys(mStackId)) {
600 return true;
601 }
602 // The stack isn't focusable. See if its top activity is focusable to force focus on the
603 // stack.
604 final ActivityRecord r = topRunningActivityLocked();
605 return r != null && r.isFocusable();
Wale Ogunwaled046a012015-12-24 13:05:59 -0800606 }
607
Craig Mautnere0a38842013-12-16 16:14:02 -0800608 final boolean isAttached() {
609 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800610 }
611
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700612 /**
Wale Ogunwale39381972015-12-17 17:15:29 -0800613 * Returns the top activity in any existing task matching the given Intent in the input result.
614 * Returns null if no such task is found.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700615 */
Wale Ogunwale39381972015-12-17 17:15:29 -0800616 void findTaskLocked(ActivityRecord target, FindTaskResult result) {
Craig Mautnerac6f8432013-07-17 13:24:59 -0700617 Intent intent = target.intent;
618 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700619 ComponentName cls = intent.getComponent();
620 if (info.targetActivity != null) {
621 cls = new ComponentName(info.packageName, info.targetActivity);
622 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700623 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700624 boolean isDocument = intent != null & intent.isDocument();
625 // If documentData is non-null then it must match the existing task data.
626 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800627
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700628 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800629 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
630 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700631 if (task.voiceSession != null) {
632 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700633 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700634 continue;
635 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700636 if (task.userId != userId) {
637 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700638 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700639 continue;
640 }
Craig Mautner000f0022013-02-26 15:04:29 -0800641 final ActivityRecord r = task.getTopActivity();
642 if (r == null || r.finishing || r.userId != userId ||
643 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700644 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800645 continue;
646 }
Chong Zhangb546f7e2015-08-05 14:21:36 -0700647 if (r.mActivityType != target.mActivityType) {
648 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
649 continue;
650 }
Craig Mautner000f0022013-02-26 15:04:29 -0800651
Craig Mautnerd00f4742014-03-12 14:17:26 -0700652 final Intent taskIntent = task.intent;
653 final Intent affinityIntent = task.affinityIntent;
654 final boolean taskIsDocument;
655 final Uri taskDocumentData;
656 if (taskIntent != null && taskIntent.isDocument()) {
657 taskIsDocument = true;
658 taskDocumentData = taskIntent.getData();
659 } else if (affinityIntent != null && affinityIntent.isDocument()) {
660 taskIsDocument = true;
661 taskDocumentData = affinityIntent.getData();
662 } else {
663 taskIsDocument = false;
664 taskDocumentData = null;
665 }
666
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700667 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700668 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700669 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700670 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Wale Ogunwale39381972015-12-17 17:15:29 -0800671 if (!isDocument && !taskIsDocument
672 && result.r == null && task.canMatchRootAffinity()) {
Dianne Hackborn79228822014-09-16 11:11:23 -0700673 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwale39381972015-12-17 17:15:29 -0800674 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity candidate!");
675 // It is possible for multiple tasks to have the same root affinity especially
676 // if they are in separate stacks. We save off this candidate, but keep looking
677 // to see if there is a better candidate.
678 result.r = r;
679 result.matchedByRootAffinity = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700680 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700681 } else if (taskIntent != null && taskIntent.getComponent() != null &&
682 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700683 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700684 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800685 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700686 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
687 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800688 result.r = r;
689 result.matchedByRootAffinity = false;
690 break;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700691 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
692 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700693 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700694 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800695 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700696 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
697 "For Intent " + intent + " bringing to top: " + r.intent);
Wale Ogunwale39381972015-12-17 17:15:29 -0800698 result.r = r;
699 result.matchedByRootAffinity = false;
700 break;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700701 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700702 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700703 }
704
705 /**
706 * Returns the first activity (starting from the top of the stack) that
707 * is the same as the given activity. Returns null if no such activity
708 * is found.
709 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700710 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700711 ComponentName cls = intent.getComponent();
712 if (info.targetActivity != null) {
713 cls = new ComponentName(info.packageName, info.targetActivity);
714 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700715 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700716
Craig Mautner000f0022013-02-26 15:04:29 -0800717 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700718 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700719 final boolean notCurrentUserTask =
720 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700721 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700722
Craig Mautner000f0022013-02-26 15:04:29 -0800723 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
724 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700725 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700726 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700727 }
Craig Mautner000f0022013-02-26 15:04:29 -0800728 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700729 return r;
730 }
731 }
732 }
733
734 return null;
735 }
736
Amith Yamasani742a6712011-05-04 14:49:28 -0700737 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700738 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700739 */
Craig Mautner93529a42013-10-04 15:03:13 -0700740 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800741 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700742 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800743 }
744 mCurrentUser = userId;
745
746 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800747 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800748 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700749 final TaskRecord task = mTaskHistory.get(i);
750
751 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
752 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700753 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700754 || task.topRunningActivityLocked() != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700755 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700756 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800757 mTaskHistory.remove(i);
758 mTaskHistory.add(task);
759 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800760 // Use same value for i.
761 } else {
762 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800763 }
764 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700765 if (VALIDATE_TOKENS) {
766 validateAppTokensLocked();
767 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700768 }
769
Craig Mautner2420ead2013-04-01 17:13:20 -0700770 void minimalResumeActivityLocked(ActivityRecord r) {
771 r.state = ActivityState.RESUMED;
Wale Ogunwale5658e4b2016-02-12 12:22:19 -0800772 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + r + " (starting new instance)"
773 + " callers=" + Debug.getCallers(5));
Craig Mautner2420ead2013-04-01 17:13:20 -0700774 mResumedActivity = r;
775 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800776 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700777 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700778 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700779 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700780 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
781 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700782 }
783
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -0800784 void addRecentActivityLocked(ActivityRecord r) {
Chong Zhang45c25ce2015-08-10 22:18:26 -0700785 if (r != null) {
786 mRecentTasks.addLocked(r.task);
787 r.task.touchActiveTime();
788 }
789 }
790
Narayan Kamath7829c812015-06-08 17:39:43 +0100791 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700792 if (mFullyDrawnStartTime != 0) {
793 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
794 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100795 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700796 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
797 }
798
799 private void stopFullyDrawnTraceIfNeeded() {
800 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
801 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
802 mFullyDrawnStartTime = 0;
803 }
804 }
805
Craig Mautnere79d42682013-04-01 19:01:53 -0700806 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700807 if (r.displayStartTime == 0) {
808 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
809 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100810 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700811 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700812 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700813 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100814 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700815 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700816 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700817 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800818
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700819 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700820 // Make sure that there is no activity waiting for this to launch.
821 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
822 r.displayStartTime = r.fullyDrawnStartTime = 0;
823 } else {
824 mStackSupervisor.removeTimeoutsForActivityLocked(r);
825 mStackSupervisor.scheduleIdleTimeoutLocked(r);
826 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700827 }
828
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800829 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800830 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800831 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
832 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
833 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
834 activities.get(activityNdx).setSleeping(false);
835 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800836 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800837 if (mPausingActivity != null) {
838 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
839 activityPausedLocked(mPausingActivity.appToken, true);
840 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800841 }
842
Todd Kennedy39bfee52016-02-24 10:28:21 -0800843 void updateActivityApplicationInfoLocked(ApplicationInfo aInfo) {
844 final String packageName = aInfo.packageName;
845 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
846 final List<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
847 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
848 if (packageName.equals(activities.get(activityNdx).packageName)) {
849 activities.get(activityNdx).info.applicationInfo = aInfo;
850 }
851 }
852 }
853 }
854
Craig Mautner0eea92c2013-05-16 13:35:39 -0700855 /**
856 * @return true if something must be done before going to sleep.
857 */
858 boolean checkReadyForSleepLocked() {
859 if (mResumedActivity != null) {
860 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700861 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
862 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
863 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700864 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700865 return true;
866 }
867 if (mPausingActivity != null) {
868 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700869 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700870 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800871 }
872
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700873 if (hasVisibleBehindActivity()) {
874 // Stop visible behind activity before going to sleep.
Wale Ogunwale1f544be2015-12-17 10:27:23 -0800875 final ActivityRecord r = getVisibleBehindActivity();
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700876 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale1f544be2015-12-17 10:27:23 -0800877 if (DEBUG_STATES) Slog.v(TAG_STATES, "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700878 return true;
879 }
880
Craig Mautner0eea92c2013-05-16 13:35:39 -0700881 return false;
882 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800883
Craig Mautner0eea92c2013-05-16 13:35:39 -0700884 void goToSleep() {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -0700885 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800886
Craig Mautner0eea92c2013-05-16 13:35:39 -0700887 // Make sure any stopped but visible activities are now sleeping.
888 // This ensures that the activity's onStop() is called.
889 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
890 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
891 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
892 final ActivityRecord r = activities.get(activityNdx);
893 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
894 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800895 }
896 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800897 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700898 }
Craig Mautner59c00972012-07-30 12:10:24 -0700899
Winson8b1871d2015-11-20 09:56:20 -0800900 public final Bitmap screenshotActivitiesLocked(ActivityRecord who) {
901 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivitiesLocked: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800902 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700903 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800904 return null;
905 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800906
Winson Chung083baf92014-07-11 10:32:42 -0700907 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700908 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800909 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700910 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700911 return null;
912 }
913
Winson Chung48a10a52014-08-27 14:36:51 -0700914 int w = mService.mThumbnailWidth;
915 int h = mService.mThumbnailHeight;
Winson8b1871d2015-11-20 09:56:20 -0800916 float scale = 1f;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800917 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700918 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Winson8b1871d2015-11-20 09:56:20 -0800919
920 // When this flag is set, we currently take the fullscreen screenshot of the activity
Winson387aac62015-11-25 11:18:56 -0800921 // but scaled to half the size. This gives us a "good-enough" fullscreen thumbnail to
922 // use within SystemUI while keeping memory usage low.
Winson Chungead5c0f2015-12-14 11:18:57 -0500923 if (ActivityManagerService.TAKE_FULLSCREEN_SCREENSHOTS) {
Winson8b1871d2015-11-20 09:56:20 -0800924 w = h = -1;
Winson387aac62015-11-25 11:18:56 -0800925 scale = 0.5f;
Winson8b1871d2015-11-20 09:56:20 -0800926 }
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800927 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Winson8b1871d2015-11-20 09:56:20 -0800928 w, h, scale);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800929 }
Winson Chung376543b2014-05-21 17:43:28 -0700930 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800931 return null;
932 }
933
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700934 /**
935 * Start pausing the currently resumed activity. It is an error to call this if there
936 * is already an activity being paused or there is no resumed activity.
937 *
938 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
939 * @param uiSleeping True if this is happening with the user interface going to sleep (the
940 * screen turning off).
941 * @param resuming True if this is being called as part of resuming the top activity, so
942 * we shouldn't try to instigate a resume here.
943 * @param dontWait True if the caller does not want to wait for the pause to complete. If
944 * set to true, we will immediately complete the pause here before returning.
945 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
946 * it to tell us when it is done.
947 */
948 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
949 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800950 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800951 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
952 + " state=" + mPausingActivity.state);
953 if (!mService.isSleeping()) {
954 // Avoid recursion among check for sleep and complete pause during sleeping.
955 // Because activity will be paused immediately after resume, just let pause
956 // be completed by the order of activity paused from clients.
957 completePauseLocked(false);
958 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800959 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700960 ActivityRecord prev = mResumedActivity;
961 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700962 if (!resuming) {
963 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
Wale Ogunwaled046a012015-12-24 13:05:59 -0800964 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700965 }
966 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700967 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800968
969 if (mActivityContainer.mParentActivity == null) {
970 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700971 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800972 }
973
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700974 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700975 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700976 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800977 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700978 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700979 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
980 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700981 prev.state = ActivityState.PAUSING;
982 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700983 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700984 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwale979f5ed2015-10-12 11:22:50 -0700985 if (mService.mHasRecents
986 && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Jorim Jaggic2f262b2015-12-07 16:59:10 -0800987 prev.mUpdateTaskThumbnailWhenHidden = true;
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700988 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700989 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700990
991 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800992
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700993 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700994 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700995 try {
996 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700997 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700998 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700999 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001000 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001001 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001002 } catch (Exception e) {
1003 // Ignore exception, if process died other code will cleanup.
1004 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001005 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001006 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001007 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001008 }
1009 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001010 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001011 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07001012 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001013 }
1014
1015 // If we are not going to sleep, we want to ensure the device is
1016 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001017 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001018 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001019 }
1020
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001021 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001022 // Have the window manager pause its key dispatching until the new
1023 // activity has started. If we're pausing the activity just because
1024 // the screen is being turned off and the UI is sleeping, don't interrupt
1025 // key dispatch; the same activity will pick it up again on wakeup.
1026 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001027 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001028 } else if (DEBUG_PAUSE) {
1029 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001030 }
1031
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001032 if (dontWait) {
1033 // If the caller said they don't want to wait for the pause, then complete
1034 // the pause now.
1035 completePauseLocked(false);
1036 return false;
1037
1038 } else {
1039 // Schedule a pause timeout in case the app doesn't respond.
1040 // We don't give it much time because this directly impacts the
1041 // responsiveness seen by the user.
1042 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
1043 msg.obj = prev;
1044 prev.pauseTime = SystemClock.uptimeMillis();
1045 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001046 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001047 return true;
1048 }
1049
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001050 } else {
1051 // This activity failed to schedule the
1052 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001053 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001054 if (!resuming) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001055 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001056 }
1057 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001058 }
1059 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001060
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001061 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001062 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1063 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001064
Craig Mautnerd2328952013-03-05 12:46:26 -08001065 final ActivityRecord r = isInStackLocked(token);
1066 if (r != null) {
1067 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1068 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001069 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -08001070 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001071 completePauseLocked(true);
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001072 return;
Craig Mautnerd2328952013-03-05 12:46:26 -08001073 } else {
1074 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1075 r.userId, System.identityHashCode(r), r.shortComponentName,
1076 mPausingActivity != null
1077 ? mPausingActivity.shortComponentName : "(none)");
riddle_hsu9caeef72015-10-20 16:34:05 +08001078 if (r.state == ActivityState.PAUSING) {
1079 r.state = ActivityState.PAUSED;
1080 if (r.finishing) {
1081 if (DEBUG_PAUSE) Slog.v(TAG,
1082 "Executing finish of failed to pause activity: " + r);
1083 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1084 }
louis_chang047dfd42015-04-08 16:35:55 +08001085 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001086 }
1087 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001088 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001089 }
1090
Chong Zhangd78ddb42016-03-02 17:01:14 -08001091 final void activityResumedLocked(IBinder token) {
1092 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1093 if (DEBUG_SAVED_STATE) Slog.i(TAG_STATES, "Resumed activity; dropping state of: " + r);
1094 r.icicle = null;
1095 r.haveState = false;
1096 }
1097
Craig Mautnera0026042014-04-23 11:45:37 -07001098 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1099 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -07001100 if (r.state != ActivityState.STOPPING) {
1101 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1102 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1103 return;
1104 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001105 if (persistentState != null) {
1106 r.persistentState = persistentState;
1107 mService.notifyTaskPersisterLocked(r.task, false);
1108 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001109 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001110 if (icicle != null) {
1111 // If icicle is null, this is happening due to a timeout, so we
1112 // haven't really saved the state.
1113 r.icicle = icicle;
1114 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -08001115 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -08001116 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001117 }
1118 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001119 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001120 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1121 r.stopped = true;
1122 r.state = ActivityState.STOPPED;
Robert Carre12aece2016-02-02 22:43:27 -08001123
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08001124 mWindowManager.notifyAppStopped(r.appToken, true);
Robert Carre12aece2016-02-02 22:43:27 -08001125
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001126 if (getVisibleBehindActivity() == r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001127 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001128 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -07001129 if (r.finishing) {
1130 r.clearOptionsLocked();
1131 } else {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001132 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07001133 destroyActivityLocked(r, true, "stop-config");
Wale Ogunwaled046a012015-12-24 13:05:59 -08001134 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07001135 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -07001136 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -08001137 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001138 }
1139 }
1140 }
1141
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001142 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001143 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001144 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001145
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001146 if (prev != null) {
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001147 final boolean wasStopping = prev.state == ActivityState.STOPPING;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001148 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001149 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001150 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001151 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001152 } else if (prev.app != null) {
Wale Ogunwaled8026642016-02-09 20:40:18 -08001153 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueue pending stop if needed: " + prev
1154 + " wasStopping=" + wasStopping + " visible=" + prev.visible);
Craig Mautner8c14c152015-01-15 17:32:07 -08001155 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001156 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1157 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001158 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08001159 if (prev.deferRelaunchUntilPaused) {
1160 // Complete the deferred relaunch that was waiting for pause to complete.
1161 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Re-launching after pause: " + prev);
1162 relaunchActivityLocked(prev, prev.configChangeFlags, false,
1163 prev.preserveWindowOnDeferredRelaunch);
Filip Gruszczynskidba623a2015-12-04 15:45:35 -08001164 } else if (wasStopping) {
1165 // We are also stopping, the stop request must have gone soon after the pause.
1166 // We can't clobber it, because the stop confirmation will not be handled.
1167 // We don't need to schedule another stop, we only need to let it happen.
1168 prev.state = ActivityState.STOPPING;
Wale Ogunwaled8026642016-02-09 20:40:18 -08001169 } else if ((!prev.visible && !hasVisibleBehindActivity())
1170 || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001171 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001172 // stopping.
Chong Zhang46b1ac62016-02-18 17:53:57 -08001173 addToStopping(prev, true /* immediate */);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001174 }
1175 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001176 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001177 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001178 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001179 // It is possible the activity was freezing the screen before it was paused.
1180 // In that case go ahead and remove the freeze this activity has on the screen
1181 // since it is no longer visible.
1182 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001183 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001184 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001185
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001186 if (resumeNext) {
1187 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1188 if (!mService.isSleepingOrShuttingDown()) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001189 mStackSupervisor.resumeFocusedStackTopActivityLocked(topStack, prev, null);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001190 } else {
1191 mStackSupervisor.checkReadyForSleepLocked();
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001192 ActivityRecord top = topStack.topRunningActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001193 if (top == null || (prev != null && top != prev)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001194 // If there are no more activities available to run, do resume anyway to start
1195 // something. Also if the top activity on the stack is not the just paused
1196 // activity, we need to go ahead and resume it to ensure we complete an
1197 // in-flight app switch.
1198 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001199 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001200 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001201 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001202
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001203 if (prev != null) {
1204 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001205
Craig Mautner525f3d92013-05-07 14:01:50 -07001206 if (prev.app != null && prev.cpuTimeAtResume > 0
1207 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001208 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1209 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001210 if (diff > 0) {
1211 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1212 synchronized (bsi) {
1213 BatteryStatsImpl.Uid.Proc ps =
1214 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001215 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001216 if (ps != null) {
1217 ps.addForegroundTimeLocked(diff);
1218 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001219 }
1220 }
1221 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001222 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001223 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001224
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001225 // Notify when the task stack has changed, but only if visibilities changed (not just focus)
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001226 if (mStackSupervisor.mAppVisibilitiesChangedSinceLastPause) {
1227 mService.notifyTaskStackChangedLocked();
1228 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = false;
1229 }
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001230
1231 mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001232 }
1233
Chong Zhang46b1ac62016-02-18 17:53:57 -08001234 private void addToStopping(ActivityRecord r, boolean immediate) {
1235 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1236 mStackSupervisor.mStoppingActivities.add(r);
1237 }
1238
1239 // If we already have a few activities waiting to stop, then give up
1240 // on things going idle and start clearing them out. Or if r is the
1241 // last of activity of the last task the stack will be empty and must
1242 // be cleared immediately.
1243 boolean forceIdle = mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE
1244 || (r.frontOfTask && mTaskHistory.size() <= 1);
1245
1246 if (immediate || forceIdle) {
1247 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Scheduling idle now: forceIdle="
1248 + forceIdle + "immediate=" + immediate);
Filip Gruszczynskief2f72b2015-12-04 14:52:25 -08001249 mStackSupervisor.scheduleIdleLocked();
1250 } else {
1251 mStackSupervisor.checkReadyForSleepLocked();
1252 }
1253 }
1254
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001255 /**
1256 * Once we know that we have asked an application to put an activity in
1257 * the resumed state (either by launching it or explicitly telling it),
1258 * this function updates the rest of our state to match that fact.
1259 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001260 private void completeResumeLocked(ActivityRecord next) {
Chong Zhang2b79af12016-02-10 18:47:06 -08001261 next.visible = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001262 next.idle = false;
1263 next.results = null;
1264 next.newIntents = null;
Chong Zhang2b79af12016-02-10 18:47:06 -08001265 next.stopped = false;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001266
Chong Zhang85ee6542015-10-02 13:36:38 -07001267 if (next.isHomeActivity()) {
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001268 ProcessRecord app = next.task.mActivities.get(0).app;
1269 if (app != null && app != mService.mHomeProcess) {
1270 mService.mHomeProcess = app;
1271 }
1272 }
1273
Craig Mautner07566322013-09-26 16:42:55 -07001274 if (next.nowVisible) {
1275 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001276 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001277 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001278
1279 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001280 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001281
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001282 mStackSupervisor.reportResumedActivityLocked(next);
1283
1284 next.resumeKeyDispatchingLocked();
1285 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001286
1287 // Mark the point when the activity is resuming
1288 // TODO: To be more accurate, the mark should be before the onCreate,
1289 // not after the onResume. But for subsequent starts, onResume is fine.
1290 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001291 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001292 } else {
1293 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1294 }
Winson Chung376543b2014-05-21 17:43:28 -07001295
George Mount6ba042b2014-07-28 11:12:28 -07001296 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001297
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001298 if (getVisibleBehindActivity() == next) {
Craig Mautner64ccb702014-10-01 09:38:40 -07001299 // When resuming an activity, require it to call requestVisibleBehind() again.
Wale Ogunwale1f544be2015-12-17 10:27:23 -08001300 setVisibleBehindActivity(null);
Craig Mautner64ccb702014-10-01 09:38:40 -07001301 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001302 }
1303
Craig Mautner2568c3a2015-03-26 14:22:34 -07001304 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001305 r.visible = visible;
Jorim Jaggic2f262b2015-12-07 16:59:10 -08001306 if (!visible && r.mUpdateTaskThumbnailWhenHidden) {
1307 r.updateThumbnailLocked(r.task.stack.screenshotActivitiesLocked(r), null);
1308 r.mUpdateTaskThumbnailWhenHidden = false;
1309 }
Craig Mautnere3a00d72014-04-16 08:31:19 -07001310 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001311 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001312 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001313 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001314 container.setVisible(visible);
1315 }
Jorim Jaggia0fdeec2016-01-07 14:42:28 +01001316 mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001317 }
1318
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001319 // Find the first visible activity above the passed activity and if it is translucent return it
1320 // otherwise return null;
1321 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1322 TaskRecord task = r.task;
1323 if (task == null) {
1324 return null;
1325 }
1326
1327 ActivityStack stack = task.stack;
1328 if (stack == null) {
1329 return null;
1330 }
1331
1332 int stackNdx = mStacks.indexOf(stack);
1333
1334 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1335 int taskNdx = tasks.indexOf(task);
1336
1337 ArrayList<ActivityRecord> activities = task.mActivities;
1338 int activityNdx = activities.indexOf(r) + 1;
1339
1340 final int numStacks = mStacks.size();
1341 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001342 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001343 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001344 final int numTasks = tasks.size();
1345 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001346 final TaskRecord currentTask = tasks.get(taskNdx);
1347 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001348 final int numActivities = activities.size();
1349 while (activityNdx < numActivities) {
1350 final ActivityRecord activity = activities.get(activityNdx);
1351 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001352 return historyStack.mFullscreen
1353 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001354 }
1355 ++activityNdx;
1356 }
1357 activityNdx = 0;
1358 ++taskNdx;
1359 }
1360 taskNdx = 0;
1361 ++stackNdx;
1362 }
1363
1364 return null;
1365 }
1366
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001367 ActivityStack getNextFocusableStackLocked() {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001368 ArrayList<ActivityStack> stacks = mStacks;
1369 final ActivityRecord parent = mActivityContainer.mParentActivity;
1370 if (parent != null) {
1371 stacks = parent.task.stack.mStacks;
1372 }
1373 if (stacks != null) {
1374 for (int i = stacks.size() - 1; i >= 0; --i) {
1375 ActivityStack stack = stacks.get(i);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001376 if (stack != this && stack.isFocusable()
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001377 && stack.getStackVisibilityLocked(null) != STACK_INVISIBLE) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001378 return stack;
1379 }
1380 }
1381 }
1382 return null;
1383 }
1384
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001385 /** Returns true if the stack contains a fullscreen task. */
1386 private boolean hasFullscreenTask() {
1387 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1388 final TaskRecord task = mTaskHistory.get(i);
1389 if (task.mFullscreen) {
1390 return true;
1391 }
1392 }
1393 return false;
1394 }
1395
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001396 /**
1397 * Returns true if the stack is translucent and can have other contents visible behind it if
1398 * needed. A stack is considered translucent if it don't contain a visible or
1399 * starting (about to be visible) activity that is fullscreen (opaque).
1400 * @param starting The currently starting activity or null if there is none.
1401 */
1402 private boolean isStackTranslucent(ActivityRecord starting) {
1403 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1404 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001405 final ArrayList<ActivityRecord> activities = task.mActivities;
1406 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1407 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001408
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001409 // Conditions for an activity to obscure the stack we're
1410 // examining:
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001411 // 1. Not Finishing AND (Visible or the Starting activity) AND:
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001412 // 2. Either:
1413 // - Full Screen Activity OR
1414 // - On top of Home and our stack is NOT home
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001415 if (!r.finishing && (r.visible || r == starting) && (r.fullscreen ||
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001416 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
1417 return false;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001418 }
1419 }
1420 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001421 return true;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001422 }
1423
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001424 /**
1425 * Returns stack's visibility: {@link #STACK_INVISIBLE}, {@link #STACK_VISIBLE} or
1426 * {@link #STACK_VISIBLE_ACTIVITY_BEHIND}.
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001427 * @param starting The currently starting activity or null if there is none.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001428 */
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001429 int getStackVisibilityLocked(ActivityRecord starting) {
Jose Lima7ba71252014-04-30 12:59:27 -07001430 if (!isAttached()) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001431 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001432 }
1433
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001434 if (mStackSupervisor.isFrontStack(this) || mStackSupervisor.isFocusedStack(this)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001435 return STACK_VISIBLE;
Wale Ogunwale99db1862015-10-23 20:08:22 -07001436 }
1437
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001438 final int stackIndex = mStacks.indexOf(this);
1439
1440 if (stackIndex == mStacks.size() - 1) {
1441 Slog.wtf(TAG,
1442 "Stack=" + this + " isn't front stack but is at the top of the stack list");
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001443 return STACK_INVISIBLE;
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001444 }
1445
Chong Zhang75b37202015-12-04 14:16:36 -08001446 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
1447 if (isLockscreenShown && !StackId.isAllowedOverLockscreen(mStackId)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001448 return STACK_INVISIBLE;
Chong Zhang75b37202015-12-04 14:16:36 -08001449 }
1450
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001451 final ActivityStack focusedStack = mStackSupervisor.getFocusedStack();
1452 final int focusedStackId = focusedStack.mStackId;
1453
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001454 if (mStackId == FULLSCREEN_WORKSPACE_STACK_ID
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001455 && hasVisibleBehindActivity() && focusedStackId == HOME_STACK_ID
1456 && !focusedStack.topActivity().fullscreen) {
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001457 // The fullscreen stack should be visible if it has a visible behind activity behind
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001458 // the home stack that is translucent.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001459 return STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalecff4aa32015-12-11 10:44:25 -08001460 }
1461
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001462 if (mStackId == DOCKED_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001463 // Docked stack is always visible, except in the case where the top running activity
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001464 // task in the focus stack doesn't support any form of resizing but we show it for the
1465 // home task even though it's not resizable.
Wale Ogunwaled26176f2016-01-25 20:04:04 -08001466 final ActivityRecord r = focusedStack.topRunningActivityLocked();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001467 final TaskRecord task = r != null ? r.task : null;
Jorim Jaggi42625d1b2016-02-11 20:11:07 -08001468 return task == null || task.canGoInDockedStack() || task.isHomeTask() ? STACK_VISIBLE
1469 : STACK_INVISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001470 }
1471
Chong Zhangb16cf342015-11-12 17:22:40 -08001472 // Find the first stack below focused stack that actually got something visible.
1473 int belowFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1474 while (belowFocusedIndex >= 0 &&
1475 mStacks.get(belowFocusedIndex).topRunningActivityLocked() == null) {
1476 belowFocusedIndex--;
1477 }
Wale Ogunwale99db1862015-10-23 20:08:22 -07001478 if ((focusedStackId == DOCKED_STACK_ID || focusedStackId == PINNED_STACK_ID)
1479 && stackIndex == belowFocusedIndex) {
1480 // Stacks directly behind the docked or pinned stack are always visible.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001481 return STACK_VISIBLE;
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001482 }
1483
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001484 if (focusedStackId == FULLSCREEN_WORKSPACE_STACK_ID
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001485 && focusedStack.isStackTranslucent(starting)) {
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001486 // Stacks behind the fullscreen stack with a translucent activity are always
1487 // visible so they can act as a backdrop to the translucent activity.
1488 // For example, dialog activities
1489 if (stackIndex == belowFocusedIndex) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001490 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001491 }
1492 if (belowFocusedIndex >= 0) {
1493 final ActivityStack stack = mStacks.get(belowFocusedIndex);
Wale Ogunwale99db1862015-10-23 20:08:22 -07001494 if ((stack.mStackId == DOCKED_STACK_ID || stack.mStackId == PINNED_STACK_ID)
1495 && stackIndex == (belowFocusedIndex - 1)) {
1496 // The stack behind the docked or pinned stack is also visible so we can have a
1497 // complete backdrop to the translucent activity when the docked stack is up.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001498 return STACK_VISIBLE;
Wale Ogunwalebd26d2a2015-09-22 22:08:37 -07001499 }
1500 }
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001501 }
1502
Wale Ogunwale3797c222015-10-27 14:21:58 -07001503 if (StackId.isStaticStack(mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001504 // Visibility of any static stack should have been determined by the conditions above.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001505 return STACK_INVISIBLE;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001506 }
1507
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001508 for (int i = stackIndex + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001509 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001510
1511 if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1512 continue;
1513 }
1514
Wale Ogunwale3797c222015-10-27 14:21:58 -07001515 if (!StackId.isDynamicStacksVisibleBehindAllowed(stack.mStackId)) {
Wale Ogunwale1e3523c2015-09-16 13:11:10 -07001516 // These stacks can't have any dynamic stacks visible behind them.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001517 return STACK_INVISIBLE;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001518 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001519
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001520 if (!stack.isStackTranslucent(starting)) {
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001521 return STACK_INVISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001522 }
1523 }
1524
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001525 return STACK_VISIBLE;
Jose Lima7ba71252014-04-30 12:59:27 -07001526 }
1527
Chong Zhangfdcc4d42015-10-14 16:50:12 -07001528 final int rankTaskLayers(int baseLayer) {
1529 int layer = 0;
1530 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1531 final TaskRecord task = mTaskHistory.get(taskNdx);
1532 ActivityRecord r = task.topRunningActivityLocked();
1533 if (r == null || r.finishing || !r.visible) {
1534 task.mLayerRank = -1;
1535 } else {
1536 task.mLayerRank = baseLayer + layer++;
1537 }
1538 }
1539 return layer;
1540 }
1541
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001542 /**
1543 * Make sure that all activities that need to be visible (that is, they
1544 * currently can be seen by the user) actually are.
1545 */
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001546 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1547 boolean preserveWindows) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001548 ActivityRecord top = topRunningActivityLocked();
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001549 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001550 + " configChanges=0x" + Integer.toHexString(configChanges));
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001551 if (top != null) {
1552 checkTranslucentActivityWaiting(top);
1553 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001554
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001555 // If the top activity is not fullscreen, then we need to
1556 // make sure any activities under it are now visible.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001557 boolean aboveTop = top != null;
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08001558 final int stackVisibility = getStackVisibilityLocked(starting);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001559 final boolean stackInvisible = stackVisibility != STACK_VISIBLE;
1560 final boolean stackVisibleBehind = stackVisibility == STACK_VISIBLE_ACTIVITY_BEHIND;
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001561 boolean behindFullscreenActivity = stackInvisible;
Wale Ogunwaled046a012015-12-24 13:05:59 -08001562 boolean resumeNextActivity = isFocusable() && (isInStackLocked(starting) == null);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001563 boolean behindTranslucentActivity = false;
1564 final ActivityRecord visibleBehind = getVisibleBehindActivity();
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001565 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001566 final TaskRecord task = mTaskHistory.get(taskNdx);
1567 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001568 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1569 final ActivityRecord r = activities.get(activityNdx);
1570 if (r.finishing) {
1571 continue;
1572 }
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001573 final boolean isTop = r == top;
1574 if (aboveTop && !isTop) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001575 continue;
1576 }
1577 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001578 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1579 // but must be drawn initially for the animation as though they were visible.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001580 final boolean activityVisibleBehind =
1581 (behindTranslucentActivity || stackVisibleBehind) && visibleBehind == r;
1582 final boolean isVisible = (!behindFullscreenActivity || r.mLaunchTaskBehind
1583 || activityVisibleBehind) && okToShowLocked(r);
1584 if (isVisible) {
1585 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make visible? " + r
1586 + " finishing=" + r.finishing + " state=" + r.state);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001587 // First: if this is not the current activity being started, make
1588 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001589 if (r != starting) {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001590 ensureActivityConfigurationLocked(r, 0, preserveWindows);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001591 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001592
1593 if (r.app == null || r.app.thread == null) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001594 if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001595 resumeNextActivity, r)) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001596 if (activityNdx >= activities.size()) {
1597 // Record may be removed if its process needs to restart.
1598 activityNdx = activities.size() - 1;
1599 } else {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001600 resumeNextActivity = false;
riddle_hsu36ee73d2015-06-05 16:38:38 +08001601 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001602 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001603 } else if (r.visible) {
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001604 // If this activity is already visible, then there is nothing to do here.
1605 if (handleAlreadyVisible(r)) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001606 resumeNextActivity = false;
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001607 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001608 } else {
Jorim Jaggie66edb12016-02-05 12:41:17 -08001609 makeVisibleIfNeeded(starting, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001610 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001611 // Aggregate current change flags.
1612 configChanges |= r.configChangeFlags;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001613 behindFullscreenActivity = updateBehindFullscreen(stackInvisible,
1614 behindFullscreenActivity, task, r);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001615 if (behindFullscreenActivity && !r.fullscreen) {
1616 behindTranslucentActivity = true;
1617 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001618 } else {
Wale Ogunwale834c2362016-01-23 18:14:58 -08001619 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001620 + " finishing=" + r.finishing + " state=" + r.state + " stackInvisible="
1621 + stackInvisible + " behindFullscreenActivity="
1622 + behindFullscreenActivity + " mLaunchTaskBehind="
1623 + r.mLaunchTaskBehind);
1624 makeInvisible(r, visibleBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001625 }
1626 }
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001627 if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1628 // The visibility of tasks and the activities they contain in freeform stack are
1629 // determined individually unlike other stacks where the visibility or fullscreen
1630 // status of an activity in a previous task affects other.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001631 behindFullscreenActivity = stackVisibility == STACK_INVISIBLE;
Wale Ogunwale74e26592016-02-05 11:48:37 -08001632 } else if (mStackId == HOME_STACK_ID) {
1633 if (task.isHomeTask()) {
1634 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Home task: at " + task
1635 + " stackInvisible=" + stackInvisible
1636 + " behindFullscreenActivity=" + behindFullscreenActivity);
1637 // No other task in the home stack should be visible behind the home activity.
1638 // Home activities is usually a translucent activity with the wallpaper behind
1639 // them. However, when they don't have the wallpaper behind them, we want to
1640 // show activities in the next application stack behind them vs. another
1641 // task in the home stack like recents.
1642 behindFullscreenActivity = true;
1643 } else if (task.isRecentsTask()
1644 && task.getTaskToReturnTo() == APPLICATION_ACTIVITY_TYPE) {
1645 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1646 "Recents task returning to app: at " + task
1647 + " stackInvisible=" + stackInvisible
1648 + " behindFullscreenActivity=" + behindFullscreenActivity);
1649 // We don't want any other tasks in the home stack visible if the recents
1650 // activity is going to be returning to an application activity type.
1651 // We do this to preserve the visible order the user used to get into the
1652 // recents activity. The recents activity is normally translucent and if it
1653 // doesn't have the wallpaper behind it the next activity in the home stack
1654 // shouldn't be visible when the home stack is brought to the front to display
1655 // the recents activity from an app.
1656 behindFullscreenActivity = true;
1657 }
1658
Wale Ogunwalec219c0b2015-09-12 09:18:07 -07001659 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001660 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001661
1662 if (mTranslucentActivityWaiting != null &&
1663 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1664 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1665 notifyActivityDrawnLocked(null);
1666 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001667 }
Craig Mautner58547802013-03-05 08:23:53 -08001668
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001669 private void checkTranslucentActivityWaiting(ActivityRecord top) {
1670 if (mTranslucentActivityWaiting != top) {
1671 mUndrawnActivitiesBelowTopTranslucent.clear();
1672 if (mTranslucentActivityWaiting != null) {
1673 // Call the callback with a timeout indication.
1674 notifyActivityDrawnLocked(null);
1675 mTranslucentActivityWaiting = null;
1676 }
1677 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1678 }
1679 }
1680
1681 private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001682 boolean isTop, boolean andResume, ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001683 // We need to make sure the app is running if it's the top, or it is just made visible from
1684 // invisible. If the app is already visible, it must have died while it was visible. In this
1685 // case, we'll show the dead window but will not restart the app. Otherwise we could end up
1686 // thrashing.
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001687 if (isTop || !r.visible) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001688 // This activity needs to be visible, but isn't even running...
1689 // get it started and resume if no other stack in this stack is resumed.
1690 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
1691 if (r != starting) {
1692 r.startFreezingScreenLocked(r.app, configChanges);
1693 }
1694 if (!r.visible || r.mLaunchTaskBehind) {
1695 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
1696 setVisible(r, true);
1697 }
1698 if (r != starting) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001699 mStackSupervisor.startSpecificActivityLocked(r, andResume, false);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001700 return true;
1701 }
1702 }
1703 return false;
1704 }
1705
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001706 private void makeInvisible(ActivityRecord r, ActivityRecord visibleBehind) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001707 if (!r.visible) {
1708 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
1709 return;
1710 }
1711 // Now for any activities that aren't visible to the user, make sure they no longer are
1712 // keeping the screen frozen.
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08001713 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r + " " + r.state);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001714 try {
1715 setVisible(r, false);
1716 switch (r.state) {
1717 case STOPPING:
1718 case STOPPED:
1719 if (r.app != null && r.app.thread != null) {
1720 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1721 "Scheduling invisibility: " + r);
1722 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1723 }
1724 break;
1725
1726 case INITIALIZING:
1727 case RESUMED:
1728 case PAUSING:
1729 case PAUSED:
1730 // This case created for transitioning activities from
1731 // translucent to opaque {@link Activity#convertToOpaque}.
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001732 if (visibleBehind == r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001733 releaseBackgroundResources(r);
1734 } else {
Chong Zhang46b1ac62016-02-18 17:53:57 -08001735 addToStopping(r, true /* immediate */);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001736 }
1737 break;
1738
1739 default:
1740 break;
1741 }
1742 } catch (Exception e) {
1743 // Just skip on any failure; we'll make it visible when it next restarts.
1744 Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
1745 }
1746 }
1747
1748 private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
1749 TaskRecord task, ActivityRecord r) {
1750 if (r.fullscreen) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001751 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
Wale Ogunwale673cbd22016-01-30 18:30:55 -08001752 + " stackInvisible=" + stackInvisible
1753 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001754 // At this point, nothing else needs to be shown in this task.
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001755 behindFullscreenActivity = true;
Wale Ogunwale74e26592016-02-05 11:48:37 -08001756 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001757 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1758 + " stackInvisible=" + stackInvisible
1759 + " behindFullscreenActivity=" + behindFullscreenActivity);
Filip Gruszczynski0e381e22016-01-14 16:31:33 -08001760 behindFullscreenActivity = true;
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001761 }
1762 return behindFullscreenActivity;
1763 }
1764
Jorim Jaggie66edb12016-02-05 12:41:17 -08001765 private void makeVisibleIfNeeded(ActivityRecord starting, ActivityRecord r) {
1766
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001767 // This activity is not currently visible, but is running. Tell it to become visible.
Jorim Jaggie66edb12016-02-05 12:41:17 -08001768 if (r.state == ActivityState.RESUMED || r == starting) {
Chong Zhange05db742016-02-16 16:58:37 -08001769 if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY,
1770 "Not making visible, r=" + r + " state=" + r.state + " starting=" + starting);
Jorim Jaggie66edb12016-02-05 12:41:17 -08001771 return;
1772 }
1773
1774 // If this activity is paused, tell it to now show its window.
1775 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1776 "Making visible and scheduling visibility: " + r);
1777 try {
1778 if (mTranslucentActivityWaiting != null) {
1779 r.updateOptionsLocked(r.returningOptions);
1780 mUndrawnActivitiesBelowTopTranslucent.add(r);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001781 }
Jorim Jaggie66edb12016-02-05 12:41:17 -08001782 setVisible(r, true);
1783 r.sleeping = false;
1784 r.app.pendingUiClean = true;
1785 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1786 r.stopFreezingScreenLocked(false);
1787 } catch (Exception e) {
1788 // Just skip on any failure; we'll make it
1789 // visible when it next restarts.
1790 Slog.w(TAG, "Exception thrown making visibile: " + r.intent.getComponent(), e);
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001791 }
1792 }
1793
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08001794 private boolean handleAlreadyVisible(ActivityRecord r) {
Filip Gruszczynski9104aea2015-11-13 16:42:05 -08001795 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Skipping: already visible at " + r);
1796 r.stopFreezingScreenLocked(false);
1797 try {
1798 if (r.returningOptions != null) {
1799 r.app.thread.scheduleOnNewActivityOptions(r.appToken, r.returningOptions);
1800 }
1801 } catch(RemoteException e) {
1802 }
1803 return r.state == ActivityState.RESUMED;
1804 }
1805
Todd Kennedyaab56db2015-01-30 09:39:53 -08001806 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001807 mTranslucentActivityWaiting = r;
1808 mUndrawnActivitiesBelowTopTranslucent.clear();
1809 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1810 }
1811
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001812 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1813 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1814 final TaskRecord task = mTaskHistory.get(taskNdx);
1815 final ArrayList<ActivityRecord> activities = task.mActivities;
1816 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1817 final ActivityRecord r = activities.get(activityNdx);
1818 if ( r.appTimeTracker != except) {
1819 r.appTimeTracker = null;
1820 }
1821 }
1822 }
1823 }
1824
Craig Mautner5eda9b32013-07-02 11:58:16 -07001825 /**
1826 * Called as activities below the top translucent activity are redrawn. When the last one is
1827 * redrawn notify the top activity by calling
1828 * {@link Activity#onTranslucentConversionComplete}.
1829 *
1830 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1831 * occurred and the activity will be notified immediately.
1832 */
1833 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001834 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001835 if ((r == null)
1836 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1837 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1838 // The last undrawn activity below the top has just been drawn. If there is an
1839 // opaque activity at the top, notify it that it can become translucent safely now.
1840 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1841 mTranslucentActivityWaiting = null;
1842 mUndrawnActivitiesBelowTopTranslucent.clear();
1843 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1844
Craig Mautner71dd1b62014-02-18 15:48:52 -08001845 if (waitingActivity != null) {
1846 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1847 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1848 try {
1849 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1850 waitingActivity.appToken, r != null);
1851 } catch (RemoteException e) {
1852 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001853 }
1854 }
1855 }
1856 }
1857
Craig Mautnera61bc652013-10-28 15:43:18 -07001858 /** If any activities below the top running one are in the INITIALIZING state and they have a
1859 * starting window displayed then remove that starting window. It is possible that the activity
1860 * in this state will never resumed in which case that starting window will be orphaned. */
1861 void cancelInitializingActivities() {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001862 final ActivityRecord topActivity = topRunningActivityLocked();
Craig Mautnera61bc652013-10-28 15:43:18 -07001863 boolean aboveTop = true;
1864 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1865 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1866 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1867 final ActivityRecord r = activities.get(activityNdx);
1868 if (aboveTop) {
1869 if (r == topActivity) {
1870 aboveTop = false;
1871 }
1872 continue;
1873 }
1874
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08001875 if (r.state == ActivityState.INITIALIZING
1876 && r.mStartingWindowState == STARTING_WINDOW_SHOWN) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001877 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1878 "Found orphaned starting window " + r);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08001879 r.mStartingWindowState = STARTING_WINDOW_REMOVED;
Craig Mautnera61bc652013-10-28 15:43:18 -07001880 mWindowManager.removeAppStartingWindow(r.appToken);
1881 }
1882 }
1883 }
1884 }
1885
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001886 /**
1887 * Ensure that the top activity in the stack is resumed.
1888 *
1889 * @param prev The previously resumed activity, for when in the process
1890 * of pausing; can be null to call from elsewhere.
Wale Ogunwaled046a012015-12-24 13:05:59 -08001891 * @param options Activity options.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001892 *
1893 * @return Returns true if something is being resumed, or false if
1894 * nothing happened.
Wale Ogunwaled046a012015-12-24 13:05:59 -08001895 *
1896 * NOTE: It is not safe to call this method directly as it can cause an activity in a
1897 * non-focused stack to be resumed.
1898 * Use {@link ActivityStackSupervisor#resumeFocusedStackTopActivityLocked} to resume the
1899 * right activity for the current system state.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001900 */
Wale Ogunwaled046a012015-12-24 13:05:59 -08001901 boolean resumeTopActivityUncheckedLocked(ActivityRecord prev, ActivityOptions options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001902 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001903 // Don't even start recursing.
1904 return false;
1905 }
1906
1907 boolean result = false;
1908 try {
1909 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001910 mStackSupervisor.inResumeTopActivity = true;
1911 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1912 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001913 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001914 }
Craig Mautner544efa72014-09-04 16:41:20 -07001915 result = resumeTopActivityInnerLocked(prev, options);
1916 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001917 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001918 }
1919 return result;
1920 }
1921
Chong Zhang280d3322015-11-03 17:27:26 -08001922 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001923 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001924
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001925 if (!mService.mBooting && !mService.mBooted) {
1926 // Not ready yet!
1927 return false;
1928 }
1929
Craig Mautnerdf88d732014-01-27 09:21:32 -08001930 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001931 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001932 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001933 // Do not resume this stack if its parent is not resumed.
1934 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1935 return false;
1936 }
1937
Wale Ogunwale2be760d2016-02-17 11:16:10 -08001938 mStackSupervisor.cancelInitializingActivities();
Craig Mautnera61bc652013-10-28 15:43:18 -07001939
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001940 // Find the first activity that is not finishing.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001941 final ActivityRecord next = topRunningActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001942
1943 // Remember how we'll process this pause/resume situation, and ensure
1944 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001945 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1946 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001947
Craig Mautner84984fa2014-06-19 11:19:20 -07001948 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001949 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001950 // There are no more activities!
1951 final String reason = "noMoreActivities";
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001952 if (!mFullscreen && adjustFocusToNextFocusableStackLocked(reason)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001953 // Try to move focus to the next visible stack with a running activity if this
1954 // stack is not covering the entire screen.
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001955 return mStackSupervisor.resumeFocusedStackTopActivityLocked(
1956 mStackSupervisor.getFocusedStack(), prev, null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001957 }
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08001958
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001959 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001960 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001961 if (DEBUG_STATES) Slog.d(TAG_STATES,
1962 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001963 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001964 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001965 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1966 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1967 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001968 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001969 }
1970
1971 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001972
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001973 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001974 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1975 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001976 // Make sure we have executed any pending transitions, since there
1977 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001978 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001979 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001980 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001981 if (DEBUG_STATES) Slog.d(TAG_STATES,
1982 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001983 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001984 return false;
1985 }
1986
Craig Mautner525f3d92013-05-07 14:01:50 -07001987 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001988 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001989 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001990 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001991 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001992 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001993 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001994 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001995 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001996 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001997 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001998 } else if (!isOnHomeDisplay()) {
1999 return false;
2000 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002001 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08002002 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07002003 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
2004 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
2005 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08002006 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07002007 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002008 }
2009
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002010 // If we are sleeping, and there is no resumed activity, and the top
2011 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07002012 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09002013 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07002014 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002015 // Make sure we have executed any pending transitions, since there
2016 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002017 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002018 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07002019 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002020 if (DEBUG_STATES) Slog.d(TAG_STATES,
2021 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07002022 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002023 return false;
2024 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002025
2026 // Make sure that the user who owns this activity is started. If not,
2027 // we will just leave it as is because someone should be bringing
2028 // another user's activities to the top of the stack.
Fyodor Kupolov610acda2015-10-19 18:44:07 -07002029 if (!mService.mUserController.hasStartedUserState(next.userId)) {
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002030 Slog.w(TAG, "Skipping resume of top activity " + next
2031 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07002032 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07002033 return false;
2034 }
2035
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002036 // The activity may be waiting for stop, but that is no longer
2037 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002038 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002039 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002040 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07002041 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002042
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002043 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002044
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002045 // If we are currently pausing an activity, then don't do anything until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07002046 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002047 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002048 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07002049 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002050 return false;
2051 }
2052
Dianne Hackborn3d07c942015-03-13 18:02:54 -07002053 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
2054
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08002055 // We need to start pausing the current activity so the top one can be resumed...
2056 final boolean dontWaitForPause = (next.info.flags & FLAG_RESUME_WHILE_PAUSING) != 0;
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002057 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002058 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002059 if (DEBUG_STATES) Slog.d(TAG_STATES,
2060 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08002061 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07002062 }
2063 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002064 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002065 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002066 // At this point we want to put the upcoming activity's process
2067 // at the top of the LRU list, since we know we will be needing it
2068 // very soon and it would be a waste to let it get killed if it
2069 // happens to be sitting towards the end.
2070 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07002071 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07002072 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002073 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002074 return true;
2075 }
2076
Christopher Tated3f175c2012-06-14 14:16:54 -07002077 // If the most recent activity was noHistory but was only stopped rather
2078 // than stopped+finished because the device went to sleep, we need to make
2079 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07002080 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07002081 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002082 if (DEBUG_STATES) Slog.d(TAG_STATES,
2083 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07002084 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08002085 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07002086 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07002087 }
2088
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002089 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08002090 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2091 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002092 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002093 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2094 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002095 } else {
2096 // The next activity is already visible, so hide the previous
2097 // activity's windows right now so we can show the new one ASAP.
2098 // We only do this if the previous is finishing, which should mean
2099 // it is on top of the one being resumed so hiding it quickly
2100 // is good. Otherwise, we want to do the normal route of allowing
2101 // the resumed activity to be shown so we can decide if the
2102 // previous should actually be hidden depending on whether the
2103 // new one is found to be full-screen or not.
2104 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002105 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002106 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2107 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08002108 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002109 + ", nowVisible=" + next.nowVisible);
2110 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002111 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08002112 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002113 + ", waitingVisible="
2114 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2115 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002116 }
2117 }
2118 }
2119
Dianne Hackborne7f97212011-02-24 14:40:20 -08002120 // Launching this app's activity, make sure the app is no longer
2121 // considered stopped.
2122 try {
2123 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07002124 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08002125 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08002126 } catch (IllegalArgumentException e) {
2127 Slog.w(TAG, "Failed trying to unstop package "
2128 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08002129 }
2130
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002131 // We are starting up the next activity, so tell the window manager
2132 // that the previous one will be hidden soon. This way it can know
2133 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07002134 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002135 if (prev != null) {
2136 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002137 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002138 "Prepare close transition: prev=" + prev);
2139 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002140 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002141 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002142 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002143 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08002144 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
2145 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002146 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002147 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002148 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002149 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2150 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002151 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002152 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002153 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002154 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002155 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08002156 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07002157 : next.mLaunchTaskBehind
2158 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2159 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002160 }
2161 }
Craig Mautner967212c2013-04-13 21:10:58 -07002162 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002163 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002164 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002165 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002166 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002167 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002168 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002169 }
2170 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08002171
2172 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07002173 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08002174 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
2175 if (opts != null) {
2176 resumeAnimOptions = opts.toBundle();
2177 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002178 next.applyOptionsLocked();
2179 } else {
2180 next.clearOptionsLocked();
2181 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002182
Craig Mautnercf910b02013-04-23 11:23:27 -07002183 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002184 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002185 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002186
2187 // This activity is now becoming visible.
Jorim Jaggi1b025a62016-02-03 19:27:49 -08002188 if (!next.visible) {
2189 mWindowManager.setAppVisibility(next.appToken, true);
2190 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002191
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07002192 // schedule launch ticks to collect information about slow apps.
2193 next.startLaunchTickingLocked();
2194
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002195 ActivityRecord lastResumedActivity =
2196 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002197 ActivityState lastState = next.state;
2198
2199 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08002200
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002201 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002202 next.state = ActivityState.RESUMED;
2203 mResumedActivity = next;
2204 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08002205 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07002206 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002207 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07002208 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002209
2210 // Have the window manager re-evaluate the orientation of
2211 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07002212 boolean notUpdated = true;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002213 if (mStackSupervisor.isFocusedStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002214 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07002215 mService.mConfiguration,
2216 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2217 if (config != null) {
2218 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002219 }
Maxim Bogatov05075302015-05-19 18:33:08 -07002220 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002221 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002222
Craig Mautner525f3d92013-05-07 14:01:50 -07002223 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002224 // The configuration update wasn't able to keep the existing
2225 // instance of the activity, and instead started a new one.
2226 // We should be all done, but let's just make sure our activity
2227 // is still at the top and schedule another run if something
2228 // weird happened.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002229 ActivityRecord nextNext = topRunningActivityLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002230 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002231 "Activity config changed during resume: " + next
2232 + ", new next: " + nextNext);
2233 if (nextNext != next) {
2234 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07002235 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002236 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002237 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002238 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07002239 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002240 return true;
2241 }
Craig Mautnercf910b02013-04-23 11:23:27 -07002242 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002243 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002244 }
Craig Mautner58547802013-03-05 08:23:53 -08002245
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002246 try {
2247 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002248 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002249 if (a != null) {
2250 final int N = a.size();
2251 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002252 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2253 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002254 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002255 }
2256 }
2257
2258 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002259 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002260 }
2261
Wale Ogunwale8d5a5422016-03-03 18:28:21 -08002262 // Well the app will no longer be stopped.
2263 // Clear app token stopped state in window manager if needed.
2264 mWindowManager.notifyAppStopped(next.appToken, false);
2265
Craig Mautner299f9602015-01-26 09:47:33 -08002266 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2267 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08002268
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002269 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07002270 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07002271 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07002272 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07002273 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07002274 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08002275 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08002276
Craig Mautner0eea92c2013-05-16 13:35:39 -07002277 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002278
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002279 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002280 } catch (Exception e) {
2281 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002282 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002283 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002284 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002285 if (lastStack != null) {
2286 lastStack.mResumedActivity = lastResumedActivity;
2287 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002288 Slog.i(TAG, "Restarting because process died: " + next);
2289 if (!next.hasBeenLaunched) {
2290 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002291 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2292 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002293 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07002294 next.appToken, next.packageName, next.theme,
2295 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07002296 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
2297 next.windowFlags, null, true);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08002298 next.mStartingWindowState = STARTING_WINDOW_SHOWN;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002299 }
George Mount2c92c972014-03-20 09:38:23 -07002300 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002301 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002302 return true;
2303 }
2304
2305 // From this point on, if something goes wrong there is no way
2306 // to recover the activity.
2307 try {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002308 completeResumeLocked(next);
2309 } catch (Exception e) {
2310 // If any exception gets thrown, toss away this
2311 // activity and try the next one.
2312 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002313 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002314 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002315 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002316 return true;
2317 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002318 } else {
2319 // Whoops, need to restart this activity!
2320 if (!next.hasBeenLaunched) {
2321 next.hasBeenLaunched = true;
2322 } else {
2323 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002324 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002325 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002326 mService.compatibilityInfoForPackageLocked(
2327 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002328 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002329 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002330 null, true);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08002331 next.mStartingWindowState = STARTING_WINDOW_SHOWN;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002332 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002333 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002334 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002335 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002336 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002337 }
2338
Craig Mautnercf910b02013-04-23 11:23:27 -07002339 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002340 return true;
2341 }
2342
riddle_hsuc215a4f2014-12-27 12:10:45 +08002343 private TaskRecord getNextTask(TaskRecord targetTask) {
2344 final int index = mTaskHistory.indexOf(targetTask);
2345 if (index >= 0) {
2346 final int numTasks = mTaskHistory.size();
2347 for (int i = index + 1; i < numTasks; ++i) {
2348 TaskRecord task = mTaskHistory.get(i);
2349 if (task.userId == targetTask.userId) {
2350 return task;
2351 }
2352 }
2353 }
2354 return null;
2355 }
2356
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002357 private void insertTaskAtPosition(TaskRecord task, int position) {
2358 if (position >= mTaskHistory.size()) {
2359 insertTaskAtTop(task, null);
2360 return;
2361 }
2362 // Calculate maximum possible position for this task.
2363 int maxPosition = mTaskHistory.size();
2364 if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002365 && task.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002366 // Put non-current user tasks below current user tasks.
2367 while (maxPosition > 0) {
2368 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2369 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002370 || tmpTask.topRunningActivityLocked() == null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002371 break;
2372 }
2373 maxPosition--;
2374 }
2375 }
2376 position = Math.min(position, maxPosition);
2377 mTaskHistory.remove(task);
2378 mTaskHistory.add(position, task);
2379 updateTaskMovement(task, true);
2380 }
2381
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002382 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002383 // If the moving task is over home stack, transfer its return type to next task
2384 if (task.isOverHomeStack()) {
2385 final TaskRecord nextTask = getNextTask(task);
2386 if (nextTask != null) {
2387 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2388 }
2389 }
2390
Craig Mautner9c85c202013-10-04 20:11:26 -07002391 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002392 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002393 if (isOnHomeDisplay()) {
2394 ActivityStack lastStack = mStackSupervisor.getLastStack();
2395 final boolean fromHome = lastStack.isHomeStack();
2396 if (!isHomeStack() && (fromHome || topTask() != task)) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08002397 int returnToType = APPLICATION_ACTIVITY_TYPE;
2398 if (fromHome && StackId.allowTopTaskToReturnHome(mStackId)) {
2399 returnToType = lastStack.topTask() == null
2400 ? HOME_ACTIVITY_TYPE : lastStack.topTask().taskType;
2401 }
2402 task.setTaskToReturnTo(returnToType);
Craig Mautnere0a38842013-12-16 16:14:02 -08002403 }
2404 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002405 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002406 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002407
Craig Mautnerac6f8432013-07-17 13:24:59 -07002408 mTaskHistory.remove(task);
2409 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002410 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002411 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002412 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002413 || (newActivity == null && task.topRunningActivityLocked() == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002414 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002415 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002416 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002417 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002418 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07002419 || tmpTask.topRunningActivityLocked() == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002420 break;
2421 }
2422 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002423 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002424 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002425 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002426 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002427 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002428
Filip Gruszczynski3d82ed62015-12-10 10:41:39 -08002429 final void startActivityLocked(ActivityRecord r, boolean newTask, boolean keepCurTransition,
2430 ActivityOptions options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002431 TaskRecord rTask = r.task;
2432 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002433 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2434 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002435 // Last activity in task had been removed or ActivityManagerService is reusing task.
2436 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002437 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002438 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002439 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002440 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002441 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002442 if (!newTask) {
2443 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002444 boolean startIt = true;
2445 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2446 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002447 if (task.getTopActivity() == null) {
2448 // All activities in task are finishing.
2449 continue;
2450 }
Craig Mautner70a86932013-02-28 22:37:44 -08002451 if (task == r.task) {
2452 // Here it is! Now, if this is not yet visible to the
2453 // user, then just add it without starting; it will
2454 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002455 if (!startIt) {
2456 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2457 + task, new RuntimeException("here").fillInStackTrace());
2458 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002459 r.putInHistory();
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002460 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002461 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002462 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002463 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002464 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002465 return;
2466 }
2467 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002468 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002469 startIt = false;
2470 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002471 }
2472 }
2473
2474 // Place a new activity at top of stack, so it is next to interact
2475 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002476
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002477 // If we are not placing the new activity frontmost, we do not want
2478 // to deliver the onUserLeaving callback to the actual frontmost
2479 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002480 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002481 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002482 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002483 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002484 }
Craig Mautner70a86932013-02-28 22:37:44 -08002485
2486 task = r.task;
2487
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002488 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002489 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002490 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002491 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002492 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002493
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002494 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002495 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002496 // We want to show the starting preview window if we are
2497 // switching to a new task, or the next activity's process is
2498 // not currently running.
2499 boolean showStartingIcon = newTask;
2500 ProcessRecord proc = r.app;
2501 if (proc == null) {
2502 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2503 }
2504 if (proc == null || proc.thread == null) {
2505 showStartingIcon = true;
2506 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002507 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002508 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002509 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002510 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002511 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002512 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002513 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002514 ? r.mLaunchTaskBehind
2515 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2516 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002517 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002518 mNoAnimActivities.remove(r);
2519 }
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002520 addConfigOverride(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002521 boolean doShow = true;
2522 if (newTask) {
2523 // Even though this activity is starting fresh, we still need
2524 // to reset it to make sure we apply affinities to move any
2525 // existing activities from other tasks in to it.
2526 // If the caller has requested that the target task be
2527 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002528 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002529 resetTaskIfNeededLocked(r, r);
2530 doShow = topRunningNonDelayedActivityLocked(null) == r;
2531 }
Chong Zhang280d3322015-11-03 17:27:26 -08002532 } else if (options != null && options.getAnimationType()
George Mount70778d72014-07-01 16:33:45 -07002533 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2534 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002535 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002536 if (r.mLaunchTaskBehind) {
2537 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2538 // tell WindowManager that r is visible even though it is at the back of the stack.
2539 mWindowManager.setAppVisibility(r.appToken, true);
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07002540 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerbb742462014-07-07 15:28:55 -07002541 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002542 // Figure out if we are transitioning from another activity that is
2543 // "has the same starting icon" as the next one. This allows the
2544 // window manager to keep the previous window it had previously
2545 // created, if it still had one.
2546 ActivityRecord prev = mResumedActivity;
2547 if (prev != null) {
2548 // We don't want to reuse the previous starting preview if:
2549 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002550 if (prev.task != r.task) {
2551 prev = null;
2552 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002553 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002554 else if (prev.nowVisible) {
2555 prev = null;
2556 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002557 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002558 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002559 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002560 mService.compatibilityInfoForPackageLocked(
2561 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002562 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002563 prev != null ? prev.appToken : null, showStartingIcon);
Wale Ogunwalef40c11b2016-02-26 08:16:02 -08002564 r.mStartingWindowState = STARTING_WINDOW_SHOWN;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002565 }
2566 } else {
2567 // If this is the first activity, don't do any fancy animations,
2568 // because there is nothing for it to animate on top of.
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07002569 addConfigOverride(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002570 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002571 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002572 }
2573 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002574 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002575 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002576 }
2577
Dianne Hackbornbe707852011-11-11 14:32:10 -08002578 final void validateAppTokensLocked() {
2579 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002580 mValidateAppTokens.ensureCapacity(numActivities());
2581 final int numTasks = mTaskHistory.size();
2582 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2583 TaskRecord task = mTaskHistory.get(taskNdx);
2584 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002585 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002586 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002587 }
Craig Mautner000f0022013-02-26 15:04:29 -08002588 TaskGroup group = new TaskGroup();
2589 group.taskId = task.taskId;
2590 mValidateAppTokens.add(group);
2591 final int numActivities = activities.size();
2592 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2593 final ActivityRecord r = activities.get(activityNdx);
2594 group.tokens.add(r.appToken);
2595 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002596 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002597 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002598 }
2599
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002600 /**
2601 * Perform a reset of the given task, if needed as part of launching it.
2602 * Returns the new HistoryRecord at the top of the task.
2603 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002604 /**
2605 * Helper method for #resetTaskIfNeededLocked.
2606 * We are inside of the task being reset... we'll either finish this activity, push it out
2607 * for another task, or leave it as-is.
2608 * @param task The task containing the Activity (taskTop) that might be reset.
2609 * @param forceReset
2610 * @return An ActivityOptions that needs to be processed.
2611 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002612 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002613 ActivityOptions topOptions = null;
2614
2615 int replyChainEnd = -1;
2616 boolean canMoveOptions = true;
2617
2618 // We only do this for activities that are not the root of the task (since if we finish
2619 // the root, we may no longer have the task!).
2620 final ArrayList<ActivityRecord> activities = task.mActivities;
2621 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002622 final int rootActivityNdx = task.findEffectiveRootIndex();
2623 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002624 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002625 if (target.frontOfTask)
2626 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002627
2628 final int flags = target.info.flags;
2629 final boolean finishOnTaskLaunch =
2630 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2631 final boolean allowTaskReparenting =
2632 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2633 final boolean clearWhenTaskReset =
2634 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2635
2636 if (!finishOnTaskLaunch
2637 && !clearWhenTaskReset
2638 && target.resultTo != null) {
2639 // If this activity is sending a reply to a previous
2640 // activity, we can't do anything with it now until
2641 // we reach the start of the reply chain.
2642 // XXX note that we are assuming the result is always
2643 // to the previous activity, which is almost always
2644 // the case but we really shouldn't count on.
2645 if (replyChainEnd < 0) {
2646 replyChainEnd = i;
2647 }
2648 } else if (!finishOnTaskLaunch
2649 && !clearWhenTaskReset
2650 && allowTaskReparenting
2651 && target.taskAffinity != null
2652 && !target.taskAffinity.equals(task.affinity)) {
2653 // If this activity has an affinity for another
2654 // task, then we need to move it out of here. We will
2655 // move it as far out of the way as possible, to the
2656 // bottom of the activity stack. This also keeps it
2657 // correctly ordered with any activities we previously
2658 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002659 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002660 final ActivityRecord bottom =
2661 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002662 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002663 if (bottom != null && target.taskAffinity != null
2664 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002665 // If the activity currently at the bottom has the
2666 // same task affinity as the one we are moving,
2667 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002668 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002669 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002670 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002671 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08002672 targetTask = createTaskRecord(
2673 mStackSupervisor.getNextTaskIdForUserLocked(target.userId),
2674 target.info, null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002675 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002676 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002677 + " out to new task " + target.task);
2678 }
2679
Wale Ogunwale706ed792015-08-02 10:29:44 -07002680 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002681
Craig Mautner525f3d92013-05-07 14:01:50 -07002682 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002683 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2684 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002685 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002686 if (p.finishing) {
2687 continue;
2688 }
2689
Craig Mautnere3a74d52013-02-22 14:14:58 -08002690 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002691 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002692 topOptions = p.takeOptionsLocked();
2693 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002694 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002695 }
2696 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002697 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2698 "Removing activity " + p + " from task=" + task + " adding to task="
2699 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002700 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2701 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002702 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002703 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002704
Wale Ogunwale706ed792015-08-02 10:29:44 -07002705 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002706 }
2707
Wale Ogunwale706ed792015-08-02 10:29:44 -07002708 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002709 if (VALIDATE_TOKENS) {
2710 validateAppTokensLocked();
2711 }
2712
2713 replyChainEnd = -1;
2714 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2715 // If the activity should just be removed -- either
2716 // because it asks for it, or the task should be
2717 // cleared -- then finish it and anything that is
2718 // part of its reply chain.
2719 int end;
2720 if (clearWhenTaskReset) {
2721 // In this case, we want to finish this activity
2722 // and everything above it, so be sneaky and pretend
2723 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002724 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002725 } else if (replyChainEnd < 0) {
2726 end = i;
2727 } else {
2728 end = replyChainEnd;
2729 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002730 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002731 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002732 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002733 if (p.finishing) {
2734 continue;
2735 }
2736 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002737 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002738 topOptions = p.takeOptionsLocked();
2739 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002740 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002741 }
2742 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002743 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002744 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002745 if (finishActivityLocked(
2746 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002747 end--;
2748 srcPos--;
2749 }
2750 }
2751 replyChainEnd = -1;
2752 } else {
2753 // If we were in the middle of a chain, well the
2754 // activity that started it all doesn't want anything
2755 // special, so leave it all as-is.
2756 replyChainEnd = -1;
2757 }
2758 }
2759
2760 return topOptions;
2761 }
2762
2763 /**
2764 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2765 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2766 * @param affinityTask The task we are looking for an affinity to.
2767 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2768 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2769 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2770 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002771 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002772 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002773 int replyChainEnd = -1;
2774 final int taskId = task.taskId;
2775 final String taskAffinity = task.affinity;
2776
2777 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2778 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002779 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2780
2781 // Do not operate on or below the effective root Activity.
2782 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002783 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002784 if (target.frontOfTask)
2785 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002786
2787 final int flags = target.info.flags;
2788 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2789 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2790
2791 if (target.resultTo != null) {
2792 // If this activity is sending a reply to a previous
2793 // activity, we can't do anything with it now until
2794 // we reach the start of the reply chain.
2795 // XXX note that we are assuming the result is always
2796 // to the previous activity, which is almost always
2797 // the case but we really shouldn't count on.
2798 if (replyChainEnd < 0) {
2799 replyChainEnd = i;
2800 }
2801 } else if (topTaskIsHigher
2802 && allowTaskReparenting
2803 && taskAffinity != null
2804 && taskAffinity.equals(target.taskAffinity)) {
2805 // This activity has an affinity for our task. Either remove it if we are
2806 // clearing or move it over to our task. Note that
2807 // we currently punt on the case where we are resetting a
2808 // task that is not at the top but who has activities above
2809 // with an affinity to it... this is really not a normal
2810 // case, and we will need to later pull that task to the front
2811 // and usually at that point we will do the reset and pick
2812 // up those remaining activities. (This only happens if
2813 // someone starts an activity in a new task from an activity
2814 // in a task that is not currently on top.)
2815 if (forceReset || finishOnTaskLaunch) {
2816 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002817 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2818 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002819 for (int srcPos = start; srcPos >= i; --srcPos) {
2820 final ActivityRecord p = activities.get(srcPos);
2821 if (p.finishing) {
2822 continue;
2823 }
Todd Kennedy539db512014-12-15 09:57:55 -08002824 finishActivityLocked(
2825 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002826 }
2827 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002828 if (taskInsertionPoint < 0) {
2829 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002830
Craig Mautner77878772013-03-04 19:46:24 -08002831 }
Craig Mautner77878772013-03-04 19:46:24 -08002832
2833 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002834 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2835 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2836 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002837 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002838 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002839 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002840 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002841
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002842 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2843 "Removing and adding activity " + p + " to stack at " + task
2844 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002845 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2846 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002847 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002848 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002849 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002850 if (VALIDATE_TOKENS) {
2851 validateAppTokensLocked();
2852 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002853
2854 // Now we've moved it in to place... but what if this is
2855 // a singleTop activity and we have put it on top of another
2856 // instance of the same activity? Then we drop the instance
2857 // below so it remains singleTop.
2858 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2859 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002860 int targetNdx = taskActivities.indexOf(target);
2861 if (targetNdx > 0) {
2862 ActivityRecord p = taskActivities.get(targetNdx - 1);
2863 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002864 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2865 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002866 }
2867 }
2868 }
2869 }
2870
2871 replyChainEnd = -1;
2872 }
2873 }
Craig Mautner77878772013-03-04 19:46:24 -08002874 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002875 }
2876
Craig Mautner8849a5e2013-04-02 16:41:03 -07002877 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002878 ActivityRecord newActivity) {
2879 boolean forceReset =
2880 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2881 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2882 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2883 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2884 forceReset = true;
2885 }
2886 }
2887
2888 final TaskRecord task = taskTop.task;
2889
2890 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2891 * for remaining tasks. Used for later tasks to reparent to task. */
2892 boolean taskFound = false;
2893
2894 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2895 ActivityOptions topOptions = null;
2896
Craig Mautner77878772013-03-04 19:46:24 -08002897 // Preserve the location for reparenting in the new task.
2898 int reparentInsertionPoint = -1;
2899
Craig Mautnere3a74d52013-02-22 14:14:58 -08002900 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2901 final TaskRecord targetTask = mTaskHistory.get(i);
2902
2903 if (targetTask == task) {
2904 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2905 taskFound = true;
2906 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002907 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2908 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002909 }
2910 }
2911
Craig Mautner70a86932013-02-28 22:37:44 -08002912 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002913 if (taskNdx >= 0) {
2914 do {
2915 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2916 } while (taskTop == null && taskNdx >= 0);
2917 }
Craig Mautner70a86932013-02-28 22:37:44 -08002918
Craig Mautnere3a74d52013-02-22 14:14:58 -08002919 if (topOptions != null) {
2920 // If we got some ActivityOptions from an activity on top that
2921 // was removed from the task, propagate them to the new real top.
2922 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002923 taskTop.updateOptionsLocked(topOptions);
2924 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002925 topOptions.abort();
2926 }
2927 }
2928
2929 return taskTop;
2930 }
2931
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002932 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2933 String resultWho, int requestCode, int resultCode, Intent data) {
2934
2935 if (callingUid > 0) {
2936 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002937 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002938 }
2939
2940 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2941 + " : who=" + resultWho + " req=" + requestCode
2942 + " res=" + resultCode + " data=" + data);
2943 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2944 try {
2945 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2946 list.add(new ResultInfo(resultWho, requestCode,
2947 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002948 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002949 return;
2950 } catch (Exception e) {
2951 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2952 }
2953 }
2954
2955 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2956 }
2957
Craig Mautner299f9602015-01-26 09:47:33 -08002958 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08002959 if (!mStackSupervisor.isFocusedStack(this) || mService.mFocusedActivity != r) {
2960 return;
2961 }
2962
2963 final ActivityRecord next = topRunningActivityLocked();
2964 final String myReason = reason + " adjustFocus";
2965 if (next != r) {
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002966 if (next != null && StackId.keepFocusInStackIfPossible(mStackId) && isFocusable()) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08002967 // For freeform, docked, and pinned stacks we always keep the focus within the
2968 // stack as long as there is a running activity in the stack that we can adjust
2969 // focus to.
2970 mService.setFocusedActivityLocked(next, myReason);
2971 return;
2972 } else {
2973 final TaskRecord task = r.task;
2974 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
2975 // For non-fullscreen stack, we want to move the focus to the next visible
2976 // stack to prevent the home screen from moving to the top and obscuring
2977 // other visible stacks.
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002978 if (!mFullscreen && adjustFocusToNextFocusableStackLocked(myReason)) {
Wale Ogunwaled045c822015-12-02 09:14:28 -08002979 return;
2980 }
2981 // Move the home stack to the top if this stack is fullscreen or there is no
2982 // other visible stack.
2983 if (mStackSupervisor.moveHomeStackTaskToTop(
2984 task.getTaskToReturnTo(), myReason)) {
2985 // Activity focus was already adjusted. Nothing else to do...
2986 return;
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002987 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002988 }
2989 }
Wale Ogunwaled045c822015-12-02 09:14:28 -08002990 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002991
Wale Ogunwaled046a012015-12-24 13:05:59 -08002992 mService.setFocusedActivityLocked(mStackSupervisor.topRunningActivityLocked(), myReason);
Craig Mautner04f0b702013-10-22 12:31:01 -07002993 }
2994
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08002995 private boolean adjustFocusToNextFocusableStackLocked(String reason) {
2996 final ActivityStack stack = getNextFocusableStackLocked();
2997 final String myReason = reason + " adjustFocusToNextFocusableStack";
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002998 if (stack == null) {
2999 return false;
3000 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08003001 return mService.setFocusedActivityLocked(stack.topRunningActivityLocked(), myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08003002 }
3003
Craig Mautnerf3333272013-04-22 10:55:53 -07003004 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003005 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003006 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
3007 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
3008 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07003009 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003010 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003011 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
3012 "stop-no-history", false)) {
3013 // Activity was finished, no need to continue trying to schedule stop.
3014 adjustFocusedActivityLocked(r, "stopActivityFinished");
3015 r.resumeKeyDispatchingLocked();
3016 return;
3017 }
Christopher Tated3f175c2012-06-14 14:16:54 -07003018 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003019 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07003020 + " on stop because we're just sleeping");
3021 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003022 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07003023 }
3024
3025 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08003026 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003027 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003028 try {
3029 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003030 if (DEBUG_STATES) Slog.v(TAG_STATES,
3031 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003032 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003033 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
3034 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003035 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003036 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003037 }
Wale Ogunwalecd7043e2016-02-27 17:37:46 -08003038 EventLogTags.writeAmStopActivity(
3039 r.userId, System.identityHashCode(r), r.shortComponentName);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003040 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07003041 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08003042 r.setSleeping(true);
3043 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003044 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003045 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003046 } catch (Exception e) {
3047 // Maybe just ignore exceptions here... if the process
3048 // has crashed, our death notification will clean things
3049 // up.
3050 Slog.w(TAG, "Exception thrown during pause", e);
3051 // Just in case, assume it to be stopped.
3052 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003053 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003054 r.state = ActivityState.STOPPED;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003055 if (r.deferRelaunchUntilPaused) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003056 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003057 }
3058 }
3059 }
3060 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07003061
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003062 /**
3063 * @return Returns true if the activity is being finished, false if for
3064 * some reason it is being left as-is.
3065 */
3066 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003067 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003068 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003069 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
3070 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07003071 + ", result=" + resultCode + ", data=" + resultData
3072 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003073 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003074 return false;
3075 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003076
Craig Mautnerd44711d2013-02-23 11:24:36 -08003077 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003078 return true;
3079 }
3080
Craig Mautnerd2328952013-03-05 12:46:26 -08003081 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08003082 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3083 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3084 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3085 ActivityRecord r = activities.get(activityNdx);
3086 if (r.resultTo == self && r.requestCode == requestCode) {
3087 if ((r.resultWho == null && resultWho == null) ||
3088 (r.resultWho != null && r.resultWho.equals(resultWho))) {
3089 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
3090 false);
3091 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003092 }
3093 }
3094 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003095 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003096 }
3097
Adrian Roos20d7df32016-01-12 18:59:43 +01003098 final TaskRecord finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003099 ActivityRecord r = topRunningActivityLocked();
Adrian Roos20d7df32016-01-12 18:59:43 +01003100 TaskRecord finishedTask = null;
3101 if (r == null || r.app != app) {
3102 return null;
3103 }
3104 Slog.w(TAG, " Force finishing activity "
3105 + r.intent.getComponent().flattenToShortString());
3106 int taskNdx = mTaskHistory.indexOf(r.task);
3107 int activityNdx = r.task.mActivities.indexOf(r);
3108 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
3109 finishedTask = r.task;
3110 // Also terminate any activities below it that aren't yet
3111 // stopped, to avoid a situation where one will get
3112 // re-start our crashing activity once it gets resumed again.
3113 --activityNdx;
3114 if (activityNdx < 0) {
3115 do {
3116 --taskNdx;
3117 if (taskNdx < 0) {
3118 break;
3119 }
3120 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3121 } while (activityNdx < 0);
3122 }
3123 if (activityNdx >= 0) {
3124 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
3125 if (r.state == ActivityState.RESUMED
3126 || r.state == ActivityState.PAUSING
3127 || r.state == ActivityState.PAUSED) {
3128 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
3129 Slog.w(TAG, " Force finishing activity "
3130 + r.intent.getComponent().flattenToShortString());
3131 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003132 }
3133 }
3134 }
Adrian Roos20d7df32016-01-12 18:59:43 +01003135 return finishedTask;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003136 }
3137
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003138 final void finishVoiceTask(IVoiceInteractionSession session) {
3139 IBinder sessionBinder = session.asBinder();
3140 boolean didOne = false;
3141 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3142 TaskRecord tr = mTaskHistory.get(taskNdx);
3143 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3144 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3145 ActivityRecord r = tr.mActivities.get(activityNdx);
3146 if (!r.finishing) {
3147 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3148 false);
3149 didOne = true;
3150 }
3151 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003152 } else {
3153 // Check if any of the activities are using voice
3154 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3155 ActivityRecord r = tr.mActivities.get(activityNdx);
3156 if (r.voiceSession != null
3157 && r.voiceSession.asBinder() == sessionBinder) {
3158 // Inform of cancellation
3159 r.clearVoiceSessionLocked();
3160 try {
3161 r.app.thread.scheduleLocalVoiceInteractionStarted((IBinder) r.appToken,
3162 null);
3163 } catch (RemoteException re) {
3164 // Ok
3165 }
3166 // TODO: VI This is redundant in some cases
3167 mService.finishRunningVoiceLocked();
3168 break;
3169 }
3170 }
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003171 }
3172 }
Amith Yamasani0af6fa72016-01-17 15:36:19 -08003173 Slog.d(TAG, "ActivityStack.finishVoiceTask()");
3174
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07003175 if (didOne) {
3176 mService.updateOomAdjLocked();
3177 }
3178 }
3179
Craig Mautnerd2328952013-03-05 12:46:26 -08003180 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08003181 ArrayList<ActivityRecord> activities = r.task.mActivities;
3182 for (int index = activities.indexOf(r); index >= 0; --index) {
3183 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08003184 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003185 break;
3186 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003187 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07003188 }
3189 return true;
3190 }
3191
Dianne Hackborn5c607432012-02-28 14:44:19 -08003192 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
3193 // send the result
3194 ActivityRecord resultTo = r.resultTo;
3195 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003196 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08003197 + " who=" + r.resultWho + " req=" + r.requestCode
3198 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003199 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003200 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01003201 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01003202 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003203 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08003204 if (r.info.applicationInfo.uid > 0) {
3205 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3206 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01003207 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003208 }
3209 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3210 resultData);
3211 r.resultTo = null;
3212 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003213 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08003214
3215 // Make sure this HistoryRecord is not holding on to other resources,
3216 // because clients have remote IPC references to this object so we
3217 // can't assume that will go away and want to avoid circular IPC refs.
3218 r.results = null;
3219 r.pendingResults = null;
3220 r.newIntents = null;
3221 r.icicle = null;
3222 }
3223
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003224 /**
3225 * @return Returns true if this activity has been removed from the history
3226 * list, or false if it is still in the list and will be removed later.
3227 */
Craig Mautnerf3333272013-04-22 10:55:53 -07003228 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3229 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003230 if (r.finishing) {
3231 Slog.w(TAG, "Duplicate finish request for " + r);
3232 return false;
3233 }
3234
Wale Ogunwale7d701172015-03-11 15:36:30 -07003235 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08003236 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003237 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003238 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08003239 task.taskId, r.shortComponentName, reason);
3240 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003241 final int index = activities.indexOf(r);
3242 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003243 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07003244 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003245 // If the caller asked that this activity (and all above it)
3246 // be cleared when the task is reset, don't lose that information,
3247 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08003248 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003249 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003250 }
3251 }
3252
3253 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07003254
Craig Mautner299f9602015-01-26 09:47:33 -08003255 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003256
Dianne Hackborn5c607432012-02-28 14:44:19 -08003257 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07003258
Craig Mautnerde4ef022013-04-07 19:01:33 -07003259 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003260 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003261 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003262 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003263 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08003264 ? AppTransition.TRANSIT_TASK_CLOSE
3265 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08003266
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003267 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003268 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003269
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08003270 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003271 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3272 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3273 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07003274 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003275 }
3276
Craig Mautneraea74a52014-03-08 14:23:10 -08003277 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07003278 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08003279 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003280 } else if (r.state != ActivityState.PAUSING) {
3281 // If the activity is PAUSING, we will complete the finish once
3282 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003283 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Chong Zhang66ed4c62015-11-12 14:56:28 -08003284 if (r.visible) {
3285 mWindowManager.setAppVisibility(r.appToken, false);
3286 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08003287 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003288 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003289 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003290 }
3291
3292 return false;
3293 }
3294
Craig Mautnerf3333272013-04-22 10:55:53 -07003295 static final int FINISH_IMMEDIATELY = 0;
3296 static final int FINISH_AFTER_PAUSE = 1;
3297 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003298
Craig Mautnerf3333272013-04-22 10:55:53 -07003299 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003300 // First things first: if this activity is currently visible,
3301 // and the resumed activity is not yet visible, then hold off on
3302 // finishing until the resumed one becomes visible.
3303 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003304 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
Chong Zhang46b1ac62016-02-18 17:53:57 -08003305 addToStopping(r, false /* immediate */);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003306 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003307 if (DEBUG_STATES) Slog.v(TAG_STATES,
3308 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003309 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003310 if (oomAdj) {
3311 mService.updateOomAdjLocked();
3312 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003313 return r;
3314 }
3315
3316 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003317 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003318 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003319 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003320 if (mResumedActivity == r) {
3321 mResumedActivity = null;
3322 }
3323 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003324 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003325 r.state = ActivityState.FINISHING;
3326
3327 if (mode == FINISH_IMMEDIATELY
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003328 || (mode == FINISH_AFTER_PAUSE && prevState == ActivityState.PAUSED)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003329 || prevState == ActivityState.STOPPED
3330 || prevState == ActivityState.INITIALIZING) {
3331 // If this activity is already stopped, we can just finish
3332 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07003333 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003334 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003335 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003336 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003337 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003338 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003339 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3340 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003341 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003342 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003343
3344 // Need to go through the full pause cycle to get this
3345 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003346 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003347 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003348 r.resumeKeyDispatchingLocked();
Wale Ogunwaled046a012015-12-24 13:05:59 -08003349 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003350 return r;
3351 }
3352
Craig Mautneree36c772014-07-16 14:56:05 -07003353 void finishAllActivitiesLocked(boolean immediately) {
3354 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003355 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3356 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3357 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3358 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003359 noActivitiesInStack = false;
3360 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003361 continue;
3362 }
Craig Mautneree36c772014-07-16 14:56:05 -07003363 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003364 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3365 }
3366 }
Craig Mautneree36c772014-07-16 14:56:05 -07003367 if (noActivitiesInStack) {
3368 mActivityContainer.onTaskListEmptyLocked();
3369 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003370 }
3371
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003372 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3373 // Basic case: for simple app-centric recents, we need to recreate
3374 // the task if the affinity has changed.
3375 if (srec == null || srec.task.affinity == null ||
3376 !srec.task.affinity.equals(destAffinity)) {
3377 return true;
3378 }
3379 // Document-centric case: an app may be split in to multiple documents;
3380 // they need to re-create their task if this current activity is the root
3381 // of a document, unless simply finishing it will return them to the the
3382 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003383 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3384 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003385 // Okay, this activity is at the root of its task. What to do, what to do...
3386 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3387 // Finishing won't return to an application, so we need to recreate.
3388 return true;
3389 }
3390 // We now need to get the task below it to determine what to do.
3391 int taskIdx = mTaskHistory.indexOf(srec.task);
3392 if (taskIdx <= 0) {
3393 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3394 return false;
3395 }
3396 if (taskIdx == 0) {
3397 // At the bottom of the stack, nothing to go back to.
3398 return true;
3399 }
3400 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3401 if (!srec.task.affinity.equals(prevTask.affinity)) {
3402 // These are different apps, so need to recreate.
3403 return true;
3404 }
3405 }
3406 return false;
3407 }
3408
Wale Ogunwale7d701172015-03-11 15:36:30 -07003409 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003410 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003411 final TaskRecord task = srec.task;
3412 final ArrayList<ActivityRecord> activities = task.mActivities;
3413 final int start = activities.indexOf(srec);
3414 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003415 return false;
3416 }
3417 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003418 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003419 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003420 final ComponentName dest = destIntent.getComponent();
3421 if (start > 0 && dest != null) {
3422 for (int i = finishTo; i >= 0; i--) {
3423 ActivityRecord r = activities.get(i);
3424 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003425 r.info.name.equals(dest.getClassName())) {
3426 finishTo = i;
3427 parent = r;
3428 foundParentInTask = true;
3429 break;
3430 }
3431 }
3432 }
3433
3434 IActivityController controller = mService.mController;
3435 if (controller != null) {
3436 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3437 if (next != null) {
3438 // ask watcher if this is allowed
3439 boolean resumeOK = true;
3440 try {
3441 resumeOK = controller.activityResuming(next.packageName);
3442 } catch (RemoteException e) {
3443 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003444 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003445 }
3446
3447 if (!resumeOK) {
3448 return false;
3449 }
3450 }
3451 }
3452 final long origId = Binder.clearCallingIdentity();
3453 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003454 ActivityRecord r = activities.get(i);
3455 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003456 // Only return the supplied result for the first activity finished
3457 resultCode = Activity.RESULT_CANCELED;
3458 resultData = null;
3459 }
3460
3461 if (parent != null && foundParentInTask) {
3462 final int parentLaunchMode = parent.info.launchMode;
3463 final int destIntentFlags = destIntent.getFlags();
3464 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3465 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3466 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3467 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003468 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3469 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003470 } else {
3471 try {
3472 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3473 destIntent.getComponent(), 0, srec.userId);
Filip Gruszczynski303210b2016-01-08 16:28:08 -08003474 int res = mService.mActivityStarter.startActivityLocked(srec.app.thread,
3475 destIntent, null /*ephemeralIntent*/, null, aInfo, null /*rInfo*/, null,
3476 null, parent.appToken, null, 0, -1, parent.launchedFromUid,
Todd Kennedy7440f172015-12-09 14:31:22 -08003477 parent.launchedFromPackage, -1, parent.launchedFromUid, 0, null,
3478 false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003479 foundParentInTask = res == ActivityManager.START_SUCCESS;
3480 } catch (RemoteException e) {
3481 foundParentInTask = false;
3482 }
3483 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003484 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003485 }
3486 }
3487 Binder.restoreCallingIdentity(origId);
3488 return foundParentInTask;
3489 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003490 /**
3491 * Perform the common clean-up of an activity record. This is called both
3492 * as part of destroyActivityLocked() (when destroying the client-side
3493 * representation) and cleaning things up as a result of its hosting
3494 * processing going away, in which case there is no remaining client-side
3495 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003496 *
3497 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003498 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003499 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3500 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003501 if (mResumedActivity == r) {
3502 mResumedActivity = null;
3503 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003504 if (mPausingActivity == r) {
3505 mPausingActivity = null;
3506 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08003507 mService.resetFocusedActivityIfNeededLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003508
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003509 r.deferRelaunchUntilPaused = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003510 r.frozenBeforeDestroy = false;
3511
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003512 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003513 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003514 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003515 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003516 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003517 }
3518
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003519 // Make sure this record is no longer in the pending finishes list.
3520 // This could happen, for example, if we are trimming activities
3521 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003522 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003523 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003524
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003525 // Remove any pending results.
3526 if (r.finishing && r.pendingResults != null) {
3527 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3528 PendingIntentRecord rec = apr.get();
3529 if (rec != null) {
3530 mService.cancelIntentSenderLocked(rec, false);
3531 }
3532 }
3533 r.pendingResults = null;
3534 }
3535
3536 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003537 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003538 }
3539
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003540 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003541 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003542 if (getVisibleBehindActivity() == r) {
3543 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003544 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003545 }
3546
3547 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003548 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003549 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003550 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003551 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003552 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003553 }
3554
Craig Mautner299f9602015-01-26 09:47:33 -08003555 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003556 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003557 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003558 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003559 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3560 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3561
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003562 r.takeFromHistory();
3563 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003564 if (DEBUG_STATES) Slog.v(TAG_STATES,
3565 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003566 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003567 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003568 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003569 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003570 if (VALIDATE_TOKENS) {
3571 validateAppTokensLocked();
3572 }
Craig Mautner312ba862014-02-10 17:55:01 -08003573 final TaskRecord task = r.task;
3574 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003575 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003576 "removeActivityFromHistoryLocked: last activity removed from " + this);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07003577 if (mStackSupervisor.isFocusedStack(this) && task == topTask() &&
Craig Mautner84984fa2014-06-19 11:19:20 -07003578 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003579 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003580 }
Craig Mautner299f9602015-01-26 09:47:33 -08003581 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003582 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003583 cleanUpActivityServicesLocked(r);
3584 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003585 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003586
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003587 /**
3588 * Perform clean-up of service connections in an activity record.
3589 */
3590 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3591 // Throw away any services that have been bound by this activity.
3592 if (r.connections != null) {
3593 Iterator<ConnectionRecord> it = r.connections.iterator();
3594 while (it.hasNext()) {
3595 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003596 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003597 }
3598 r.connections = null;
3599 }
3600 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003601
Craig Mautneree2e45a2014-06-27 12:10:03 -07003602 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003603 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003604 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003605 mHandler.sendMessage(msg);
3606 }
3607
Craig Mautneree2e45a2014-06-27 12:10:03 -07003608 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003609 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003610 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003611 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3612 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3613 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3614 final ActivityRecord r = activities.get(activityNdx);
3615 if (r.finishing) {
3616 continue;
3617 }
3618 if (r.fullscreen) {
3619 lastIsOpaque = true;
3620 }
3621 if (owner != null && r.app != owner) {
3622 continue;
3623 }
3624 if (!lastIsOpaque) {
3625 continue;
3626 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003627 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003628 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003629 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003630 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003631 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003632 activityRemoved = true;
3633 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003634 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003635 }
3636 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003637 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08003638 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003639 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003640 }
3641
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003642 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3643 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003644 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3645 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003646 + " pausing=" + mPausingActivity + " for reason " + reason);
3647 return destroyActivityLocked(r, true, reason);
3648 }
3649 return false;
3650 }
3651
3652 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3653 String reason) {
3654 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003655 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003656 int maxTasks = tasks.size() / 4;
3657 if (maxTasks < 1) {
3658 maxTasks = 1;
3659 }
3660 int numReleased = 0;
3661 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3662 final TaskRecord task = mTaskHistory.get(taskNdx);
3663 if (!tasks.contains(task)) {
3664 continue;
3665 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003666 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003667 int curNum = 0;
3668 final ArrayList<ActivityRecord> activities = task.mActivities;
3669 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3670 final ActivityRecord activity = activities.get(actNdx);
3671 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003672 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003673 + " in state " + activity.state + " resumed=" + mResumedActivity
3674 + " pausing=" + mPausingActivity + " for reason " + reason);
3675 destroyActivityLocked(activity, true, reason);
3676 if (activities.get(actNdx) != activity) {
3677 // Was removed from list, back up so we don't miss the next one.
3678 actNdx--;
3679 }
3680 curNum++;
3681 }
3682 }
3683 if (curNum > 0) {
3684 numReleased += curNum;
3685 maxTasks--;
3686 if (mTaskHistory.get(taskNdx) != task) {
3687 // The entire task got removed, back up so we don't miss the next one.
3688 taskNdx--;
3689 }
3690 }
3691 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003692 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3693 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003694 return numReleased;
3695 }
3696
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003697 /**
3698 * Destroy the current CLIENT SIDE instance of an activity. This may be
3699 * called both when actually finishing an activity, or when performing
3700 * a configuration switch where we destroy the current client-side object
3701 * but then create a new client-side object for this same HistoryRecord.
3702 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003703 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003704 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3705 "Removing activity from " + reason + ": token=" + r
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07003706 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003707 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003708 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003709 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003710
3711 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003712
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003713 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003714
3715 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003716
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003717 if (hadApp) {
3718 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003719 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003720 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3721 mService.mHeavyWeightProcess = null;
3722 mService.mHandler.sendEmptyMessage(
3723 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3724 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003725 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003726 // Update any services we are bound to that might care about whether
3727 // their client may have activities.
3728 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003729 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003730 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003731 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003732 }
3733 }
3734
3735 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003736
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003737 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003738 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003739 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003740 r.configChangeFlags);
3741 } catch (Exception e) {
3742 // We can just ignore exceptions here... if the process
3743 // has crashed, our death notification will clean things
3744 // up.
3745 //Slog.w(TAG, "Exception thrown during finish", e);
3746 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003747 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003748 removedFromHistory = true;
3749 skipDestroy = true;
3750 }
3751 }
3752
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003753 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003754
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003755 // If the activity is finishing, we need to wait on removing it
3756 // from the list to give it a chance to do its cleanup. During
3757 // that time it may make calls back with its token so we need to
3758 // be able to find it on the list and so we don't want to remove
3759 // it from the list yet. Otherwise, we can just immediately put
3760 // it in the destroyed state since we are not removing it from the
3761 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003762 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003763 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003764 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003765 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003766 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003767 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3768 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003769 if (DEBUG_STATES) Slog.v(TAG_STATES,
3770 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003771 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003772 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003773 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003774 }
3775 } else {
3776 // remove this record from the history.
3777 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003778 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003779 removedFromHistory = true;
3780 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003781 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003782 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003783 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003784 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003785 }
3786 }
3787
3788 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003789
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003790 if (!mLRUActivities.remove(r) && hadApp) {
3791 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3792 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003793
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003794 return removedFromHistory;
3795 }
3796
Craig Mautner299f9602015-01-26 09:47:33 -08003797 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003798 final long origId = Binder.clearCallingIdentity();
3799 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003800 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003801 if (r != null) {
3802 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003803 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003804 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003805
Wale Ogunwale60454db2015-01-23 16:05:07 -08003806 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003807 if (r.state == ActivityState.DESTROYING) {
3808 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003809 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003810 }
3811 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08003812 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003813 } finally {
3814 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003815 }
3816 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003817
Todd Kennedyaab56db2015-01-30 09:39:53 -08003818 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003819 if (hasVisibleBehindActivity() &&
3820 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Wale Ogunwale8051c5c2016-03-04 10:27:32 -08003821 if (r == topRunningActivityLocked()
3822 && getStackVisibilityLocked(null) == STACK_VISIBLE) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003823 // Don't release the top activity if it has requested to run behind the next
Filip Gruszczynski4e7fe712016-01-13 13:22:44 -08003824 // activity and the stack is currently visible.
Craig Mautner64ccb702014-10-01 09:38:40 -07003825 return;
3826 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003827 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003828 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003829 " thread=" + r.app.thread);
3830 if (r != null && r.app != null && r.app.thread != null) {
3831 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003832 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003833 } catch (RemoteException e) {
3834 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003835 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003836 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003837 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003838 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003839 }
3840 }
3841 }
3842
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003843 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003844 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3845 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003846 if (r != null) {
3847 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003848 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003849 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003850 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08003851 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003852 }
3853
Jose Lima4b6c6692014-08-12 17:41:12 -07003854 boolean hasVisibleBehindActivity() {
3855 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003856 }
3857
Jose Lima4b6c6692014-08-12 17:41:12 -07003858 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003859 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003860 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003861 }
3862 }
3863
Jose Lima4b6c6692014-08-12 17:41:12 -07003864 ActivityRecord getVisibleBehindActivity() {
3865 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003866 }
3867
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003868 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3869 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003870 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003871 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3872 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003873 while (i > 0) {
3874 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003875 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003876 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003877 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003878 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003879 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003880 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003881 }
3882 }
3883 }
3884
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003885 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3886 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003887 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3888 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003889 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3890 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003891 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003892 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003893 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3894 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003895
3896 boolean hasVisibleActivities = false;
3897
3898 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003899 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003900 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3901 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003902 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3903 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3904 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3905 final ActivityRecord r = activities.get(activityNdx);
3906 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003907 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3908 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003909 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003910 if (r.visible) {
3911 hasVisibleActivities = true;
3912 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003913 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003914 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3915 // Don't currently have state for the activity, or
3916 // it is finishing -- always remove it.
3917 remove = true;
Chong Zhang112eb8c2015-11-02 11:17:00 -08003918 } else if (!r.visible && r.launchCount > 2 &&
3919 r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003920 // We have launched this activity too many times since it was
3921 // able to run, so give up and remove it.
Chong Zhang112eb8c2015-11-02 11:17:00 -08003922 // (Note if the activity is visible, we don't remove the record.
3923 // We leave the dead window on the screen but the process will
3924 // not be restarted unless user explicitly tap on it.)
Craig Mautner0247fc82013-02-28 14:32:06 -08003925 remove = true;
3926 } else {
3927 // The process may be gone, but the activity lives on!
3928 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003929 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003930 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003931 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3932 "Removing activity " + r + " from stack at " + i
3933 + ": haveState=" + r.haveState
3934 + " stateNotNeeded=" + r.stateNotNeeded
3935 + " finishing=" + r.finishing
3936 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003937 if (!r.finishing) {
3938 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3939 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3940 r.userId, System.identityHashCode(r),
3941 r.task.taskId, r.shortComponentName,
3942 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003943 if (r.state == ActivityState.RESUMED) {
3944 mService.updateUsageStats(r, false);
3945 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003946 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003947 } else {
3948 // We have the current state for this activity, so
3949 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003950 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3951 if (DEBUG_APP) Slog.v(TAG_APP,
3952 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003953 r.app = null;
Chong Zhang112eb8c2015-11-02 11:17:00 -08003954 // Set nowVisible to previous visible state. If the app was visible while
3955 // it died, we leave the dead window on screen so it's basically visible.
3956 // This is needed when user later tap on the dead window, we need to stop
3957 // other apps when user transfers focus to the restarted activity.
3958 r.nowVisible = r.visible;
Craig Mautner0247fc82013-02-28 14:32:06 -08003959 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003960 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003961 "App died, clearing saved state of " + r);
3962 r.icicle = null;
3963 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003964 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003965 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003966 if (remove) {
3967 removeActivityFromHistoryLocked(r, "appDied");
3968 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003969 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003970 }
3971 }
3972
3973 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003974 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003975
Chong Zhang280d3322015-11-03 17:27:26 -08003976 final void updateTransitLocked(int transit, ActivityOptions options) {
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003977 if (options != null) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003978 ActivityRecord r = topRunningActivityLocked();
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003979 if (r != null && r.state != ActivityState.RESUMED) {
3980 r.updateOptionsLocked(options);
3981 } else {
3982 ActivityOptions.abort(options);
3983 }
3984 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003985 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003986 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003987
Craig Mautner21d24a22014-04-23 11:45:37 -07003988 void updateTaskMovement(TaskRecord task, boolean toFront) {
3989 if (task.isPersistable) {
3990 task.mLastTimeMoved = System.currentTimeMillis();
3991 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3992 // recently will be most negative, tasks sent to the bottom before that will be less
3993 // negative. Similarly for recent tasks moved to the top which will be most positive.
3994 if (!toFront) {
3995 task.mLastTimeMoved *= -1;
3996 }
3997 }
Chong Zhangfdcc4d42015-10-14 16:50:12 -07003998 mStackSupervisor.invalidateTaskLayers();
Craig Mautner21d24a22014-04-23 11:45:37 -07003999 }
4000
Craig Mautner84984fa2014-06-19 11:19:20 -07004001 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07004002 final int top = mTaskHistory.size() - 1;
4003 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
4004 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004005 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004006 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
4007 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07004008 mTaskHistory.remove(taskNdx);
4009 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004010 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07004011 return;
4012 }
4013 }
4014 }
4015
Chong Zhang280d3322015-11-03 17:27:26 -08004016 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004017 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004018 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004019
Craig Mautner11bf9a52013-02-19 14:08:51 -08004020 final int numTasks = mTaskHistory.size();
4021 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07004022 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004023 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004024 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08004025 ActivityOptions.abort(options);
4026 } else {
4027 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
4028 }
4029 return;
4030 }
4031
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07004032 if (timeTracker != null) {
4033 // The caller wants a time tracker associated with this task.
4034 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
4035 tr.mActivities.get(i).appTimeTracker = timeTracker;
4036 }
4037 }
4038
Craig Mautner11bf9a52013-02-19 14:08:51 -08004039 // Shift all activities with this task up to the top
4040 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004041 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004042
Chong Zhang45c25ce2015-08-10 22:18:26 -07004043 // Don't refocus if invisible to current user
4044 ActivityRecord top = tr.getTopActivity();
4045 if (!okToShowLocked(top)) {
4046 addRecentActivityLocked(top);
4047 ActivityOptions.abort(options);
4048 return;
4049 }
4050
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004051 // Set focus to the top running activity of this stack.
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004052 ActivityRecord r = topRunningActivityLocked();
Wale Ogunwaled80c2632015-03-13 10:26:26 -07004053 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004054
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004055 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08004056 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004057 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004058 if (r != null) {
4059 mNoAnimActivities.add(r);
4060 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07004061 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004062 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08004063 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004064 }
Craig Mautner30e2d722013-02-12 11:30:16 -08004065
Wale Ogunwaled046a012015-12-24 13:05:59 -08004066 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Craig Mautner58547802013-03-05 08:23:53 -08004067 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08004068
4069 if (VALIDATE_TOKENS) {
4070 validateAppTokensLocked();
4071 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004072 }
4073
4074 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004075 * Worker method for rearranging history stack. Implements the function of moving all
4076 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004077 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004078 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004079 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
4080 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004081 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004082 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004083 * @return Returns true if the move completed, false if not.
4084 */
Craig Mautner299f9602015-01-26 09:47:33 -08004085 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08004086 final TaskRecord tr = taskForIdLocked(taskId);
4087 if (tr == null) {
4088 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
4089 return false;
4090 }
4091
4092 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07004093 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004094
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004095 // If we have a watcher, preflight the move before committing to it. First check
4096 // for *other* available tasks, but if none are available, then try again allowing the
4097 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07004098 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004099 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004100 if (next == null) {
4101 next = topRunningActivityLocked(null, 0);
4102 }
4103 if (next != null) {
4104 // ask watcher if this is allowed
4105 boolean moveOK = true;
4106 try {
4107 moveOK = mService.mController.activityResuming(next.packageName);
4108 } catch (RemoteException e) {
4109 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07004110 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004111 }
4112 if (!moveOK) {
4113 return false;
4114 }
4115 }
4116 }
4117
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004118 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004119
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004120 if (mStackId == HOME_STACK_ID && topTask().isHomeTask()) {
4121 // For the case where we are moving the home task back and there is an activity visible
4122 // behind it on the fullscreen stack, we want to move the focus to the visible behind
4123 // activity to maintain order with what the user is seeing.
4124 final ActivityStack fullscreenStack =
4125 mStackSupervisor.getStack(FULLSCREEN_WORKSPACE_STACK_ID);
4126 if (fullscreenStack != null && fullscreenStack.hasVisibleBehindActivity()) {
4127 final ActivityRecord visibleBehind = fullscreenStack.getVisibleBehindActivity();
4128 mService.setFocusedActivityLocked(visibleBehind, "moveTaskToBack");
Wale Ogunwaled046a012015-12-24 13:05:59 -08004129 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwale285ccef2015-12-11 14:56:37 -08004130 return true;
4131 }
4132 }
4133
riddle_hsuc215a4f2014-12-27 12:10:45 +08004134 boolean prevIsHome = false;
Wale Ogunwale42709242015-08-11 13:54:42 -07004135
4136 // If true, we should resume the home activity next if the task we are moving to the
4137 // back is over the home stack. We force to false if the task we are moving to back
4138 // is the home task and we don't want it resumed after moving to the back.
4139 final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
4140 if (canGoHome) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08004141 final TaskRecord nextTask = getNextTask(tr);
4142 if (nextTask != null) {
4143 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
4144 } else {
4145 prevIsHome = true;
4146 }
4147 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08004148 mTaskHistory.remove(tr);
4149 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07004150 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004151
Craig Mautnerc8143c62013-09-03 12:15:57 -07004152 // There is an assumption that moving a task to the back moves it behind the home activity.
4153 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07004154 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004155 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
4156 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07004157 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07004158 break;
4159 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004160 if (taskNdx == 1) {
4161 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07004162 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004163 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07004164 }
4165
Craig Mautner299f9602015-01-26 09:47:33 -08004166 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004167 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08004168
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004169 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08004170 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004171 }
4172
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004173 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
Wale Ogunwale42709242015-08-11 13:54:42 -07004174 if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07004175 if (!mService.mBooting && !mService.mBooted) {
4176 // Not ready yet!
4177 return false;
4178 }
Craig Mautner84984fa2014-06-19 11:19:20 -07004179 final int taskToReturnTo = tr.getTaskToReturnTo();
4180 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08004181 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07004182 }
4183
Wale Ogunwaled046a012015-12-24 13:05:59 -08004184 mStackSupervisor.resumeFocusedStackTopActivityLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004185 return true;
4186 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07004187
Craig Mautner8849a5e2013-04-02 16:41:03 -07004188 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004189 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08004190 final Uri data = r.intent.getData();
4191 final String strData = data != null ? data.toSafeString() : null;
4192
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004193 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004194 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004195 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08004196 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004197 }
4198
4199 /**
4200 * Make sure the given activity matches the current configuration. Returns
4201 * false if the activity had to be destroyed. Returns true if the
4202 * configuration is the same, or the activity will remain running as-is
4203 * for whatever reason. Ensures the HistoryRecord is updated with the
4204 * correct configuration and all other bookkeeping is handled.
4205 */
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004206 final boolean ensureActivityConfigurationLocked(ActivityRecord r, int globalChanges,
4207 boolean preserveWindow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004208 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004209 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004210 "Skipping config check (will change): " + r);
4211 return true;
4212 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004213
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004214 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004215 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004216
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004217 // Short circuit: if the two configurations are the exact same
4218 // object (the common case), then there is nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004219 final Configuration newConfig = mService.mConfiguration;
4220 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004221 if (r.configuration == newConfig
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004222 && r.taskConfigOverride == taskConfig
Wale Ogunwale60454db2015-01-23 16:05:07 -08004223 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004224 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004225 "Configuration unchanged in " + r);
4226 return true;
4227 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004228
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004229 // We don't worry about activities that are finishing.
4230 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004231 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004232 "Configuration doesn't matter in finishing " + r);
4233 r.stopFreezingScreenLocked(false);
4234 return true;
4235 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004236
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004237 // Okay we now are going to make this activity have the new config.
4238 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08004239 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004240 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004241 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004242 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004243
Filip Gruszczynski23493322015-07-29 17:02:59 -07004244 int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004245 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004246 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004247 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004248 "Configuration no differences in " + r);
Filip Gruszczynskica664812015-12-04 12:43:36 -08004249 // There are no significant differences, so we won't relaunch but should still deliver
4250 // the new configuration to the client process.
4251 r.scheduleConfigurationChanged(taskConfig, false);
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004252 return true;
4253 }
4254
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07004255 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4256 "Configuration changes for " + r + " ; taskChanges="
4257 + Configuration.configurationDiffToString(taskChanges) + ", allChanges="
4258 + Configuration.configurationDiffToString(changes));
4259
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004260 // If the activity isn't currently running, just leave the new
4261 // configuration and it will pick that up next time it starts.
4262 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004263 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004264 "Configuration doesn't matter not running " + r);
4265 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004266 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004267 return true;
4268 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004269
Dianne Hackborn58f42a52011-10-10 13:46:34 -07004270 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004271 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4272 "Checking to restart " + r.info.name + ": changed=0x"
4273 + Integer.toHexString(changes) + ", handles=0x"
Filip Gruszczynskica664812015-12-04 12:43:36 -08004274 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig
4275 + ", taskConfig=" + taskConfig);
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004276
Dianne Hackborne6676352011-06-01 16:51:20 -07004277 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004278 // Aha, the activity isn't handling the change, so DIE DIE DIE.
4279 r.configChangeFlags |= changes;
4280 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004281 r.forceNewConfig = false;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004282 preserveWindow &= isResizeOnlyChange(changes);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004283 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004284 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004285 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07004286 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004287 } else if (r.state == ActivityState.PAUSING) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004288 // A little annoying: we are waiting for this activity to finish pausing. Let's not
4289 // do anything now, but just flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004290 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004291 "Config is skipping already pausing " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004292 r.deferRelaunchUntilPaused = true;
4293 r.preserveWindowOnDeferredRelaunch = preserveWindow;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004294 return true;
4295 } else if (r.state == ActivityState.RESUMED) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004296 // Try to optimize this case: the configuration is changing and we need to restart
4297 // the top, resumed activity. Instead of doing the normal handshaking, just say
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004298 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004299 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004300 "Config is relaunching resumed " + r);
Chong Zhang2b79af12016-02-10 18:47:06 -08004301
4302 if (DEBUG_STATES && !r.visible) {
4303 Slog.v(TAG_STATES, "Config is relaunching resumed invisible activity " + r
4304 + " called by " + Debug.getCallers(4));
4305 }
4306
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004307 relaunchActivityLocked(r, r.configChangeFlags, true, preserveWindow);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004308 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07004309 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004310 "Config is relaunching non-resumed " + r);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004311 relaunchActivityLocked(r, r.configChangeFlags, false, preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004312 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004313
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004314 // All done... tell the caller we weren't able to keep this activity around.
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07004315 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004316 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004317
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004318 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004319 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08004320 // changes is always sent to all processes when they happen so it can just use whatever
4321 // system level configuration it last got.
Filip Gruszczynskica664812015-12-04 12:43:36 -08004322 r.scheduleConfigurationChanged(taskConfig, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004323 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004324
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004325 return true;
4326 }
4327
Filip Gruszczynski23493322015-07-29 17:02:59 -07004328 private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4329 Configuration oldTaskOverride) {
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08004330
4331 // If we went from full-screen to non-full-screen, make sure to use the correct
4332 // configuration task diff, so the diff stays as small as possible.
4333 if (Configuration.EMPTY.equals(oldTaskOverride)
4334 && !Configuration.EMPTY.equals(taskConfig)) {
4335 oldTaskOverride = record.task.extractOverrideConfig(record.configuration);
4336 }
4337
Jorim Jaggi1b025a62016-02-03 19:27:49 -08004338 // Conversely, do the same when going the other direction.
4339 if (Configuration.EMPTY.equals(taskConfig)
4340 && !Configuration.EMPTY.equals(oldTaskOverride)) {
4341 taskConfig = record.task.extractOverrideConfig(record.configuration);
4342 }
4343
Filip Gruszczynski23493322015-07-29 17:02:59 -07004344 // Determine what has changed. May be nothing, if this is a config
4345 // that has come back from the app after going idle. In that case
4346 // we just want to leave the official config object now in the
4347 // activity and do nothing else.
4348 int taskChanges = oldTaskOverride.diff(taskConfig);
4349 // We don't want to use size changes if they don't cross boundaries that are important to
4350 // the app.
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004351 if ((taskChanges & CONFIG_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004352 final boolean crosses = record.crossesHorizontalSizeThreshold(
4353 oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4354 || record.crossesVerticalSizeThreshold(
4355 oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4356 if (!crosses) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004357 taskChanges &= ~CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004358 }
4359 }
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004360 if ((taskChanges & CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
Filip Gruszczynski23493322015-07-29 17:02:59 -07004361 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4362 final int newSmallest = taskConfig.smallestScreenWidthDp;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -07004363 if (!record.crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004364 taskChanges &= ~CONFIG_SMALLEST_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004365 }
4366 }
4367 return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4368 }
4369
4370 private static int catchConfigChangesFromUnset(Configuration taskConfig,
4371 Configuration oldTaskOverride, int taskChanges) {
4372 if (taskChanges == 0) {
4373 // {@link Configuration#diff} doesn't catch changes from unset values.
4374 // Check for changes we care about.
4375 if (oldTaskOverride.orientation != taskConfig.orientation) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004376 taskChanges |= CONFIG_ORIENTATION;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004377 }
4378 // We want to explicitly track situations where the size configuration goes from
4379 // undefined to defined. We don't care about crossing the threshold in that case,
4380 // because there is no threshold.
4381 final int oldHeight = oldTaskOverride.screenHeightDp;
4382 final int newHeight = taskConfig.screenHeightDp;
4383 final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4384 if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4385 || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004386 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004387 }
4388 final int oldWidth = oldTaskOverride.screenWidthDp;
4389 final int newWidth = taskConfig.screenWidthDp;
4390 final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4391 if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4392 || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004393 taskChanges |= CONFIG_SCREEN_SIZE;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004394 }
4395 final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4396 final int newSmallest = taskConfig.smallestScreenWidthDp;
4397 final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4398 if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4399 || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004400 taskChanges |= CONFIG_SMALLEST_SCREEN_SIZE;
4401 }
4402 final int oldLayout = oldTaskOverride.screenLayout;
4403 final int newLayout = taskConfig.screenLayout;
4404 if ((oldLayout == SCREENLAYOUT_UNDEFINED && newLayout != SCREENLAYOUT_UNDEFINED)
4405 || (oldLayout != SCREENLAYOUT_UNDEFINED && newLayout == SCREENLAYOUT_UNDEFINED)) {
4406 taskChanges |= CONFIG_SCREEN_LAYOUT;
Filip Gruszczynski23493322015-07-29 17:02:59 -07004407 }
4408 }
4409 return taskChanges;
4410 }
4411
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004412 private static boolean isResizeOnlyChange(int change) {
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004413 return (change & ~(CONFIG_SCREEN_SIZE | CONFIG_SMALLEST_SCREEN_SIZE | CONFIG_ORIENTATION
4414 | CONFIG_SCREEN_LAYOUT)) == 0;
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004415 }
4416
Wale Ogunwale83301a92015-09-24 15:54:08 -07004417 private void relaunchActivityLocked(
4418 ActivityRecord r, int changes, boolean andResume, boolean preserveWindow) {
4419 if (mService.mSuppressResizeConfigChanges && preserveWindow) {
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004420 r.configChangeFlags = 0;
Wale Ogunwale83301a92015-09-24 15:54:08 -07004421 return;
4422 }
4423
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004424 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08004425 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004426 if (andResume) {
4427 results = r.results;
4428 newIntents = r.newIntents;
4429 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004430 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4431 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004432 + " andResume=" + andResume + " preserveWindow=" + preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004433 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004434 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004435 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004436
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004437 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004438
Craig Mautner34b73df2014-01-12 21:11:08 -08004439 mStackSupervisor.removeChildActivityContainers(r);
4440
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004441 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004442 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08004443 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r
4444 + " callers=" + Debug.getCallers(6));
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004445 r.forceNewConfig = false;
Chong Zhangd78ddb42016-03-02 17:01:14 -08004446 mStackSupervisor.activityRelaunchingLocked(r);
Wale Ogunwale60454db2015-01-23 16:05:07 -08004447 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4448 !andResume, new Configuration(mService.mConfiguration),
Filip Gruszczynskia59ac9c2015-09-10 18:28:48 -07004449 new Configuration(r.task.mOverrideConfig), preserveWindow);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004450 // Note: don't need to call pauseIfSleepingLocked() here, because
4451 // the caller will only pass in 'andResume' if this activity is
4452 // currently resumed, which implies we aren't sleeping.
4453 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004454 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004455 }
4456
4457 if (andResume) {
Chong Zhang2b79af12016-02-10 18:47:06 -08004458 if (DEBUG_STATES) {
4459 Slog.d(TAG_STATES, "Resumed after relaunch " + r);
4460 }
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004461 r.state = ActivityState.RESUMED;
Chong Zhang2b79af12016-02-10 18:47:06 -08004462 // Relaunch-resume could happen either when the app is already in the front,
4463 // or while it's being brought to front. In the latter case, it's marked RESUMED
4464 // but not yet visible (or stopped). We need to complete the resume here as the
4465 // code in resumeTopActivityInnerLocked to complete the resume might be skipped.
4466 if (!r.visible || r.stopped) {
4467 mWindowManager.setAppVisibility(r.appToken, true);
4468 completeResumeLocked(r);
4469 } else {
4470 r.results = null;
4471 r.newIntents = null;
4472 }
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004473 } else {
4474 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4475 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004476 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08004477
4478 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004479 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004480
4481 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004482 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4483 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4484 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4485 final ActivityRecord r = activities.get(activityNdx);
4486 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004487 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004488 }
4489 if (r.fullscreen && !r.finishing) {
4490 return false;
4491 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004492 }
4493 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004494 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004495 if (r == null) {
4496 return false;
4497 }
4498 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4499 + " would have returned true for r=" + r);
4500 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004501 }
4502
4503 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004504 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4505 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4506 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4507 final ActivityRecord r = activities.get(activityNdx);
4508 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004509 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004510 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004511 }
4512 }
4513 }
4514
Wale Ogunwale540e1232015-05-01 15:35:39 -07004515 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4516 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004517 boolean didSomething = false;
4518 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004519 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004520 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4521 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4522 int numActivities = activities.size();
4523 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4524 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004525 final boolean sameComponent =
4526 (r.packageName.equals(packageName) && (filterByClasses == null
4527 || filterByClasses.contains(r.realActivity.getClassName())))
4528 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004529 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004530 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004531 && (r.app == null || evenPersistent || !r.app.persistent)) {
4532 if (!doit) {
4533 if (r.finishing) {
4534 // If this activity is just finishing, then it is not
4535 // interesting as far as something to stop.
4536 continue;
4537 }
4538 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004539 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004540 if (r.isHomeActivity()) {
4541 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4542 Slog.i(TAG, "Skip force-stop again " + r);
4543 continue;
4544 } else {
4545 homeActivity = r.realActivity;
4546 }
4547 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004548 didSomething = true;
4549 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004550 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004551 if (r.app != null) {
4552 r.app.removed = true;
4553 }
4554 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004555 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004556 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004557 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4558 true)) {
4559 // r has been deleted from mActivities, accommodate.
4560 --numActivities;
4561 --activityNdx;
4562 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004563 }
4564 }
4565 }
4566 return didSomething;
4567 }
4568
Dianne Hackborn09233282014-04-30 11:33:59 -07004569 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004570 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4571 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004572 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004573 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004574 if (task.getTopActivity() == null) {
4575 continue;
4576 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004577 ActivityRecord r = null;
4578 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004579 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004580 int numActivities = 0;
4581 int numRunning = 0;
4582 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004583 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004584 continue;
4585 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004586 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004587 tmp = activities.get(activityNdx);
4588 if (tmp.finishing) {
4589 continue;
4590 }
4591 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004592
Craig Mautneraab647e2013-02-28 16:31:36 -08004593 // Initialize state for next task if needed.
4594 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4595 top = r;
4596 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004597 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004598
4599 // Add 'r' into the current task.
4600 numActivities++;
4601 if (r.app != null && r.app.thread != null) {
4602 numRunning++;
4603 }
4604
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004605 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004606 TAG, r.intent.getComponent().flattenToShortString()
4607 + ": task=" + r.task);
4608 }
4609
4610 RunningTaskInfo ci = new RunningTaskInfo();
4611 ci.id = task.taskId;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -07004612 ci.stackId = mStackId;
Craig Mautneraab647e2013-02-28 16:31:36 -08004613 ci.baseActivity = r.intent.getComponent();
4614 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004615 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004616 if (focusedStack && topTask) {
4617 // Give the latest time to ensure foreground task can be sorted
4618 // at the first, because lastActiveTime of creating task is 0.
4619 ci.lastActiveTime = System.currentTimeMillis();
4620 topTask = false;
4621 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004622
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004623 if (top.task != null) {
4624 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004625 }
4626 ci.numActivities = numActivities;
4627 ci.numRunning = numRunning;
Wale Ogunwale21b60582016-01-27 12:34:16 -08004628 ci.isDockable = task.canGoInDockedStack();
Craig Mautneraab647e2013-02-28 16:31:36 -08004629 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004630 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004631 }
4632
4633 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004634 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004635 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004636 if (top >= 0) {
4637 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4638 int activityTop = activities.size() - 1;
4639 if (activityTop > 0) {
4640 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4641 "unhandled-back", true);
4642 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004643 }
4644 }
4645
Craig Mautner6b74cb52013-09-27 17:02:21 -07004646 /**
4647 * Reset local parameters because an app's activity died.
4648 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004649 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004650 */
4651 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004652 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004653 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004654 "App died while pausing: " + mPausingActivity);
4655 mPausingActivity = null;
4656 }
4657 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4658 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004659 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004660 }
4661
Craig Mautner19091252013-10-05 00:03:53 -07004662 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004663 }
4664
Craig Mautnercae015f2013-02-08 14:31:27 -08004665 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004666 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4667 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4668 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4669 final ActivityRecord r = activities.get(activityNdx);
4670 if (r.app == app) {
4671 Slog.w(TAG, " Force finishing activity "
4672 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004673 // Force the destroy to skip right to removal.
4674 r.app = null;
4675 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004676 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004677 }
4678 }
4679 }
4680
Dianne Hackborn390517b2013-05-30 15:03:32 -07004681 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004682 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004683 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004684 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4685 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004686 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4687 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004688 dumpClient, dumpPackage, needSep, header,
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07004689 " Task id #" + task.taskId + "\n" +
4690 " mFullscreen=" + task.mFullscreen + "\n" +
4691 " mBounds=" + task.mBounds + "\n" +
4692 " mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004693 if (printed) {
4694 header = null;
4695 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004696 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004697 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004698 }
4699
4700 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4701 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4702
4703 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004704 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4705 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004706 }
4707 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004708 final int top = mTaskHistory.size() - 1;
4709 if (top >= 0) {
4710 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4711 int listTop = list.size() - 1;
4712 if (listTop >= 0) {
4713 activities.add(list.get(listTop));
4714 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004715 }
4716 } else {
4717 ItemMatcher matcher = new ItemMatcher();
4718 matcher.build(name);
4719
Craig Mautneraab647e2013-02-28 16:31:36 -08004720 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4721 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4722 if (matcher.match(r1, r1.intent.getComponent())) {
4723 activities.add(r1);
4724 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004725 }
4726 }
4727 }
4728
4729 return activities;
4730 }
4731
4732 ActivityRecord restartPackage(String packageName) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07004733 ActivityRecord starting = topRunningActivityLocked();
Craig Mautnercae015f2013-02-08 14:31:27 -08004734
4735 // All activities that came from the package must be
4736 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004737 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4738 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4739 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4740 final ActivityRecord a = activities.get(activityNdx);
4741 if (a.info.packageName.equals(packageName)) {
4742 a.forceNewConfig = true;
4743 if (starting != null && a == starting && a.visible) {
4744 a.startFreezingScreenLocked(starting.app,
Filip Gruszczynski3c2db1d12016-01-06 17:39:14 -08004745 CONFIG_SCREEN_LAYOUT);
Craig Mautneraab647e2013-02-28 16:31:36 -08004746 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004747 }
4748 }
4749 }
4750
4751 return starting;
4752 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004753
Craig Mautner299f9602015-01-26 09:47:33 -08004754 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale040b4702015-08-06 18:10:50 -07004755 removeTask(task, reason, !MOVING);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004756 }
4757
Wale Ogunwale000957c2015-04-03 08:19:12 -07004758 /**
4759 * Removes the input task from this stack.
4760 * @param task to remove.
4761 * @param reason for removal.
Wale Ogunwale040b4702015-08-06 18:10:50 -07004762 * @param moving task to another stack. In the case we are moving we don't want to perform
4763 * some operations on the task like removing it from window manager or recents.
Wale Ogunwale000957c2015-04-03 08:19:12 -07004764 */
Wale Ogunwale040b4702015-08-06 18:10:50 -07004765 void removeTask(TaskRecord task, String reason, boolean moving) {
4766 if (!moving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004767 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004768 mWindowManager.removeTask(task.taskId);
Wale Ogunwaleb317b222015-11-09 11:14:10 -08004769 if (!StackId.persistTaskBounds(mStackId)) {
4770 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
4771 // default configuration the next time it launches.
4772 task.updateOverrideConfiguration(null);
4773 }
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004774 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004775
Craig Mautner04a0ea62014-01-13 12:51:26 -08004776 final ActivityRecord r = mResumedActivity;
4777 if (r != null && r.task == task) {
4778 mResumedActivity = null;
4779 }
4780
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004781 final int taskNdx = mTaskHistory.indexOf(task);
4782 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004783 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4784 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4785 if (!nextTask.isOverHomeStack()) {
4786 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4787 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004788 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004789 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004790 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004791
Wale Ogunwale040b4702015-08-06 18:10:50 -07004792 if (!moving && task.mActivities.isEmpty()) {
Amith Yamasani0af6fa72016-01-17 15:36:19 -08004793 // TODO: VI what about activity?
Craig Mautner41db4a72014-05-07 17:20:56 -07004794 final boolean isVoiceSession = task.voiceSession != null;
4795 if (isVoiceSession) {
4796 try {
4797 task.voiceSession.taskFinished(task.intent, task.taskId);
4798 } catch (RemoteException e) {
4799 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004800 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004801 if (task.autoRemoveFromRecents() || isVoiceSession) {
4802 // Task creator asked to remove this when done, or this task was a voice
4803 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004804 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004805 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004806 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004807 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004808
4809 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004810 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Chong Zhanga8be5e52015-10-05 17:06:28 -07004811 // We only need to adjust focused stack if this stack is in focus.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07004812 if (isOnHomeDisplay() && mStackSupervisor.isFocusedStack(this)) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004813 String myReason = reason + " leftTaskHistoryEmpty";
Wale Ogunwale4cea0f52015-12-25 06:30:31 -08004814 if (mFullscreen || !adjustFocusToNextFocusableStackLocked(myReason)) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004815 mStackSupervisor.moveHomeStackToFront(myReason);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004816 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004817 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004818 if (mStacks != null) {
4819 mStacks.remove(this);
4820 mStacks.add(0, this);
4821 }
Wale Ogunwale925d0d12015-09-23 15:40:07 -07004822 if (!isHomeStack()) {
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004823 mActivityContainer.onTaskListEmptyLocked();
4824 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004825 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004826
4827 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004828 }
4829
Dianne Hackborn91097de2014-04-04 18:02:06 -07004830 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4831 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4832 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004833 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4834 voiceInteractor);
Chong Zhang0fa656b2015-08-31 15:17:21 -07004835 // add the task to stack first, mTaskPositioner might need the stack association
Wale Ogunwale5f986092015-12-04 15:35:38 -08004836 addTask(task, toTop, "createTaskRecord");
Chong Zhang75b37202015-12-04 14:16:36 -08004837 final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08004838 if (!layoutTaskInStack(task, info.layout) && mBounds != null && task.isResizeable()
Chong Zhang75b37202015-12-04 14:16:36 -08004839 && !isLockscreenShown) {
Wale Ogunwalea6e902e2015-09-21 18:37:15 -07004840 task.updateOverrideConfiguration(mBounds);
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004841 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004842 return task;
4843 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004844
Wale Ogunwale935e5022015-11-10 12:36:10 -08004845 boolean layoutTaskInStack(TaskRecord task, ActivityInfo.Layout layout) {
4846 if (mTaskPositioner == null) {
4847 return false;
4848 }
4849 mTaskPositioner.updateDefaultBounds(task, mTaskHistory, layout);
4850 return true;
4851 }
4852
Craig Mautnerc00204b2013-03-05 15:02:14 -08004853 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004854 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004855 }
4856
Wale Ogunwale5f986092015-12-04 15:35:38 -08004857 void addTask(final TaskRecord task, final boolean toTop, String reason) {
4858 final ActivityStack prevStack = preAddTask(task, reason);
4859
Craig Mautnerc00204b2013-03-05 15:02:14 -08004860 task.stack = this;
4861 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004862 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004863 } else {
4864 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004865 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004866 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08004867 postAddTask(task, prevStack);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004868 }
4869
Wale Ogunwale5f986092015-12-04 15:35:38 -08004870 void positionTask(final TaskRecord task, int position) {
4871 final ActivityStack prevStack = preAddTask(task, "positionTask");
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004872 task.stack = this;
4873 insertTaskAtPosition(task, position);
Wale Ogunwale5f986092015-12-04 15:35:38 -08004874 postAddTask(task, prevStack);
4875 }
4876
4877 private ActivityStack preAddTask(TaskRecord task, String reason) {
4878 final ActivityStack prevStack = task.stack;
4879 if (prevStack != null && prevStack != this) {
4880 prevStack.removeTask(task, reason, MOVING);
4881 }
4882 return prevStack;
4883 }
4884
4885 private void postAddTask(TaskRecord task, ActivityStack prevStack) {
4886 if (prevStack != null) {
Wale Ogunwale22e25262016-02-01 10:32:02 -08004887 mStackSupervisor.scheduleReportPictureInPictureChangedIfNeeded(task, prevStack);
Wale Ogunwale5f986092015-12-04 15:35:38 -08004888 } else if (task.voiceSession != null) {
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004889 try {
4890 task.voiceSession.taskStarted(task.intent, task.taskId);
4891 } catch (RemoteException e) {
4892 }
4893 }
4894 }
4895
Filip Gruszczynskie5390e72015-08-18 16:39:00 -07004896 void addConfigOverride(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08004897 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Amith Yamasani0af6fa72016-01-17 15:36:19 -08004898 // TODO: VI deal with activity
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07004899 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
4900 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Wale Ogunwale6cae7652015-12-26 07:36:26 -08004901 (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId, r.info.configChanges,
4902 task.voiceSession != null, r.mLaunchTaskBehind, bounds, task.mOverrideConfig,
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08004903 task.mResizeMode, r.isAlwaysFocusable(), task.isHomeTask());
Wale Ogunwale706ed792015-08-02 10:29:44 -07004904 r.taskConfigOverride = task.mOverrideConfig;
4905 }
4906
Wale Ogunwaled046a012015-12-24 13:05:59 -08004907 void moveToFrontAndResumeStateIfNeeded(
4908 ActivityRecord r, boolean moveToFront, boolean setResume, String reason) {
4909 if (!moveToFront) {
4910 return;
Wale Ogunwale079a0042015-10-24 11:44:07 -07004911 }
Wale Ogunwaled046a012015-12-24 13:05:59 -08004912
4913 // If the activity owns the last resumed activity, transfer that together,
4914 // so that we don't resume the same activity again in the new stack.
4915 // Apps may depend on onResume()/onPause() being called in pairs.
4916 if (setResume) {
4917 mResumedActivity = r;
4918 }
4919 // Move the stack in which we are placing the activity to the front. The call will also
4920 // make sure the activity focus is set.
4921 moveToFront(reason);
Wale Ogunwale079a0042015-10-24 11:44:07 -07004922 }
4923
4924 /**
4925 * Moves the input activity from its current stack to this one.
4926 * NOTE: The current task of the activity isn't moved to this stack. Instead a new task is
4927 * created on this stack which the activity is added to.
4928 * */
4929 void moveActivityToStack(ActivityRecord r) {
4930 final ActivityStack prevStack = r.task.stack;
4931 if (prevStack.mStackId == mStackId) {
4932 // You are already in the right stack silly...
4933 return;
4934 }
4935
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07004936 final boolean wasFocused = mStackSupervisor.isFocusedStack(prevStack)
Wale Ogunwale079a0042015-10-24 11:44:07 -07004937 && (mStackSupervisor.topRunningActivityLocked() == r);
4938 final boolean wasResumed = wasFocused && (prevStack.mResumedActivity == r);
4939
4940 final TaskRecord task = createTaskRecord(
Suprabh Shukla09a88f52015-12-02 14:36:31 -08004941 mStackSupervisor.getNextTaskIdForUserLocked(r.userId),
4942 r.info, r.intent, null, null, true);
Wale Ogunwale079a0042015-10-24 11:44:07 -07004943 r.setTask(task, null);
4944 task.addActivityToTop(r);
4945 setAppTask(r, task);
Wale Ogunwale22e25262016-02-01 10:32:02 -08004946 mStackSupervisor.scheduleReportPictureInPictureChangedIfNeeded(task, prevStack);
Wale Ogunwaled046a012015-12-24 13:05:59 -08004947 moveToFrontAndResumeStateIfNeeded(r, wasFocused, wasResumed, "moveActivityToStack");
4948 if (wasResumed) {
4949 prevStack.mResumedActivity = null;
4950 }
Wale Ogunwale079a0042015-10-24 11:44:07 -07004951 }
4952
Wale Ogunwale706ed792015-08-02 10:29:44 -07004953 private void setAppTask(ActivityRecord r, TaskRecord task) {
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08004954 final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08004955 mWindowManager.setAppTask(r.appToken, task.taskId, mStackId, bounds, task.mOverrideConfig,
4956 task.mResizeMode, task.isHomeTask());
Wale Ogunwale706ed792015-08-02 10:29:44 -07004957 r.taskConfigOverride = task.mOverrideConfig;
4958 }
4959
Craig Mautnerc00204b2013-03-05 15:02:14 -08004960 public int getStackId() {
4961 return mStackId;
4962 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004963
4964 @Override
4965 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004966 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4967 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004968 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004969
Craig Mautner15df08a2015-04-01 12:17:18 -07004970 void onLockTaskPackagesUpdatedLocked() {
4971 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4972 mTaskHistory.get(taskNdx).setLockTaskAuth();
4973 }
4974 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004975}