blob: 6210d600c736a9e60f3284bcc753f9c26f296c74 [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 Ogunwale3fcb4a82015-04-06 14:00:13 -070019import static android.content.pm.ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN;
20
Wale Ogunwalee23149f2015-03-06 15:39:44 -080021import static com.android.server.am.ActivityManagerDebugConfig.*;
Craig Mautner0eea92c2013-05-16 13:35:39 -070022
Craig Mautner84984fa2014-06-19 11:19:20 -070023import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
24import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070025
Craig Mautner0eea92c2013-05-16 13:35:39 -070026import static com.android.server.am.ActivityStackSupervisor.DEBUG_ADD_REMOVE;
27import static com.android.server.am.ActivityStackSupervisor.DEBUG_APP;
Craig Mautnerd163e752014-06-13 17:18:47 -070028import static com.android.server.am.ActivityStackSupervisor.DEBUG_CONTAINERS;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070029import static com.android.server.am.ActivityStackSupervisor.DEBUG_RELEASE;
Craig Mautner0eea92c2013-05-16 13:35:39 -070030import static com.android.server.am.ActivityStackSupervisor.DEBUG_SAVED_STATE;
Winson Chung376543b2014-05-21 17:43:28 -070031import static com.android.server.am.ActivityStackSupervisor.DEBUG_SCREENSHOTS;
Craig Mautner0eea92c2013-05-16 13:35:39 -070032import static com.android.server.am.ActivityStackSupervisor.DEBUG_STATES;
Craig Mautnerde4ef022013-04-07 19:01:33 -070033import static com.android.server.am.ActivityStackSupervisor.HOME_STACK_ID;
34
Dianne Hackborn89ad4562014-08-24 16:45:38 -070035import android.util.ArraySet;
Dianne Hackborn91097de2014-04-04 18:02:06 -070036import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080037import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070038import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070039import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080040import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080041import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080042import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080043import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070044import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070045
46import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070047import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070048import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070049import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080050import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070051import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080052import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070053import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070054import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070056import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070057import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080058import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080059import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070060import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070061import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080062import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.os.Handler;
64import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090065import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070066import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070067import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070068import android.os.RemoteException;
69import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080070import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070071import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070072import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070073import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070074import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070075import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070076
Craig Mautnercae015f2013-02-08 14:31:27 -080077import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080078import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070079import java.lang.ref.WeakReference;
80import java.util.ArrayList;
81import java.util.Iterator;
82import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080083import java.util.Objects;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070084
85/**
86 * State and management of a single stack of activities.
87 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070088final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080089
Wale Ogunwalee23149f2015-03-06 15:39:44 -080090 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
91 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070092 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070093 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
94 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
95 private static final String TAG_STACK = TAG + POSTFIX_STACK;
96 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
97 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
98 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
99 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
100 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700101
102 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800103
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700104 // Ticks during which we check progress while waiting for an app to launch.
105 static final int LAUNCH_TICK = 500;
106
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700107 // How long we wait until giving up on the last activity to pause. This
108 // is short because it directly impacts the responsiveness of starting the
109 // next activity.
110 static final int PAUSE_TIMEOUT = 500;
111
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700112 // How long we wait for the activity to tell us it has stopped before
113 // giving up. This is a good amount of time because we really need this
114 // from the application in order to get its saved state.
115 static final int STOP_TIMEOUT = 10*1000;
116
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700117 // How long we wait until giving up on an activity telling us it has
118 // finished destroying itself.
119 static final int DESTROY_TIMEOUT = 10*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800120
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700121 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800122 // disabled.
123 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800124
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700125 // How long between activity launches that we consider safe to not warn
126 // the user about an unexpected activity being launched on top.
127 static final long START_WARN_TIME = 5*1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800128
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700129 // Set to false to disable the preview that is shown while a new activity
130 // is being started.
131 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800132
Craig Mautner5eda9b32013-07-02 11:58:16 -0700133 // How long to wait for all background Activities to redraw following a call to
134 // convertToTranslucent().
135 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
136
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700137 enum ActivityState {
138 INITIALIZING,
139 RESUMED,
140 PAUSING,
141 PAUSED,
142 STOPPING,
143 STOPPED,
144 FINISHING,
145 DESTROYING,
146 DESTROYED
147 }
148
149 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700150 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800151 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800152
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700153 /**
154 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800155 * running) activities. It contains #TaskRecord objects.
156 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800157 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800158
159 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800160 * Used for validating app tokens with window manager.
161 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800162 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800163
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700164 /**
165 * List of running activities, sorted by recent usage.
166 * The first entry in the list is the least recently used.
167 * It contains HistoryRecord objects.
168 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800169 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700170
171 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700172 * Animations that for the current transition have requested not to
173 * be considered for the transition animation.
174 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800175 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700176
177 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700178 * When we are in the process of pausing an activity, before starting the
179 * next one, this variable holds the activity that is currently being paused.
180 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800181 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700182
183 /**
184 * This is the last activity that we put into the paused state. This is
185 * used to determine if we need to do an activity transition while sleeping,
186 * when we normally hold the top activity paused.
187 */
188 ActivityRecord mLastPausedActivity = null;
189
190 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700191 * Activities that specify No History must be removed once the user navigates away from them.
192 * If the device goes to sleep with such an activity in the paused state then we save it here
193 * and finish it later if another activity replaces it on wakeup.
194 */
195 ActivityRecord mLastNoHistoryActivity = null;
196
197 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700198 * Current activity that is resumed, or null if there is none.
199 */
200 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800201
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700202 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700203 * This is the last activity that has been started. It is only used to
204 * identify when multiple activities are started at once so that the user
205 * can be warned they may not be in the activity they think they are.
206 */
207 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800208
Craig Mautner5eda9b32013-07-02 11:58:16 -0700209 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
210 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
211 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
212 // Activity in mTranslucentActivityWaiting is notified via
213 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
214 // background activity being drawn then the same call will be made with a true value.
215 ActivityRecord mTranslucentActivityWaiting = null;
Craig Mautnereb8abf72014-07-02 15:04:09 -0700216 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent =
Craig Mautner5eda9b32013-07-02 11:58:16 -0700217 new ArrayList<ActivityRecord>();
218
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700219 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700220 * Set when we know we are going to be calling updateConfiguration()
221 * soon, so want to skip intermediate config checks.
222 */
223 boolean mConfigWillChange;
224
Todd Kennedyaab56db2015-01-30 09:39:53 -0800225 // Whether or not this stack covers the entire screen; by default stacks are full screen
226 boolean mFullscreen = true;
227
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700228 long mLaunchStartTime = 0;
229 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800230
Craig Mautner858d8a62013-04-23 17:08:34 -0700231 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700232
Craig Mautnerc00204b2013-03-05 15:02:14 -0800233 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800234 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800235 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
236 ArrayList<ActivityStack> mStacks;
237 /** The attached Display's unique identifier, or -1 if detached */
238 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800239
Craig Mautner27084302013-03-25 08:05:25 -0700240 /** Run all ActivityStacks through this */
241 final ActivityStackSupervisor mStackSupervisor;
242
Wale Ogunwale60454db2015-01-23 16:05:07 -0800243 Configuration mOverrideConfig;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800244 /** True if the stack was forced to full screen because {@link TaskRecord#mResizeable} is false
245 * and the stack was previously resized. */
246 private boolean mForcedFullscreen = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -0800247
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700248 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700249 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
250 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
251 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
252 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700253 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700254 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700255 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700256
257 static class ScheduleDestroyArgs {
258 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700259 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700260 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700261 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700262 mReason = reason;
263 }
264 }
265
Zoran Marcetaf958b322012-08-09 20:27:12 +0900266 final Handler mHandler;
267
268 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800269
Craig Mautnerc8143c62013-09-03 12:15:57 -0700270 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900271 super(looper);
272 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700273
Zoran Marcetaf958b322012-08-09 20:27:12 +0900274 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700275 public void handleMessage(Message msg) {
276 switch (msg.what) {
277 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800278 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700279 // We don't at this point know if the activity is fullscreen,
280 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800281 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700282 synchronized (mService) {
283 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700284 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700285 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700286 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800287 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700288 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700289 case LAUNCH_TICK_MSG: {
290 ActivityRecord r = (ActivityRecord)msg.obj;
291 synchronized (mService) {
292 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700293 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700294 }
295 }
296 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700297 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800298 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700299 // We don't at this point know if the activity is fullscreen,
300 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800301 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800302 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800303 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800304 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700305 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700306 case STOP_TIMEOUT_MSG: {
307 ActivityRecord r = (ActivityRecord)msg.obj;
308 // We don't at this point know if the activity is fullscreen,
309 // so we need to be conservative and assume it isn't.
310 Slog.w(TAG, "Activity stop timeout for " + r);
311 synchronized (mService) {
312 if (r.isInHistory()) {
313 activityStoppedLocked(r, null, null, null);
314 }
315 }
316 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700317 case DESTROY_ACTIVITIES_MSG: {
318 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
319 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700320 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700321 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700322 } break;
323 case TRANSLUCENT_TIMEOUT_MSG: {
324 synchronized (mService) {
325 notifyActivityDrawnLocked(null);
326 }
327 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700328 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700329 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700330 final ActivityRecord r = getVisibleBehindActivity();
331 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700332 if (r != null) {
333 mService.killAppAtUsersRequest(r.app, null);
334 }
335 }
336 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700337 }
338 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800339 }
340
Craig Mautner34b73df2014-01-12 21:11:08 -0800341 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800342 int count = 0;
343 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
344 count += mTaskHistory.get(taskNdx).mActivities.size();
345 }
346 return count;
347 }
348
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800349 int numTasks() {
350 return mTaskHistory.size();
351 }
352
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800353 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
354 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800355 mActivityContainer = activityContainer;
356 mStackSupervisor = activityContainer.getOuter();
357 mService = mStackSupervisor.mService;
358 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
359 mWindowManager = mService.mWindowManager;
360 mStackId = activityContainer.mStackId;
361 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800362 mRecentTasks = recentTasks;
Wale Ogunwale60454db2015-01-23 16:05:07 -0800363 mOverrideConfig = Configuration.EMPTY;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700364 }
Craig Mautner5962b122012-10-05 14:45:52 -0700365
Amith Yamasani734983f2014-03-04 16:48:05 -0800366 /**
Kenny Guy2a764942014-04-02 13:29:20 +0100367 * Checks whether the userid is a profile of the current user.
Amith Yamasani734983f2014-03-04 16:48:05 -0800368 */
Kenny Guy2a764942014-04-02 13:29:20 +0100369 private boolean isCurrentProfileLocked(int userId) {
Kenny Guyf4824a02014-04-02 19:17:41 +0100370 if (userId == mCurrentUser) return true;
Kenny Guy2a764942014-04-02 13:29:20 +0100371 for (int i = 0; i < mService.mCurrentProfileIds.length; i++) {
372 if (mService.mCurrentProfileIds[i] == userId) return true;
Amith Yamasani734983f2014-03-04 16:48:05 -0800373 }
374 return false;
375 }
376
377 boolean okToShowLocked(ActivityRecord r) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700378 return isCurrentProfileLocked(r.userId) || (r.info.flags & FLAG_SHOW_ON_LOCK_SCREEN) != 0;
Craig Mautner5962b122012-10-05 14:45:52 -0700379 }
380
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700381 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800382 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700383 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
384 if (r != null) {
385 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800386 }
387 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700388 return null;
389 }
390
391 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800392 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
393 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800394 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800395 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
396 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800397 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800398 return r;
399 }
400 }
401 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700402 return null;
403 }
404
405 /**
406 * This is a simplified version of topRunningActivityLocked that provides a number of
407 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800408 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700409 * @param token If non-null, any history records matching this token will be skipped.
410 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800411 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700412 * @return Returns the HistoryRecord of the next activity on the stack.
413 */
414 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800415 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
416 TaskRecord task = mTaskHistory.get(taskNdx);
417 if (task.taskId == taskId) {
418 continue;
419 }
420 ArrayList<ActivityRecord> activities = task.mActivities;
421 for (int i = activities.size() - 1; i >= 0; --i) {
422 final ActivityRecord r = activities.get(i);
423 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800424 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800425 return r;
426 }
427 }
428 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700429 return null;
430 }
431
Craig Mautner8849a5e2013-04-02 16:41:03 -0700432 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700433 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
434 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700435 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
436 final ActivityRecord r = activities.get(activityNdx);
437 if (!r.finishing) {
438 return r;
439 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700440 }
441 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700442 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700443 }
444
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700445 final TaskRecord topTask() {
446 final int size = mTaskHistory.size();
447 if (size > 0) {
448 return mTaskHistory.get(size - 1);
449 }
450 return null;
451 }
452
Craig Mautnerd2328952013-03-05 12:46:26 -0800453 TaskRecord taskForIdLocked(int id) {
454 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
455 final TaskRecord task = mTaskHistory.get(taskNdx);
456 if (task.taskId == id) {
457 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800458 }
459 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700460 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700461 }
462
Craig Mautnerd2328952013-03-05 12:46:26 -0800463 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700464 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800465 return isInStackLocked(r);
466 }
467
468 ActivityRecord isInStackLocked(ActivityRecord r) {
469 if (r == null) {
470 return null;
471 }
472 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700473 if (task != null && task.stack != null
474 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800475 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800476 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800477 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800478 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800479 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800480 }
481
Craig Mautner2420ead2013-04-01 17:13:20 -0700482 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700483 final boolean hadit = mLRUActivities.remove(r);
484 mLRUActivities.add(r);
485 return hadit;
486 }
487
Craig Mautnerde4ef022013-04-07 19:01:33 -0700488 final boolean isHomeStack() {
489 return mStackId == HOME_STACK_ID;
490 }
491
Craig Mautnere0a38842013-12-16 16:14:02 -0800492 final boolean isOnHomeDisplay() {
493 return isAttached() &&
494 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
495 }
496
Craig Mautner299f9602015-01-26 09:47:33 -0800497 final void moveToFront(String reason) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800498 if (isAttached()) {
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800499 final boolean homeStack = isHomeStack()
500 || (mActivityContainer.mParentActivity != null
501 && mActivityContainer.mParentActivity.isHomeActivity());
502 ActivityStack lastFocusStack = null;
503 if (!homeStack) {
504 // Need to move this stack to the front before calling
505 // {@link ActivityStackSupervisor#moveHomeStack} below.
506 lastFocusStack = mStacks.get(mStacks.size() - 1);
507 mStacks.remove(this);
508 mStacks.add(this);
Wale Ogunwaleaf0e4482015-02-24 12:27:31 -0800509 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700510 // TODO(multi-display): Focus stack currently adjusted in call to move home stack.
511 // Needs to also work if focus is moving to the non-home display.
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800512 if (isOnHomeDisplay()) {
513 mStackSupervisor.moveHomeStack(homeStack, reason, lastFocusStack);
514 }
Craig Mautner6b904ef2014-12-17 15:45:03 -0800515 final TaskRecord task = topTask();
516 if (task != null) {
517 mWindowManager.moveTaskToTop(task.taskId);
518 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800519 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800520 }
521
522 final boolean isAttached() {
523 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800524 }
525
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700526 /**
527 * Returns the top activity in any existing task matching the given
528 * Intent. Returns null if no such task is found.
529 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700530 ActivityRecord findTaskLocked(ActivityRecord target) {
531 Intent intent = target.intent;
532 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700533 ComponentName cls = intent.getComponent();
534 if (info.targetActivity != null) {
535 cls = new ComponentName(info.packageName, info.targetActivity);
536 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700537 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700538 boolean isDocument = intent != null & intent.isDocument();
539 // If documentData is non-null then it must match the existing task data.
540 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800541
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700542 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800543 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
544 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700545 if (task.voiceSession != null) {
546 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700547 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700548 continue;
549 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700550 if (task.userId != userId) {
551 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700552 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700553 continue;
554 }
Craig Mautner000f0022013-02-26 15:04:29 -0800555 final ActivityRecord r = task.getTopActivity();
556 if (r == null || r.finishing || r.userId != userId ||
557 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700558 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800559 continue;
560 }
561
Craig Mautnerd00f4742014-03-12 14:17:26 -0700562 final Intent taskIntent = task.intent;
563 final Intent affinityIntent = task.affinityIntent;
564 final boolean taskIsDocument;
565 final Uri taskDocumentData;
566 if (taskIntent != null && taskIntent.isDocument()) {
567 taskIsDocument = true;
568 taskDocumentData = taskIntent.getData();
569 } else if (affinityIntent != null && affinityIntent.isDocument()) {
570 taskIsDocument = true;
571 taskDocumentData = affinityIntent.getData();
572 } else {
573 taskIsDocument = false;
574 taskDocumentData = null;
575 }
576
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700577 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700578 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700579 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700580 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700581 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
582 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700583 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700584 return r;
585 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700586 } else if (taskIntent != null && taskIntent.getComponent() != null &&
587 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700588 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700589 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800590 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700591 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
592 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800593 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700594 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
595 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700596 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700597 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800598 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700599 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
600 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800601 return r;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700602 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700603 }
604
605 return null;
606 }
607
608 /**
609 * Returns the first activity (starting from the top of the stack) that
610 * is the same as the given activity. Returns null if no such activity
611 * is found.
612 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700613 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700614 ComponentName cls = intent.getComponent();
615 if (info.targetActivity != null) {
616 cls = new ComponentName(info.packageName, info.targetActivity);
617 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700618 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700619
Craig Mautner000f0022013-02-26 15:04:29 -0800620 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700621 final TaskRecord task = mTaskHistory.get(taskNdx);
622 final boolean notCurrentUserTask = !isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700623 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700624
Craig Mautner000f0022013-02-26 15:04:29 -0800625 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
626 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700627 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_ON_LOCK_SCREEN) == 0) {
628 return null;
629 }
Craig Mautner000f0022013-02-26 15:04:29 -0800630 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700631 //Slog.i(TAG, "Found matching class!");
632 //dump();
633 //Slog.i(TAG, "For Intent " + intent + " bringing to top: " + r.intent);
634 return r;
635 }
636 }
637 }
638
639 return null;
640 }
641
Amith Yamasani742a6712011-05-04 14:49:28 -0700642 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700643 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700644 */
Craig Mautner93529a42013-10-04 15:03:13 -0700645 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800646 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700647 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800648 }
649 mCurrentUser = userId;
650
651 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800652 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800653 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700654 final TaskRecord task = mTaskHistory.get(i);
655
656 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
657 // okay to show the activity when locked.
658 if (isCurrentProfileLocked(task.userId)
659 || task.topRunningActivityLocked(null) != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700660 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700661 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800662 mTaskHistory.remove(i);
663 mTaskHistory.add(task);
664 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800665 // Use same value for i.
666 } else {
667 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800668 }
669 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700670 if (VALIDATE_TOKENS) {
671 validateAppTokensLocked();
672 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700673 }
674
Craig Mautner2420ead2013-04-01 17:13:20 -0700675 void minimalResumeActivityLocked(ActivityRecord r) {
676 r.state = ActivityState.RESUMED;
677 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + r
678 + " (starting new instance)");
679 r.stopped = false;
680 mResumedActivity = r;
681 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800682 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700683 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700684 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700685 setLaunchTime(r);
Craig Mautner2420ead2013-04-01 17:13:20 -0700686 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700687 }
688
Dianne Hackborncee04b52013-07-03 17:01:28 -0700689 private void startLaunchTraces() {
690 if (mFullyDrawnStartTime != 0) {
691 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
692 }
693 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
694 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
695 }
696
697 private void stopFullyDrawnTraceIfNeeded() {
698 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
699 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
700 mFullyDrawnStartTime = 0;
701 }
702 }
703
Craig Mautnere79d42682013-04-01 19:01:53 -0700704 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700705 if (r.displayStartTime == 0) {
706 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
707 if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700708 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700709 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700710 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700711 } else if (mLaunchStartTime == 0) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700712 startLaunchTraces();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700713 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700714 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700715 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800716
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700717 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700718 // Make sure that there is no activity waiting for this to launch.
719 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
720 r.displayStartTime = r.fullyDrawnStartTime = 0;
721 } else {
722 mStackSupervisor.removeTimeoutsForActivityLocked(r);
723 mStackSupervisor.scheduleIdleTimeoutLocked(r);
724 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700725 }
726
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800727 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800728 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800729 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
730 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
731 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
732 activities.get(activityNdx).setSleeping(false);
733 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800734 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800735 if (mPausingActivity != null) {
736 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
737 activityPausedLocked(mPausingActivity.appToken, true);
738 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800739 }
740
Craig Mautner0eea92c2013-05-16 13:35:39 -0700741 /**
742 * @return true if something must be done before going to sleep.
743 */
744 boolean checkReadyForSleepLocked() {
745 if (mResumedActivity != null) {
746 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700747 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
748 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
749 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700750 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700751 return true;
752 }
753 if (mPausingActivity != null) {
754 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700755 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700756 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800757 }
758
Craig Mautner0eea92c2013-05-16 13:35:39 -0700759 return false;
760 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800761
Craig Mautner0eea92c2013-05-16 13:35:39 -0700762 void goToSleep() {
763 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800764
Craig Mautner0eea92c2013-05-16 13:35:39 -0700765 // Make sure any stopped but visible activities are now sleeping.
766 // This ensures that the activity's onStop() is called.
767 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
768 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
769 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
770 final ActivityRecord r = activities.get(activityNdx);
771 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
772 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800773 }
774 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800775 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700776 }
Craig Mautner59c00972012-07-30 12:10:24 -0700777
Dianne Hackbornd2835932010-12-13 16:28:46 -0800778 public final Bitmap screenshotActivities(ActivityRecord who) {
Winson Chung376543b2014-05-21 17:43:28 -0700779 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800780 if (who.noDisplay) {
Winson Chung376543b2014-05-21 17:43:28 -0700781 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800782 return null;
783 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800784
Winson Chung083baf92014-07-11 10:32:42 -0700785 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700786 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800787 // we can just go ahead and skip taking the screenshot if this is the home stack.
788 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700789 return null;
790 }
791
Winson Chung48a10a52014-08-27 14:36:51 -0700792 int w = mService.mThumbnailWidth;
793 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800794 if (w > 0) {
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800795 if (DEBUG_SCREENSHOTS) Slog.d(TAG, "\tTaking screenshot");
796 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Dianne Hackborn27eac1d2015-03-16 17:15:53 -0700797 w, h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800798 }
Winson Chung376543b2014-05-21 17:43:28 -0700799 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800800 return null;
801 }
802
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700803 /**
804 * Start pausing the currently resumed activity. It is an error to call this if there
805 * is already an activity being paused or there is no resumed activity.
806 *
807 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
808 * @param uiSleeping True if this is happening with the user interface going to sleep (the
809 * screen turning off).
810 * @param resuming True if this is being called as part of resuming the top activity, so
811 * we shouldn't try to instigate a resume here.
812 * @param dontWait True if the caller does not want to wait for the pause to complete. If
813 * set to true, we will immediately complete the pause here before returning.
814 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
815 * it to tell us when it is done.
816 */
817 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
818 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800819 if (mPausingActivity != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700820 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity);
821 completePauseLocked(false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800822 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700823 ActivityRecord prev = mResumedActivity;
824 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700825 if (!resuming) {
826 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
827 mStackSupervisor.resumeTopActivitiesLocked();
828 }
829 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700830 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800831
832 if (mActivityContainer.mParentActivity == null) {
833 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700834 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800835 }
836
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700837 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700838 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700839 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800840 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700841 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700842 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
843 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700844 prev.state = ActivityState.PAUSING;
845 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700846 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700847 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwaled3e2a082014-11-04 16:09:19 -0800848 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800849 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700850 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700851 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700852
853 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800854
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700855 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700856 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700857 try {
858 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700859 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700860 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700861 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800862 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700863 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700864 } catch (Exception e) {
865 // Ignore exception, if process died other code will cleanup.
866 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800867 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700868 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700869 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700870 }
871 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800872 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700873 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700874 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700875 }
876
877 // If we are not going to sleep, we want to ensure the device is
878 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700879 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700880 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700881 }
882
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800883 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700884 // Have the window manager pause its key dispatching until the new
885 // activity has started. If we're pausing the activity just because
886 // the screen is being turned off and the UI is sleeping, don't interrupt
887 // key dispatch; the same activity will pick it up again on wakeup.
888 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800889 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700890 } else if (DEBUG_PAUSE) {
891 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700892 }
893
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700894 if (dontWait) {
895 // If the caller said they don't want to wait for the pause, then complete
896 // the pause now.
897 completePauseLocked(false);
898 return false;
899
900 } else {
901 // Schedule a pause timeout in case the app doesn't respond.
902 // We don't give it much time because this directly impacts the
903 // responsiveness seen by the user.
904 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
905 msg.obj = prev;
906 prev.pauseTime = SystemClock.uptimeMillis();
907 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700908 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700909 return true;
910 }
911
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700912 } else {
913 // This activity failed to schedule the
914 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700915 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700916 if (!resuming) {
917 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
918 }
919 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700920 }
921 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700922
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700923 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700924 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
925 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700926
Craig Mautnerd2328952013-03-05 12:46:26 -0800927 final ActivityRecord r = isInStackLocked(token);
928 if (r != null) {
929 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
930 if (mPausingActivity == r) {
931 if (DEBUG_STATES) Slog.v(TAG, "Moving to PAUSED: " + r
932 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700933 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800934 } else {
935 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
936 r.userId, System.identityHashCode(r), r.shortComponentName,
937 mPausingActivity != null
938 ? mPausingActivity.shortComponentName : "(none)");
louis_chang047dfd42015-04-08 16:35:55 +0800939 if (r.finishing && r.state == ActivityState.PAUSING) {
940 if (DEBUG_PAUSE) Slog.v(TAG,
941 "Executing finish of failed to pause activity: " + r);
942 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
943 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700944 }
945 }
946 }
947
Craig Mautnera0026042014-04-23 11:45:37 -0700948 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
949 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700950 if (r.state != ActivityState.STOPPING) {
951 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
952 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
953 return;
954 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700955 if (persistentState != null) {
956 r.persistentState = persistentState;
957 mService.notifyTaskPersisterLocked(r.task, false);
958 }
Dianne Hackborn98cfebc2011-10-18 13:17:33 -0700959 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700960 if (icicle != null) {
961 // If icicle is null, this is happening due to a timeout, so we
962 // haven't really saved the state.
963 r.icicle = icicle;
964 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800965 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -0800966 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700967 }
968 if (!r.stopped) {
969 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPED: " + r + " (stop complete)");
970 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
971 r.stopped = true;
972 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -0700973 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
974 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700975 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700976 if (r.finishing) {
977 r.clearOptionsLocked();
978 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700979 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700980 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700981 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700982 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700983 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800984 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700985 }
986 }
987 }
988
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700989 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800990 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700991 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -0800992
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800993 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700994 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800995 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700996 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700997 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800998 } else if (prev.app != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700999 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -08001000 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001001 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1002 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001003 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001004 if (prev.configDestroy) {
1005 // The previous is being paused because the configuration
1006 // is changing, which means it is actually stopping...
1007 // To juggle the fact that we are also starting a new
1008 // instance right now, we need to first completely stop
1009 // the current instance before starting the new one.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001010 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001011 destroyActivityLocked(prev, true, "pause-config");
Jose Lima4b6c6692014-08-12 17:41:12 -07001012 } else if (!hasVisibleBehindActivity()) {
1013 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001014 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001015 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -07001016 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
1017 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001018 // If we already have a few activities waiting to stop,
1019 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07001020 // them out. Or if r is the last of activity of the last task the stack
1021 // will be empty and must be cleared immediately.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001022 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -07001023 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001024 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001025 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001026 }
1027 }
1028 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001029 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001030 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001031 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001032 // It is possible the activity was freezing the screen before it was paused.
1033 // In that case go ahead and remove the freeze this activity has on the screen
1034 // since it is no longer visible.
1035 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001036 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001037 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001038
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001039 if (resumeNext) {
1040 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1041 if (!mService.isSleepingOrShuttingDown()) {
1042 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1043 } else {
1044 mStackSupervisor.checkReadyForSleepLocked();
1045 ActivityRecord top = topStack.topRunningActivityLocked(null);
1046 if (top == null || (prev != null && top != prev)) {
1047 // If there are no more activities available to run,
1048 // do resume anyway to start something. Also if the top
1049 // activity on the stack is not the just paused activity,
1050 // we need to go ahead and resume it to ensure we complete
1051 // an in-flight app switch.
1052 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1053 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001054 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001055 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001056
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001057 if (prev != null) {
1058 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001059
Craig Mautner525f3d92013-05-07 14:01:50 -07001060 if (prev.app != null && prev.cpuTimeAtResume > 0
1061 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001062 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1063 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001064 if (diff > 0) {
1065 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1066 synchronized (bsi) {
1067 BatteryStatsImpl.Uid.Proc ps =
1068 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001069 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001070 if (ps != null) {
1071 ps.addForegroundTimeLocked(diff);
1072 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001073 }
1074 }
1075 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001076 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001077 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001078
1079 // Notfiy when the task stack has changed
1080 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001081 }
1082
1083 /**
1084 * Once we know that we have asked an application to put an activity in
1085 * the resumed state (either by launching it or explicitly telling it),
1086 * this function updates the rest of our state to match that fact.
1087 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001088 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001089 next.idle = false;
1090 next.results = null;
1091 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001092
1093 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1094 ProcessRecord app = next.task.mActivities.get(0).app;
1095 if (app != null && app != mService.mHomeProcess) {
1096 mService.mHomeProcess = app;
1097 }
1098 }
1099
Craig Mautner07566322013-09-26 16:42:55 -07001100 if (next.nowVisible) {
1101 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001102 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001103 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001104
1105 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001106 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001107
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001108 mStackSupervisor.reportResumedActivityLocked(next);
1109
1110 next.resumeKeyDispatchingLocked();
1111 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001112
1113 // Mark the point when the activity is resuming
1114 // TODO: To be more accurate, the mark should be before the onCreate,
1115 // not after the onResume. But for subsequent starts, onResume is fine.
1116 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001117 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001118 } else {
1119 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1120 }
Winson Chung376543b2014-05-21 17:43:28 -07001121
George Mount6ba042b2014-07-28 11:12:28 -07001122 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001123
1124 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1125 // When resuming an activity, require it to call requestVisibleBehind() again.
1126 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1127 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001128 }
1129
Craig Mautner2568c3a2015-03-26 14:22:34 -07001130 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001131 r.visible = visible;
1132 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001133 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001134 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001135 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001136 container.setVisible(visible);
1137 }
1138 }
1139
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001140 // Find the first visible activity above the passed activity and if it is translucent return it
1141 // otherwise return null;
1142 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1143 TaskRecord task = r.task;
1144 if (task == null) {
1145 return null;
1146 }
1147
1148 ActivityStack stack = task.stack;
1149 if (stack == null) {
1150 return null;
1151 }
1152
1153 int stackNdx = mStacks.indexOf(stack);
1154
1155 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1156 int taskNdx = tasks.indexOf(task);
1157
1158 ArrayList<ActivityRecord> activities = task.mActivities;
1159 int activityNdx = activities.indexOf(r) + 1;
1160
1161 final int numStacks = mStacks.size();
1162 while (stackNdx < numStacks) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001163 ActivityStack historyStack = mStacks.get(stackNdx);
1164 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001165 final int numTasks = tasks.size();
1166 while (taskNdx < numTasks) {
1167 activities = tasks.get(taskNdx).mActivities;
1168 final int numActivities = activities.size();
1169 while (activityNdx < numActivities) {
1170 final ActivityRecord activity = activities.get(activityNdx);
1171 if (!activity.finishing) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001172 return historyStack.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001173 }
1174 ++activityNdx;
1175 }
1176 activityNdx = 0;
1177 ++taskNdx;
1178 }
1179 taskNdx = 0;
1180 ++stackNdx;
1181 }
1182
1183 return null;
1184 }
1185
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001186 private ActivityStack getNextVisibleStackLocked() {
1187 ArrayList<ActivityStack> stacks = mStacks;
1188 final ActivityRecord parent = mActivityContainer.mParentActivity;
1189 if (parent != null) {
1190 stacks = parent.task.stack.mStacks;
1191 }
1192 if (stacks != null) {
1193 for (int i = stacks.size() - 1; i >= 0; --i) {
1194 ActivityStack stack = stacks.get(i);
1195 if (stack != this && stack.isStackVisibleLocked()) {
1196 return stack;
1197 }
1198 }
1199 }
1200 return null;
1201 }
1202
Jose Lima7ba71252014-04-30 12:59:27 -07001203 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1204 // If so, this stack is hidden, otherwise it is visible.
Todd Kennedyaab56db2015-01-30 09:39:53 -08001205 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001206 if (!isAttached()) {
1207 return false;
1208 }
1209
1210 if (mStackSupervisor.isFrontStack(this)) {
1211 return true;
1212 }
1213
Jose Lima729cb232014-05-05 15:59:40 -07001214 /**
1215 * Start at the task above this one and go up, looking for a visible
1216 * fullscreen activity, or a translucent activity that requested the
1217 * wallpaper to be shown behind it.
1218 */
Jose Lima7ba71252014-04-30 12:59:27 -07001219 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001220 ActivityStack stack = mStacks.get(i);
1221 // stack above isn't full screen, so, we assume we're still visible. at some point
1222 // we should look at the stack bounds to see if we're occluded even if the stack
1223 // isn't fullscreen
1224 if (!stack.mFullscreen) {
1225 continue;
1226 }
1227 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1228 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001229 final TaskRecord task = tasks.get(taskNdx);
1230 final ArrayList<ActivityRecord> activities = task.mActivities;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001231 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Jose Lima7ba71252014-04-30 12:59:27 -07001232 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001233
1234 // Conditions for an activity to obscure the stack we're
1235 // examining:
1236 // 1. Not Finishing AND Visible AND:
1237 // 2. Either:
1238 // - Full Screen Activity OR
1239 // - On top of Home and our stack is NOT home
1240 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001241 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001242 return false;
1243 }
1244 }
1245 }
1246 }
1247
1248 return true;
1249 }
1250
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001251 /**
1252 * Make sure that all activities that need to be visible (that is, they
1253 * currently can be seen by the user) actually are.
1254 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001255 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1256 ActivityRecord top = topRunningActivityLocked(null);
1257 if (top == null) {
1258 return;
1259 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001260 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1261 "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001262 + " configChanges=0x" + Integer.toHexString(configChanges));
1263
Craig Mautner5eda9b32013-07-02 11:58:16 -07001264 if (mTranslucentActivityWaiting != top) {
1265 mUndrawnActivitiesBelowTopTranslucent.clear();
1266 if (mTranslucentActivityWaiting != null) {
1267 // Call the callback with a timeout indication.
1268 notifyActivityDrawnLocked(null);
1269 mTranslucentActivityWaiting = null;
1270 }
1271 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1272 }
1273
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001274 // If the top activity is not fullscreen, then we need to
1275 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001276 boolean aboveTop = true;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001277 boolean behindFullscreen = !isStackVisibleLocked();
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001278 boolean noStackActivityResumed = (isInStackLocked(starting) == null);
Jose Lima7ba71252014-04-30 12:59:27 -07001279
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001280 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001281 final TaskRecord task = mTaskHistory.get(taskNdx);
1282 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001283 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1284 final ActivityRecord r = activities.get(activityNdx);
1285 if (r.finishing) {
1286 continue;
1287 }
1288 if (aboveTop && r != top) {
1289 continue;
1290 }
1291 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001292 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1293 // but must be drawn initially for the animation as though they were visible.
1294 if (!behindFullscreen || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001295 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1296 "Make visible? " + r + " finishing=" + r.finishing
Craig Mautnerd44711d2013-02-23 11:24:36 -08001297 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001298
Craig Mautnerd44711d2013-02-23 11:24:36 -08001299 // First: if this is not the current activity being started, make
1300 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001301 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001302 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001303 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001304
1305 if (r.app == null || r.app.thread == null) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001306 // This activity needs to be visible, but isn't even running...
1307 // get it started and resume if no other stack in this stack is resumed.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001308 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1309 "Start and freeze screen for " + r);
Craig Mautnerbb742462014-07-07 15:28:55 -07001310 if (r != starting) {
1311 r.startFreezingScreenLocked(r.app, configChanges);
1312 }
1313 if (!r.visible || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001314 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1315 "Starting and making visible: " + r);
Craig Mautner2568c3a2015-03-26 14:22:34 -07001316 setVisible(r, true);
Craig Mautnerbb742462014-07-07 15:28:55 -07001317 }
1318 if (r != starting) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001319 mStackSupervisor.startSpecificActivityLocked(
1320 r, noStackActivityResumed, false);
1321 noStackActivityResumed = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001322 }
1323
1324 } else if (r.visible) {
1325 // If this activity is already visible, then there is nothing
1326 // else to do here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001327 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1328 "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001329 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001330 try {
George Mount6ba042b2014-07-28 11:12:28 -07001331 if (r.returningOptions != null) {
1332 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1333 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001334 }
1335 } catch(RemoteException e) {
1336 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001337 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001338 // This activity is not currently visible, but is running.
1339 // Tell it to become visible.
1340 r.visible = true;
1341 if (r.state != ActivityState.RESUMED && r != starting) {
1342 // If this activity is paused, tell it
1343 // to now show its window.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001344 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1345 "Making visible and scheduling visibility: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001346 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001347 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001348 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001349 mUndrawnActivitiesBelowTopTranslucent.add(r);
1350 }
Craig Mautner2568c3a2015-03-26 14:22:34 -07001351 setVisible(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001352 r.sleeping = false;
1353 r.app.pendingUiClean = true;
1354 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1355 r.stopFreezingScreenLocked(false);
1356 } catch (Exception e) {
1357 // Just skip on any failure; we'll make it
1358 // visible when it next restarts.
1359 Slog.w(TAG, "Exception thrown making visibile: "
1360 + r.intent.getComponent(), e);
1361 }
1362 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001363 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001364
Craig Mautnerd44711d2013-02-23 11:24:36 -08001365 // Aggregate current change flags.
1366 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001367
Craig Mautnerd44711d2013-02-23 11:24:36 -08001368 if (r.fullscreen) {
1369 // At this point, nothing else needs to be shown
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001370 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r);
Craig Mautner580ea812013-04-25 12:58:38 -07001371 behindFullscreen = true;
Craig Mautner84984fa2014-06-19 11:19:20 -07001372 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001373 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r);
Jose Lima729cb232014-05-05 15:59:40 -07001374 behindFullscreen = true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001375 }
1376 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001377 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1378 "Make invisible? " + r + " finishing=" + r.finishing
1379 + " state=" + r.state + " behindFullscreen=" + behindFullscreen);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001380 // Now for any activities that aren't visible to the user, make
1381 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001382 if (r.visible) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001383 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001384 try {
Craig Mautner2568c3a2015-03-26 14:22:34 -07001385 setVisible(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001386 switch (r.state) {
1387 case STOPPING:
1388 case STOPPED:
1389 if (r.app != null && r.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001390 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1391 "Scheduling invisibility: " + r);
Craig Mautner4addfc52013-06-25 08:05:45 -07001392 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1393 }
1394 break;
1395
1396 case INITIALIZING:
1397 case RESUMED:
1398 case PAUSING:
1399 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001400 // This case created for transitioning activities from
1401 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001402 if (getVisibleBehindActivity() == r) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001403 releaseBackgroundResources(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001404 } else {
1405 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1406 mStackSupervisor.mStoppingActivities.add(r);
1407 }
1408 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001409 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001410 break;
1411
1412 default:
1413 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001414 }
1415 } catch (Exception e) {
1416 // Just skip on any failure; we'll make it
1417 // visible when it next restarts.
1418 Slog.w(TAG, "Exception thrown making hidden: "
1419 + r.intent.getComponent(), e);
1420 }
1421 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001422 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001423 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001424 }
1425 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001426 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001427
1428 if (mTranslucentActivityWaiting != null &&
1429 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1430 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1431 notifyActivityDrawnLocked(null);
1432 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001433 }
Craig Mautner58547802013-03-05 08:23:53 -08001434
Todd Kennedyaab56db2015-01-30 09:39:53 -08001435 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001436 mTranslucentActivityWaiting = r;
1437 mUndrawnActivitiesBelowTopTranslucent.clear();
1438 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1439 }
1440
1441 /**
1442 * Called as activities below the top translucent activity are redrawn. When the last one is
1443 * redrawn notify the top activity by calling
1444 * {@link Activity#onTranslucentConversionComplete}.
1445 *
1446 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1447 * occurred and the activity will be notified immediately.
1448 */
1449 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001450 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001451 if ((r == null)
1452 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1453 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1454 // The last undrawn activity below the top has just been drawn. If there is an
1455 // opaque activity at the top, notify it that it can become translucent safely now.
1456 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1457 mTranslucentActivityWaiting = null;
1458 mUndrawnActivitiesBelowTopTranslucent.clear();
1459 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1460
Craig Mautner71dd1b62014-02-18 15:48:52 -08001461 if (waitingActivity != null) {
1462 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1463 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1464 try {
1465 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1466 waitingActivity.appToken, r != null);
1467 } catch (RemoteException e) {
1468 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001469 }
1470 }
1471 }
1472 }
1473
Craig Mautnera61bc652013-10-28 15:43:18 -07001474 /** If any activities below the top running one are in the INITIALIZING state and they have a
1475 * starting window displayed then remove that starting window. It is possible that the activity
1476 * in this state will never resumed in which case that starting window will be orphaned. */
1477 void cancelInitializingActivities() {
1478 final ActivityRecord topActivity = topRunningActivityLocked(null);
1479 boolean aboveTop = true;
1480 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1481 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1482 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1483 final ActivityRecord r = activities.get(activityNdx);
1484 if (aboveTop) {
1485 if (r == topActivity) {
1486 aboveTop = false;
1487 }
1488 continue;
1489 }
1490
1491 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001492 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1493 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001494 r.mStartingWindowShown = false;
1495 mWindowManager.removeAppStartingWindow(r.appToken);
1496 }
1497 }
1498 }
1499 }
1500
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001501 /**
1502 * Ensure that the top activity in the stack is resumed.
1503 *
1504 * @param prev The previously resumed activity, for when in the process
1505 * of pausing; can be null to call from elsewhere.
1506 *
1507 * @return Returns true if something is being resumed, or false if
1508 * nothing happened.
1509 */
1510 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001511 return resumeTopActivityLocked(prev, null);
1512 }
1513
1514 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001515 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001516 // Don't even start recursing.
1517 return false;
1518 }
1519
1520 boolean result = false;
1521 try {
1522 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001523 mStackSupervisor.inResumeTopActivity = true;
1524 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1525 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001526 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001527 }
Craig Mautner544efa72014-09-04 16:41:20 -07001528 result = resumeTopActivityInnerLocked(prev, options);
1529 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001530 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001531 }
1532 return result;
1533 }
1534
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001535 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001536 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001537
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001538 if (!mService.mBooting && !mService.mBooted) {
1539 // Not ready yet!
1540 return false;
1541 }
1542
Craig Mautnerdf88d732014-01-27 09:21:32 -08001543 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001544 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001545 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001546 // Do not resume this stack if its parent is not resumed.
1547 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1548 return false;
1549 }
1550
Craig Mautnera61bc652013-10-28 15:43:18 -07001551 cancelInitializingActivities();
1552
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001553 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001554 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001555
1556 // Remember how we'll process this pause/resume situation, and ensure
1557 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001558 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1559 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001560
Craig Mautner84984fa2014-06-19 11:19:20 -07001561 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001562 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001563 // There are no more activities!
1564 final String reason = "noMoreActivities";
1565 if (!mFullscreen) {
1566 // Try to move focus to the next visible stack with a running activity if this
1567 // stack is not covering the entire screen.
1568 final ActivityStack stack = getNextVisibleStackLocked();
1569 if (adjustFocusToNextVisibleStackLocked(stack, reason)) {
1570 return mStackSupervisor.resumeTopActivitiesLocked(stack, prev, null);
1571 }
1572 }
1573 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001574 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001575 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001576 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001577 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001578 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1579 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1580 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001581 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001582 }
1583
1584 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001585
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001586 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001587 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1588 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001589 // Make sure we have executed any pending transitions, since there
1590 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001591 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001592 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001593 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001594 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001595 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001596 return false;
1597 }
1598
Craig Mautner525f3d92013-05-07 14:01:50 -07001599 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001600 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001601 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001602 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001603 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001604 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001605 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001606 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001607 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001608 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001609 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001610 } else if (!isOnHomeDisplay()) {
1611 return false;
1612 } else if (!isHomeStack()){
1613 if (DEBUG_STATES) Slog.d(TAG,
Craig Mautnere0a38842013-12-16 16:14:02 -08001614 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001615 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1616 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1617 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001618 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001619 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001620 }
1621
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001622 // If we are sleeping, and there is no resumed activity, and the top
1623 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001624 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001625 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001626 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001627 // Make sure we have executed any pending transitions, since there
1628 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001629 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001630 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001631 ActivityOptions.abort(options);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001632 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001633 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001634 return false;
1635 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001636
1637 // Make sure that the user who owns this activity is started. If not,
1638 // we will just leave it as is because someone should be bringing
1639 // another user's activities to the top of the stack.
1640 if (mService.mStartedUsers.get(next.userId) == null) {
1641 Slog.w(TAG, "Skipping resume of top activity " + next
1642 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001643 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001644 return false;
1645 }
1646
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001647 // The activity may be waiting for stop, but that is no longer
1648 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001649 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001650 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001651 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001652 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001653
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001654 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001655
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001656 // If we are currently pausing an activity, then don't do anything
1657 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001658 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001659 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001660 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001661 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001662 return false;
1663 }
1664
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001665 // Okay we are now going to start a switch, to 'next'. We may first
1666 // have to pause the current activity, but this is an important point
1667 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001668 // XXX "App Redirected" dialog is getting too many false positives
1669 // at this point, so turn off for now.
1670 if (false) {
1671 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1672 long now = SystemClock.uptimeMillis();
1673 final boolean inTime = mLastStartedActivity.startTime != 0
1674 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1675 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1676 final int nextUid = next.info.applicationInfo.uid;
1677 if (inTime && lastUid != nextUid
1678 && lastUid != next.launchedFromUid
1679 && mService.checkPermission(
1680 android.Manifest.permission.STOP_APP_SWITCHES,
1681 -1, next.launchedFromUid)
1682 != PackageManager.PERMISSION_GRANTED) {
1683 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1684 } else {
1685 next.startTime = now;
1686 mLastStartedActivity = next;
1687 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001688 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001689 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001690 mLastStartedActivity = next;
1691 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001692 }
Craig Mautner58547802013-03-05 08:23:53 -08001693
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001694 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
1695
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001696 // We need to start pausing the current activity so the top one
1697 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001698 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1699 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001700 if (mResumedActivity != null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001701 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001702 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001703 }
1704 if (pausing) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001705 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG,
1706 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001707 // At this point we want to put the upcoming activity's process
1708 // at the top of the LRU list, since we know we will be needing it
1709 // very soon and it would be a waste to let it get killed if it
1710 // happens to be sitting towards the end.
1711 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001712 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001713 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001714 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001715 return true;
1716 }
1717
Christopher Tated3f175c2012-06-14 14:16:54 -07001718 // If the most recent activity was noHistory but was only stopped rather
1719 // than stopped+finished because the device went to sleep, we need to make
1720 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001721 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001722 !mLastNoHistoryActivity.finishing) {
1723 if (DEBUG_STATES) Slog.d(TAG, "no-history finish of " + mLastNoHistoryActivity +
1724 " on new resume");
1725 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001726 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001727 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001728 }
1729
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001730 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001731 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1732 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001733 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001734 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1735 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001736 } else {
1737 // The next activity is already visible, so hide the previous
1738 // activity's windows right now so we can show the new one ASAP.
1739 // We only do this if the previous is finishing, which should mean
1740 // it is on top of the one being resumed so hiding it quickly
1741 // is good. Otherwise, we want to do the normal route of allowing
1742 // the resumed activity to be shown so we can decide if the
1743 // previous should actually be hidden depending on whether the
1744 // new one is found to be full-screen or not.
1745 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001746 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001747 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1748 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001749 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001750 + ", nowVisible=" + next.nowVisible);
1751 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001752 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08001753 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001754 + ", waitingVisible="
1755 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1756 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001757 }
1758 }
1759 }
1760
Dianne Hackborne7f97212011-02-24 14:40:20 -08001761 // Launching this app's activity, make sure the app is no longer
1762 // considered stopped.
1763 try {
1764 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001765 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001766 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001767 } catch (IllegalArgumentException e) {
1768 Slog.w(TAG, "Failed trying to unstop package "
1769 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001770 }
1771
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001772 // We are starting up the next activity, so tell the window manager
1773 // that the previous one will be hidden soon. This way it can know
1774 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001775 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001776 if (prev != null) {
1777 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001778 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001779 "Prepare close transition: prev=" + prev);
1780 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001781 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001782 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001783 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001784 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001785 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1786 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001787 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001788 mWindowManager.setAppWillBeHidden(prev.appToken);
1789 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001790 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001791 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
1792 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001793 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001794 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001795 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001796 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001797 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001798 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001799 : next.mLaunchTaskBehind
1800 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1801 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001802 }
1803 }
1804 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001805 mWindowManager.setAppWillBeHidden(prev.appToken);
1806 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001807 }
Craig Mautner967212c2013-04-13 21:10:58 -07001808 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001809 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001810 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001811 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001812 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001813 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001814 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001815 }
1816 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001817
1818 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001819 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001820 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1821 if (opts != null) {
1822 resumeAnimOptions = opts.toBundle();
1823 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001824 next.applyOptionsLocked();
1825 } else {
1826 next.clearOptionsLocked();
1827 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001828
Craig Mautnercf910b02013-04-23 11:23:27 -07001829 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001830 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001831 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001832
1833 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001834 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001835
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001836 // schedule launch ticks to collect information about slow apps.
1837 next.startLaunchTickingLocked();
1838
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001839 ActivityRecord lastResumedActivity =
1840 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001841 ActivityState lastState = next.state;
1842
1843 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001844
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001845 if (DEBUG_STATES) Slog.v(TAG, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001846 next.state = ActivityState.RESUMED;
1847 mResumedActivity = next;
1848 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08001849 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001850 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001851 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001852 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001853
1854 // Have the window manager re-evaluate the orientation of
1855 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001856 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001857 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001858 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001859 mService.mConfiguration,
1860 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1861 if (config != null) {
1862 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001863 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001864 notUpdated = !mService.updateConfigurationLocked(config, next, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001865 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001866
Craig Mautner525f3d92013-05-07 14:01:50 -07001867 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001868 // The configuration update wasn't able to keep the existing
1869 // instance of the activity, and instead started a new one.
1870 // We should be all done, but let's just make sure our activity
1871 // is still at the top and schedule another run if something
1872 // weird happened.
1873 ActivityRecord nextNext = topRunningActivityLocked(null);
Craig Mautnerac6f8432013-07-17 13:24:59 -07001874 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001875 "Activity config changed during resume: " + next
1876 + ", new next: " + nextNext);
1877 if (nextNext != next) {
1878 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001879 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001880 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001881 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001882 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001883 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001884 return true;
1885 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001886 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001887 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001888 }
Craig Mautner58547802013-03-05 08:23:53 -08001889
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001890 try {
1891 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001892 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001893 if (a != null) {
1894 final int N = a.size();
1895 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001896 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
1897 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001898 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001899 }
1900 }
1901
1902 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001903 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001904 }
1905
Craig Mautner299f9602015-01-26 09:47:33 -08001906 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
1907 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001908
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001909 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001910 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001911 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001912 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07001913 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001914 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001915 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001916
Craig Mautner0eea92c2013-05-16 13:35:39 -07001917 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001918
Craig Mautnerac6f8432013-07-17 13:24:59 -07001919 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001920 } catch (Exception e) {
1921 // Whoops, need to restart this activity!
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001922 if (DEBUG_STATES) Slog.v(TAG, "Resume failed; resetting state to "
1923 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001924 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001925 if (lastStack != null) {
1926 lastStack.mResumedActivity = lastResumedActivity;
1927 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001928 Slog.i(TAG, "Restarting because process died: " + next);
1929 if (!next.hasBeenLaunched) {
1930 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001931 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1932 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001933 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001934 next.appToken, next.packageName, next.theme,
1935 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001936 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1937 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001938 }
George Mount2c92c972014-03-20 09:38:23 -07001939 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07001940 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001941 return true;
1942 }
1943
1944 // From this point on, if something goes wrong there is no way
1945 // to recover the activity.
1946 try {
1947 next.visible = true;
1948 completeResumeLocked(next);
1949 } catch (Exception e) {
1950 // If any exception gets thrown, toss away this
1951 // activity and try the next one.
1952 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001953 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001954 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07001955 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001956 return true;
1957 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001958 next.stopped = false;
1959
1960 } else {
1961 // Whoops, need to restart this activity!
1962 if (!next.hasBeenLaunched) {
1963 next.hasBeenLaunched = true;
1964 } else {
1965 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001966 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08001967 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07001968 mService.compatibilityInfoForPackageLocked(
1969 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001970 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07001971 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08001972 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001973 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001974 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001975 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001976 if (DEBUG_STATES) Slog.d(TAG, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07001977 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001978 }
1979
Craig Mautnercf910b02013-04-23 11:23:27 -07001980 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001981 return true;
1982 }
1983
riddle_hsuc215a4f2014-12-27 12:10:45 +08001984 private TaskRecord getNextTask(TaskRecord targetTask) {
1985 final int index = mTaskHistory.indexOf(targetTask);
1986 if (index >= 0) {
1987 final int numTasks = mTaskHistory.size();
1988 for (int i = index + 1; i < numTasks; ++i) {
1989 TaskRecord task = mTaskHistory.get(i);
1990 if (task.userId == targetTask.userId) {
1991 return task;
1992 }
1993 }
1994 }
1995 return null;
1996 }
1997
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07001998 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08001999 // If the moving task is over home stack, transfer its return type to next task
2000 if (task.isOverHomeStack()) {
2001 final TaskRecord nextTask = getNextTask(task);
2002 if (nextTask != null) {
2003 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2004 }
2005 }
2006
Craig Mautner9c85c202013-10-04 20:11:26 -07002007 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002008 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002009 if (isOnHomeDisplay()) {
2010 ActivityStack lastStack = mStackSupervisor.getLastStack();
2011 final boolean fromHome = lastStack.isHomeStack();
2012 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07002013 task.setTaskToReturnTo(fromHome
2014 ? lastStack.topTask() == null
2015 ? HOME_ACTIVITY_TYPE
2016 : lastStack.topTask().taskType
2017 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08002018 }
2019 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002020 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002021 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002022
Craig Mautnerac6f8432013-07-17 13:24:59 -07002023 mTaskHistory.remove(task);
2024 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002025 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002026 final boolean notShownWhenLocked =
2027 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_ON_LOCK_SCREEN) == 0)
2028 || (newActivity == null && task.topRunningActivityLocked(null) == null);
2029 if (!isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002030 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002031 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002032 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
2033 if (!isCurrentProfileLocked(tmpTask.userId)
2034 || tmpTask.topRunningActivityLocked(null) == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002035 break;
2036 }
2037 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002038 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002039 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002040 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002041 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002042 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002043
Craig Mautner8849a5e2013-04-02 16:41:03 -07002044 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002045 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002046 TaskRecord rTask = r.task;
2047 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002048 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2049 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002050 // Last activity in task had been removed or ActivityManagerService is reusing task.
2051 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002052 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002053 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002054 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002055 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002056 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002057 if (!newTask) {
2058 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002059 boolean startIt = true;
2060 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2061 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002062 if (task.getTopActivity() == null) {
2063 // All activities in task are finishing.
2064 continue;
2065 }
Craig Mautner70a86932013-02-28 22:37:44 -08002066 if (task == r.task) {
2067 // Here it is! Now, if this is not yet visible to the
2068 // user, then just add it without starting; it will
2069 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002070 if (!startIt) {
2071 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2072 + task, new RuntimeException("here").fillInStackTrace());
2073 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002074 r.putInHistory();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002075 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
2076 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautnerac6f8432013-07-17 13:24:59 -07002077 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0,
Craig Mautnerbb742462014-07-07 15:28:55 -07002078 r.userId, r.info.configChanges, task.voiceSession != null,
2079 r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002080 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002081 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002082 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002083 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002084 return;
2085 }
2086 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002087 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002088 startIt = false;
2089 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002090 }
2091 }
2092
2093 // Place a new activity at top of stack, so it is next to interact
2094 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002095
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002096 // If we are not placing the new activity frontmost, we do not want
2097 // to deliver the onUserLeaving callback to the actual frontmost
2098 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002099 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002100 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002101 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002102 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002103 }
Craig Mautner70a86932013-02-28 22:37:44 -08002104
2105 task = r.task;
2106
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002107 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002108 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002109 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002110 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002111 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002112
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002113 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002114 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002115 // We want to show the starting preview window if we are
2116 // switching to a new task, or the next activity's process is
2117 // not currently running.
2118 boolean showStartingIcon = newTask;
2119 ProcessRecord proc = r.app;
2120 if (proc == null) {
2121 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2122 }
2123 if (proc == null || proc.thread == null) {
2124 showStartingIcon = true;
2125 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002126 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002127 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002128 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002129 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002130 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002131 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002132 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002133 ? r.mLaunchTaskBehind
2134 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2135 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002136 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002137 mNoAnimActivities.remove(r);
2138 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002139 mWindowManager.addAppToken(task.mActivities.indexOf(r),
Craig Mautnerc00204b2013-03-05 15:02:14 -08002140 r.appToken, r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002141 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002142 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002143 boolean doShow = true;
2144 if (newTask) {
2145 // Even though this activity is starting fresh, we still need
2146 // to reset it to make sure we apply affinities to move any
2147 // existing activities from other tasks in to it.
2148 // If the caller has requested that the target task be
2149 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002150 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002151 resetTaskIfNeededLocked(r, r);
2152 doShow = topRunningNonDelayedActivityLocked(null) == r;
2153 }
George Mount70778d72014-07-01 16:33:45 -07002154 } else if (options != null && new ActivityOptions(options).getAnimationType()
2155 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2156 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002157 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002158 if (r.mLaunchTaskBehind) {
2159 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2160 // tell WindowManager that r is visible even though it is at the back of the stack.
2161 mWindowManager.setAppVisibility(r.appToken, true);
2162 ensureActivitiesVisibleLocked(null, 0);
2163 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002164 // Figure out if we are transitioning from another activity that is
2165 // "has the same starting icon" as the next one. This allows the
2166 // window manager to keep the previous window it had previously
2167 // created, if it still had one.
2168 ActivityRecord prev = mResumedActivity;
2169 if (prev != null) {
2170 // We don't want to reuse the previous starting preview if:
2171 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002172 if (prev.task != r.task) {
2173 prev = null;
2174 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002175 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002176 else if (prev.nowVisible) {
2177 prev = null;
2178 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002179 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002180 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002181 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002182 mService.compatibilityInfoForPackageLocked(
2183 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002184 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002185 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002186 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002187 }
2188 } else {
2189 // If this is the first activity, don't do any fancy animations,
2190 // because there is nothing for it to animate on top of.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002191 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
Craig Mautnerc00204b2013-03-05 15:02:14 -08002192 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
Craig Mautner5d9f5472013-11-12 14:02:52 -08002193 (r.info.flags & ActivityInfo.FLAG_SHOW_ON_LOCK_SCREEN) != 0, r.userId,
Craig Mautnerbb742462014-07-07 15:28:55 -07002194 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002195 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002196 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002197 }
2198 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002199 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002200 }
2201
2202 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002203 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002204 }
2205 }
2206
Dianne Hackbornbe707852011-11-11 14:32:10 -08002207 final void validateAppTokensLocked() {
2208 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002209 mValidateAppTokens.ensureCapacity(numActivities());
2210 final int numTasks = mTaskHistory.size();
2211 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2212 TaskRecord task = mTaskHistory.get(taskNdx);
2213 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002214 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002215 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002216 }
Craig Mautner000f0022013-02-26 15:04:29 -08002217 TaskGroup group = new TaskGroup();
2218 group.taskId = task.taskId;
2219 mValidateAppTokens.add(group);
2220 final int numActivities = activities.size();
2221 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2222 final ActivityRecord r = activities.get(activityNdx);
2223 group.tokens.add(r.appToken);
2224 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002225 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002226 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002227 }
2228
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002229 /**
2230 * Perform a reset of the given task, if needed as part of launching it.
2231 * Returns the new HistoryRecord at the top of the task.
2232 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002233 /**
2234 * Helper method for #resetTaskIfNeededLocked.
2235 * We are inside of the task being reset... we'll either finish this activity, push it out
2236 * for another task, or leave it as-is.
2237 * @param task The task containing the Activity (taskTop) that might be reset.
2238 * @param forceReset
2239 * @return An ActivityOptions that needs to be processed.
2240 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002241 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002242 ActivityOptions topOptions = null;
2243
2244 int replyChainEnd = -1;
2245 boolean canMoveOptions = true;
2246
2247 // We only do this for activities that are not the root of the task (since if we finish
2248 // the root, we may no longer have the task!).
2249 final ArrayList<ActivityRecord> activities = task.mActivities;
2250 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002251 final int rootActivityNdx = task.findEffectiveRootIndex();
2252 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002253 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002254 if (target.frontOfTask)
2255 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002256
2257 final int flags = target.info.flags;
2258 final boolean finishOnTaskLaunch =
2259 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2260 final boolean allowTaskReparenting =
2261 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2262 final boolean clearWhenTaskReset =
2263 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2264
2265 if (!finishOnTaskLaunch
2266 && !clearWhenTaskReset
2267 && target.resultTo != null) {
2268 // If this activity is sending a reply to a previous
2269 // activity, we can't do anything with it now until
2270 // we reach the start of the reply chain.
2271 // XXX note that we are assuming the result is always
2272 // to the previous activity, which is almost always
2273 // the case but we really shouldn't count on.
2274 if (replyChainEnd < 0) {
2275 replyChainEnd = i;
2276 }
2277 } else if (!finishOnTaskLaunch
2278 && !clearWhenTaskReset
2279 && allowTaskReparenting
2280 && target.taskAffinity != null
2281 && !target.taskAffinity.equals(task.affinity)) {
2282 // If this activity has an affinity for another
2283 // task, then we need to move it out of here. We will
2284 // move it as far out of the way as possible, to the
2285 // bottom of the activity stack. This also keeps it
2286 // correctly ordered with any activities we previously
2287 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002288 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002289 final ActivityRecord bottom =
2290 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002291 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002292 if (bottom != null && target.taskAffinity != null
2293 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002294 // If the activity currently at the bottom has the
2295 // same task affinity as the one we are moving,
2296 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002297 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002298 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002299 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002300 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002301 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002302 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002303 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002304 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002305 + " out to new task " + target.task);
2306 }
2307
Craig Mautnere3a74d52013-02-22 14:14:58 -08002308 final int targetTaskId = targetTask.taskId;
Craig Mautner83162a92015-01-26 14:43:30 -08002309 mWindowManager.setAppTask(target.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002310
Craig Mautner525f3d92013-05-07 14:01:50 -07002311 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002312 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2313 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002314 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002315 if (p.finishing) {
2316 continue;
2317 }
2318
Craig Mautnere3a74d52013-02-22 14:14:58 -08002319 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002320 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002321 topOptions = p.takeOptionsLocked();
2322 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002323 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002324 }
2325 }
2326 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing activity " + p + " from task="
Craig Mautner329f4122013-11-07 09:10:42 -08002327 + task + " adding to task=" + targetTask
2328 + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002329 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2330 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002331 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002332 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002333
Craig Mautner83162a92015-01-26 14:43:30 -08002334 mWindowManager.setAppTask(p.appToken, targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002335 }
2336
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002337 mWindowManager.moveTaskToBottom(targetTaskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002338 if (VALIDATE_TOKENS) {
2339 validateAppTokensLocked();
2340 }
2341
2342 replyChainEnd = -1;
2343 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2344 // If the activity should just be removed -- either
2345 // because it asks for it, or the task should be
2346 // cleared -- then finish it and anything that is
2347 // part of its reply chain.
2348 int end;
2349 if (clearWhenTaskReset) {
2350 // In this case, we want to finish this activity
2351 // and everything above it, so be sneaky and pretend
2352 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002353 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002354 } else if (replyChainEnd < 0) {
2355 end = i;
2356 } else {
2357 end = replyChainEnd;
2358 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002359 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002360 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002361 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002362 if (p.finishing) {
2363 continue;
2364 }
2365 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002366 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002367 topOptions = p.takeOptionsLocked();
2368 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002369 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002370 }
2371 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002372 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002373 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002374 if (finishActivityLocked(
2375 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002376 end--;
2377 srcPos--;
2378 }
2379 }
2380 replyChainEnd = -1;
2381 } else {
2382 // If we were in the middle of a chain, well the
2383 // activity that started it all doesn't want anything
2384 // special, so leave it all as-is.
2385 replyChainEnd = -1;
2386 }
2387 }
2388
2389 return topOptions;
2390 }
2391
2392 /**
2393 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2394 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2395 * @param affinityTask The task we are looking for an affinity to.
2396 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2397 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2398 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2399 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002400 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002401 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002402 int replyChainEnd = -1;
2403 final int taskId = task.taskId;
2404 final String taskAffinity = task.affinity;
2405
2406 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2407 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002408 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2409
2410 // Do not operate on or below the effective root Activity.
2411 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002412 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002413 if (target.frontOfTask)
2414 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002415
2416 final int flags = target.info.flags;
2417 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2418 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2419
2420 if (target.resultTo != null) {
2421 // If this activity is sending a reply to a previous
2422 // activity, we can't do anything with it now until
2423 // we reach the start of the reply chain.
2424 // XXX note that we are assuming the result is always
2425 // to the previous activity, which is almost always
2426 // the case but we really shouldn't count on.
2427 if (replyChainEnd < 0) {
2428 replyChainEnd = i;
2429 }
2430 } else if (topTaskIsHigher
2431 && allowTaskReparenting
2432 && taskAffinity != null
2433 && taskAffinity.equals(target.taskAffinity)) {
2434 // This activity has an affinity for our task. Either remove it if we are
2435 // clearing or move it over to our task. Note that
2436 // we currently punt on the case where we are resetting a
2437 // task that is not at the top but who has activities above
2438 // with an affinity to it... this is really not a normal
2439 // case, and we will need to later pull that task to the front
2440 // and usually at that point we will do the reset and pick
2441 // up those remaining activities. (This only happens if
2442 // someone starts an activity in a new task from an activity
2443 // in a task that is not currently on top.)
2444 if (forceReset || finishOnTaskLaunch) {
2445 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002446 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2447 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002448 for (int srcPos = start; srcPos >= i; --srcPos) {
2449 final ActivityRecord p = activities.get(srcPos);
2450 if (p.finishing) {
2451 continue;
2452 }
Todd Kennedy539db512014-12-15 09:57:55 -08002453 finishActivityLocked(
2454 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002455 }
2456 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002457 if (taskInsertionPoint < 0) {
2458 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002459
Craig Mautner77878772013-03-04 19:46:24 -08002460 }
Craig Mautner77878772013-03-04 19:46:24 -08002461
2462 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002463 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2464 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2465 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002466 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002467 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002468 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002469 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002470
Craig Mautnere3a74d52013-02-22 14:14:58 -08002471 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Removing and adding activity " + p
2472 + " to stack at " + task,
2473 new RuntimeException("here").fillInStackTrace());
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002474 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2475 + " from " + srcPos + " in to resetting task " + task);
Craig Mautner83162a92015-01-26 14:43:30 -08002476 mWindowManager.setAppTask(p.appToken, taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002477 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002478 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002479 if (VALIDATE_TOKENS) {
2480 validateAppTokensLocked();
2481 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002482
2483 // Now we've moved it in to place... but what if this is
2484 // a singleTop activity and we have put it on top of another
2485 // instance of the same activity? Then we drop the instance
2486 // below so it remains singleTop.
2487 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2488 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002489 int targetNdx = taskActivities.indexOf(target);
2490 if (targetNdx > 0) {
2491 ActivityRecord p = taskActivities.get(targetNdx - 1);
2492 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002493 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2494 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002495 }
2496 }
2497 }
2498 }
2499
2500 replyChainEnd = -1;
2501 }
2502 }
Craig Mautner77878772013-03-04 19:46:24 -08002503 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002504 }
2505
Craig Mautner8849a5e2013-04-02 16:41:03 -07002506 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002507 ActivityRecord newActivity) {
2508 boolean forceReset =
2509 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2510 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2511 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2512 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2513 forceReset = true;
2514 }
2515 }
2516
2517 final TaskRecord task = taskTop.task;
2518
2519 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2520 * for remaining tasks. Used for later tasks to reparent to task. */
2521 boolean taskFound = false;
2522
2523 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2524 ActivityOptions topOptions = null;
2525
Craig Mautner77878772013-03-04 19:46:24 -08002526 // Preserve the location for reparenting in the new task.
2527 int reparentInsertionPoint = -1;
2528
Craig Mautnere3a74d52013-02-22 14:14:58 -08002529 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2530 final TaskRecord targetTask = mTaskHistory.get(i);
2531
2532 if (targetTask == task) {
2533 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2534 taskFound = true;
2535 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002536 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2537 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002538 }
2539 }
2540
Craig Mautner70a86932013-02-28 22:37:44 -08002541 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002542 if (taskNdx >= 0) {
2543 do {
2544 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2545 } while (taskTop == null && taskNdx >= 0);
2546 }
Craig Mautner70a86932013-02-28 22:37:44 -08002547
Craig Mautnere3a74d52013-02-22 14:14:58 -08002548 if (topOptions != null) {
2549 // If we got some ActivityOptions from an activity on top that
2550 // was removed from the task, propagate them to the new real top.
2551 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002552 taskTop.updateOptionsLocked(topOptions);
2553 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002554 topOptions.abort();
2555 }
2556 }
2557
2558 return taskTop;
2559 }
2560
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002561 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2562 String resultWho, int requestCode, int resultCode, Intent data) {
2563
2564 if (callingUid > 0) {
2565 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002566 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002567 }
2568
2569 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2570 + " : who=" + resultWho + " req=" + requestCode
2571 + " res=" + resultCode + " data=" + data);
2572 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2573 try {
2574 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2575 list.add(new ResultInfo(resultWho, requestCode,
2576 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002577 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002578 return;
2579 } catch (Exception e) {
2580 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2581 }
2582 }
2583
2584 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2585 }
2586
Craig Mautner299f9602015-01-26 09:47:33 -08002587 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002588 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2589 ActivityRecord next = topRunningActivityLocked(null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002590 final String myReason = reason + " adjustFocus";
Craig Mautner04f0b702013-10-22 12:31:01 -07002591 if (next != r) {
2592 final TaskRecord task = r.task;
Craig Mautner84984fa2014-06-19 11:19:20 -07002593 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002594 // For non-fullscreen stack, we want to move the focus to the next visible
2595 // stack to prevent the home screen from moving to the top and obscuring
2596 // other visible stacks.
2597 if (!mFullscreen
2598 && adjustFocusToNextVisibleStackLocked(null, myReason)) {
2599 return;
2600 }
2601 // Move the home stack to the top if this stack is fullscreen or there is no
2602 // other visible stack.
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002603 if (mStackSupervisor.moveHomeStackTaskToTop(
2604 task.getTaskToReturnTo(), myReason)) {
2605 // Activity focus was already adjusted. Nothing else to do...
2606 return;
2607 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002608 }
2609 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002610
2611 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
Winson Chung648c83b2014-04-28 15:11:56 -07002612 if (top != null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002613 mService.setFocusedActivityLocked(top, myReason);
Winson Chung648c83b2014-04-28 15:11:56 -07002614 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002615 }
2616 }
2617
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002618 private boolean adjustFocusToNextVisibleStackLocked(ActivityStack inStack, String reason) {
2619 final ActivityStack stack = (inStack != null) ? inStack : getNextVisibleStackLocked();
2620 final String myReason = reason + " adjustFocusToNextVisibleStack";
2621 if (stack == null) {
2622 return false;
2623 }
2624 final ActivityRecord top = stack.topRunningActivityLocked(null);
2625 if (top == null) {
2626 return false;
2627 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002628 mService.setFocusedActivityLocked(top, myReason);
2629 return true;
2630 }
2631
Craig Mautnerf3333272013-04-22 10:55:53 -07002632 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002633 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002634 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2635 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2636 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002637 if (!mService.isSleeping()) {
Christopher Tated3f175c2012-06-14 14:16:54 -07002638 if (DEBUG_STATES) {
2639 Slog.d(TAG, "no-history finish of " + r);
2640 }
2641 requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
Todd Kennedy539db512014-12-15 09:57:55 -08002642 "stop-no-history", false);
Christopher Tated3f175c2012-06-14 14:16:54 -07002643 } else {
2644 if (DEBUG_STATES) Slog.d(TAG, "Not finishing noHistory " + r
2645 + " on stop because we're just sleeping");
2646 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002647 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002648 }
2649
2650 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002651 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002652 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002653 try {
2654 r.stopped = false;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002655 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2656 + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002657 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002658 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2659 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002660 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002661 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002662 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002663 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002664 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002665 r.setSleeping(true);
2666 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002667 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002668 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002669 } catch (Exception e) {
2670 // Maybe just ignore exceptions here... if the process
2671 // has crashed, our death notification will clean things
2672 // up.
2673 Slog.w(TAG, "Exception thrown during pause", e);
2674 // Just in case, assume it to be stopped.
2675 r.stopped = true;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002676 if (DEBUG_STATES) Slog.v(TAG, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002677 r.state = ActivityState.STOPPED;
2678 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002679 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002680 }
2681 }
2682 }
2683 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002684
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002685 /**
2686 * @return Returns true if the activity is being finished, false if for
2687 * some reason it is being left as-is.
2688 */
2689 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002690 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002691 ActivityRecord r = isInStackLocked(token);
Christopher Tated3f175c2012-06-14 14:16:54 -07002692 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002693 TAG, "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002694 + ", result=" + resultCode + ", data=" + resultData
2695 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002696 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002697 return false;
2698 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002699
Craig Mautnerd44711d2013-02-23 11:24:36 -08002700 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002701 return true;
2702 }
2703
Craig Mautnerd2328952013-03-05 12:46:26 -08002704 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002705 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2706 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2707 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2708 ActivityRecord r = activities.get(activityNdx);
2709 if (r.resultTo == self && r.requestCode == requestCode) {
2710 if ((r.resultWho == null && resultWho == null) ||
2711 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2712 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2713 false);
2714 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002715 }
2716 }
2717 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002718 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002719 }
2720
Todd Kennedy539db512014-12-15 09:57:55 -08002721 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002722 ActivityRecord r = topRunningActivityLocked(null);
2723 if (r != null && r.app == app) {
2724 // If the top running activity is from this crashing
2725 // process, then terminate it to avoid getting in a loop.
2726 Slog.w(TAG, " Force finishing activity "
2727 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002728 int taskNdx = mTaskHistory.indexOf(r.task);
2729 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002730 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002731 // Also terminate any activities below it that aren't yet
2732 // stopped, to avoid a situation where one will get
2733 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002734 --activityNdx;
2735 if (activityNdx < 0) {
2736 do {
2737 --taskNdx;
2738 if (taskNdx < 0) {
2739 break;
2740 }
2741 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2742 } while (activityNdx < 0);
2743 }
2744 if (activityNdx >= 0) {
2745 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002746 if (r.state == ActivityState.RESUMED
2747 || r.state == ActivityState.PAUSING
2748 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002749 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002750 Slog.w(TAG, " Force finishing activity "
2751 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002752 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002753 }
2754 }
2755 }
2756 }
2757 }
2758
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002759 final void finishVoiceTask(IVoiceInteractionSession session) {
2760 IBinder sessionBinder = session.asBinder();
2761 boolean didOne = false;
2762 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2763 TaskRecord tr = mTaskHistory.get(taskNdx);
2764 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2765 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2766 ActivityRecord r = tr.mActivities.get(activityNdx);
2767 if (!r.finishing) {
2768 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2769 false);
2770 didOne = true;
2771 }
2772 }
2773 }
2774 }
2775 if (didOne) {
2776 mService.updateOomAdjLocked();
2777 }
2778 }
2779
Craig Mautnerd2328952013-03-05 12:46:26 -08002780 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002781 ArrayList<ActivityRecord> activities = r.task.mActivities;
2782 for (int index = activities.indexOf(r); index >= 0; --index) {
2783 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002784 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002785 break;
2786 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002787 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002788 }
2789 return true;
2790 }
2791
Dianne Hackborn5c607432012-02-28 14:44:19 -08002792 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2793 // send the result
2794 ActivityRecord resultTo = r.resultTo;
2795 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002796 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08002797 + " who=" + r.resultWho + " req=" + r.requestCode
2798 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002799 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002800 if (resultData != null) {
Nicolas Prevotd1c99b12014-07-04 16:56:17 +01002801 resultData.setContentUserHint(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002802 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002803 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002804 if (r.info.applicationInfo.uid > 0) {
2805 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2806 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002807 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002808 }
2809 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2810 resultData);
2811 r.resultTo = null;
2812 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002813 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002814
2815 // Make sure this HistoryRecord is not holding on to other resources,
2816 // because clients have remote IPC references to this object so we
2817 // can't assume that will go away and want to avoid circular IPC refs.
2818 r.results = null;
2819 r.pendingResults = null;
2820 r.newIntents = null;
2821 r.icicle = null;
2822 }
2823
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002824 /**
2825 * @return Returns true if this activity has been removed from the history
2826 * list, or false if it is still in the list and will be removed later.
2827 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002828 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2829 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002830 if (r.finishing) {
2831 Slog.w(TAG, "Duplicate finish request for " + r);
2832 return false;
2833 }
2834
Wale Ogunwale7d701172015-03-11 15:36:30 -07002835 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08002836 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002837 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002838 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002839 task.taskId, r.shortComponentName, reason);
2840 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002841 final int index = activities.indexOf(r);
2842 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002843 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002844 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002845 // If the caller asked that this activity (and all above it)
2846 // be cleared when the task is reset, don't lose that information,
2847 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002848 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002849 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002850 }
2851 }
2852
2853 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002854
Craig Mautner299f9602015-01-26 09:47:33 -08002855 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002856
Dianne Hackborn5c607432012-02-28 14:44:19 -08002857 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002858
Craig Mautnerde4ef022013-04-07 19:01:33 -07002859 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002860 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002861 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002862 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002863 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002864 ? AppTransition.TRANSIT_TASK_CLOSE
2865 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002866
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002867 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002868 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002869
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002870 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002871 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
2872 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
2873 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002874 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002875 }
2876
Craig Mautneraea74a52014-03-08 14:23:10 -08002877 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07002878 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08002879 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002880 } else if (r.state != ActivityState.PAUSING) {
2881 // If the activity is PAUSING, we will complete the finish once
2882 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002883 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002884 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002885 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002886 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002887 }
2888
2889 return false;
2890 }
2891
Craig Mautnerf3333272013-04-22 10:55:53 -07002892 static final int FINISH_IMMEDIATELY = 0;
2893 static final int FINISH_AFTER_PAUSE = 1;
2894 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002895
Craig Mautnerf3333272013-04-22 10:55:53 -07002896 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002897 // First things first: if this activity is currently visible,
2898 // and the resumed activity is not yet visible, then hold off on
2899 // finishing until the resumed one becomes visible.
2900 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002901 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2902 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002903 if (mStackSupervisor.mStoppingActivities.size() > 3
2904 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002905 // If we already have a few activities waiting to stop,
2906 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002907 // them out. Or if r is the last of activity of the last task the stack
2908 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002909 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002910 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002911 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002912 }
2913 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002914 if (DEBUG_STATES) Slog.v(TAG, "Moving to STOPPING: " + r
2915 + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002916 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002917 if (oomAdj) {
2918 mService.updateOomAdjLocked();
2919 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002920 return r;
2921 }
2922
2923 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07002924 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07002925 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002926 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002927 if (mResumedActivity == r) {
2928 mResumedActivity = null;
2929 }
2930 final ActivityState prevState = r.state;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07002931 if (DEBUG_STATES) Slog.v(TAG, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002932 r.state = ActivityState.FINISHING;
2933
2934 if (mode == FINISH_IMMEDIATELY
2935 || prevState == ActivityState.STOPPED
2936 || prevState == ActivityState.INITIALIZING) {
2937 // If this activity is already stopped, we can just finish
2938 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07002939 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07002940 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002941 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07002942 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002943 }
Craig Mautner8c14c152015-01-15 17:32:07 -08002944 if (DEBUG_CONTAINERS) Slog.d(TAG,
Craig Mautnerd163e752014-06-13 17:18:47 -07002945 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
2946 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07002947 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002948 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002949
2950 // Need to go through the full pause cycle to get this
2951 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08002952 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07002953 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02002954 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002955 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002956 return r;
2957 }
2958
Craig Mautneree36c772014-07-16 14:56:05 -07002959 void finishAllActivitiesLocked(boolean immediately) {
2960 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002961 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2962 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2963 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2964 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07002965 noActivitiesInStack = false;
2966 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002967 continue;
2968 }
Craig Mautneree36c772014-07-16 14:56:05 -07002969 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002970 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
2971 }
2972 }
Craig Mautneree36c772014-07-16 14:56:05 -07002973 if (noActivitiesInStack) {
2974 mActivityContainer.onTaskListEmptyLocked();
2975 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07002976 }
2977
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002978 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
2979 // Basic case: for simple app-centric recents, we need to recreate
2980 // the task if the affinity has changed.
2981 if (srec == null || srec.task.affinity == null ||
2982 !srec.task.affinity.equals(destAffinity)) {
2983 return true;
2984 }
2985 // Document-centric case: an app may be split in to multiple documents;
2986 // they need to re-create their task if this current activity is the root
2987 // of a document, unless simply finishing it will return them to the the
2988 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07002989 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
2990 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07002991 // Okay, this activity is at the root of its task. What to do, what to do...
2992 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
2993 // Finishing won't return to an application, so we need to recreate.
2994 return true;
2995 }
2996 // We now need to get the task below it to determine what to do.
2997 int taskIdx = mTaskHistory.indexOf(srec.task);
2998 if (taskIdx <= 0) {
2999 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3000 return false;
3001 }
3002 if (taskIdx == 0) {
3003 // At the bottom of the stack, nothing to go back to.
3004 return true;
3005 }
3006 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3007 if (!srec.task.affinity.equals(prevTask.affinity)) {
3008 // These are different apps, so need to recreate.
3009 return true;
3010 }
3011 }
3012 return false;
3013 }
3014
Wale Ogunwale7d701172015-03-11 15:36:30 -07003015 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003016 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003017 final TaskRecord task = srec.task;
3018 final ArrayList<ActivityRecord> activities = task.mActivities;
3019 final int start = activities.indexOf(srec);
3020 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003021 return false;
3022 }
3023 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003024 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003025 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003026 final ComponentName dest = destIntent.getComponent();
3027 if (start > 0 && dest != null) {
3028 for (int i = finishTo; i >= 0; i--) {
3029 ActivityRecord r = activities.get(i);
3030 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003031 r.info.name.equals(dest.getClassName())) {
3032 finishTo = i;
3033 parent = r;
3034 foundParentInTask = true;
3035 break;
3036 }
3037 }
3038 }
3039
3040 IActivityController controller = mService.mController;
3041 if (controller != null) {
3042 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3043 if (next != null) {
3044 // ask watcher if this is allowed
3045 boolean resumeOK = true;
3046 try {
3047 resumeOK = controller.activityResuming(next.packageName);
3048 } catch (RemoteException e) {
3049 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003050 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003051 }
3052
3053 if (!resumeOK) {
3054 return false;
3055 }
3056 }
3057 }
3058 final long origId = Binder.clearCallingIdentity();
3059 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003060 ActivityRecord r = activities.get(i);
3061 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003062 // Only return the supplied result for the first activity finished
3063 resultCode = Activity.RESULT_CANCELED;
3064 resultData = null;
3065 }
3066
3067 if (parent != null && foundParentInTask) {
3068 final int parentLaunchMode = parent.info.launchMode;
3069 final int destIntentFlags = destIntent.getFlags();
3070 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3071 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3072 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3073 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003074 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3075 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003076 } else {
3077 try {
3078 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3079 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07003080 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07003081 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003082 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborn95465202014-09-15 16:21:55 -07003083 -1, parent.launchedFromUid, 0, null, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003084 foundParentInTask = res == ActivityManager.START_SUCCESS;
3085 } catch (RemoteException e) {
3086 foundParentInTask = false;
3087 }
3088 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003089 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003090 }
3091 }
3092 Binder.restoreCallingIdentity(origId);
3093 return foundParentInTask;
3094 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003095 /**
3096 * Perform the common clean-up of an activity record. This is called both
3097 * as part of destroyActivityLocked() (when destroying the client-side
3098 * representation) and cleaning things up as a result of its hosting
3099 * processing going away, in which case there is no remaining client-side
3100 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003101 *
3102 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003103 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003104 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3105 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003106 if (mResumedActivity == r) {
3107 mResumedActivity = null;
3108 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003109 if (mPausingActivity == r) {
3110 mPausingActivity = null;
3111 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003112 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003113
3114 r.configDestroy = false;
3115 r.frozenBeforeDestroy = false;
3116
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003117 if (setState) {
3118 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (cleaning up)");
3119 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003120 if (DEBUG_APP) Slog.v(TAG, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003121 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003122 }
3123
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003124 // Make sure this record is no longer in the pending finishes list.
3125 // This could happen, for example, if we are trimming activities
3126 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003127 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003128 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003129
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003130 // Remove any pending results.
3131 if (r.finishing && r.pendingResults != null) {
3132 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3133 PendingIntentRecord rec = apr.get();
3134 if (rec != null) {
3135 mService.cancelIntentSenderLocked(rec, false);
3136 }
3137 }
3138 r.pendingResults = null;
3139 }
3140
3141 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003142 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003143 }
3144
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003145 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003146 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003147 if (getVisibleBehindActivity() == r) {
3148 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003149 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003150 }
3151
3152 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003153 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003154 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003155 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003156 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003157 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003158 }
3159
Craig Mautner299f9602015-01-26 09:47:33 -08003160 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003161 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003162 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003163 r.makeFinishingLocked();
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003164 if (DEBUG_ADD_REMOVE) {
3165 RuntimeException here = new RuntimeException("here");
3166 here.fillInStackTrace();
3167 Slog.i(TAG, "Removing activity " + r + " from stack");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003168 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003169 r.takeFromHistory();
3170 removeTimeoutsForActivityLocked(r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003171 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003172 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003173 if (DEBUG_APP) Slog.v(TAG, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003174 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003175 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003176 if (VALIDATE_TOKENS) {
3177 validateAppTokensLocked();
3178 }
Craig Mautner312ba862014-02-10 17:55:01 -08003179 final TaskRecord task = r.task;
3180 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003181 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003182 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003183 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3184 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003185 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003186 }
Craig Mautner299f9602015-01-26 09:47:33 -08003187 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003188 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003189 cleanUpActivityServicesLocked(r);
3190 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003191 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003192
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003193 /**
3194 * Perform clean-up of service connections in an activity record.
3195 */
3196 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3197 // Throw away any services that have been bound by this activity.
3198 if (r.connections != null) {
3199 Iterator<ConnectionRecord> it = r.connections.iterator();
3200 while (it.hasNext()) {
3201 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003202 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003203 }
3204 r.connections = null;
3205 }
3206 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003207
Craig Mautneree2e45a2014-06-27 12:10:03 -07003208 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003209 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003210 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003211 mHandler.sendMessage(msg);
3212 }
3213
Craig Mautneree2e45a2014-06-27 12:10:03 -07003214 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003215 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003216 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003217 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3218 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3219 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3220 final ActivityRecord r = activities.get(activityNdx);
3221 if (r.finishing) {
3222 continue;
3223 }
3224 if (r.fullscreen) {
3225 lastIsOpaque = true;
3226 }
3227 if (owner != null && r.app != owner) {
3228 continue;
3229 }
3230 if (!lastIsOpaque) {
3231 continue;
3232 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003233 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003234 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003235 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003236 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003237 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003238 activityRemoved = true;
3239 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003240 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003241 }
3242 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003243 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003244 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003245 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003246 }
3247
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003248 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3249 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003250 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3251 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003252 + " pausing=" + mPausingActivity + " for reason " + reason);
3253 return destroyActivityLocked(r, true, reason);
3254 }
3255 return false;
3256 }
3257
3258 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3259 String reason) {
3260 // Iterate over tasks starting at the back (oldest) first.
3261 if (DEBUG_RELEASE) Slog.d(TAG, "Trying to release some activities in " + app);
3262 int maxTasks = tasks.size() / 4;
3263 if (maxTasks < 1) {
3264 maxTasks = 1;
3265 }
3266 int numReleased = 0;
3267 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3268 final TaskRecord task = mTaskHistory.get(taskNdx);
3269 if (!tasks.contains(task)) {
3270 continue;
3271 }
3272 if (DEBUG_RELEASE) Slog.d(TAG, "Looking for activities to release in " + task);
3273 int curNum = 0;
3274 final ArrayList<ActivityRecord> activities = task.mActivities;
3275 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3276 final ActivityRecord activity = activities.get(actNdx);
3277 if (activity.app == app && activity.isDestroyable()) {
3278 if (DEBUG_RELEASE) Slog.v(TAG, "Destroying " + activity
3279 + " in state " + activity.state + " resumed=" + mResumedActivity
3280 + " pausing=" + mPausingActivity + " for reason " + reason);
3281 destroyActivityLocked(activity, true, reason);
3282 if (activities.get(actNdx) != activity) {
3283 // Was removed from list, back up so we don't miss the next one.
3284 actNdx--;
3285 }
3286 curNum++;
3287 }
3288 }
3289 if (curNum > 0) {
3290 numReleased += curNum;
3291 maxTasks--;
3292 if (mTaskHistory.get(taskNdx) != task) {
3293 // The entire task got removed, back up so we don't miss the next one.
3294 taskNdx--;
3295 }
3296 }
3297 }
3298 if (DEBUG_RELEASE) Slog.d(TAG, "Done releasing: did " + numReleased + " activities");
3299 return numReleased;
3300 }
3301
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003302 /**
3303 * Destroy the current CLIENT SIDE instance of an activity. This may be
3304 * called both when actually finishing an activity, or when performing
3305 * a configuration switch where we destroy the current client-side object
3306 * but then create a new client-side object for this same HistoryRecord.
3307 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003308 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003309 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3310 "Removing activity from " + reason + ": token=" + r
3311 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003312 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003313 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003314 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003315
3316 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003317
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003318 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003319
3320 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003321
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003322 if (hadApp) {
3323 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003324 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003325 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3326 mService.mHeavyWeightProcess = null;
3327 mService.mHandler.sendEmptyMessage(
3328 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3329 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003330 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003331 // Update any services we are bound to that might care about whether
3332 // their client may have activities.
3333 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003334 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003335 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003336 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003337 }
3338 }
3339
3340 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003341
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003342 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003343 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003344 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003345 r.configChangeFlags);
3346 } catch (Exception e) {
3347 // We can just ignore exceptions here... if the process
3348 // has crashed, our death notification will clean things
3349 // up.
3350 //Slog.w(TAG, "Exception thrown during finish", e);
3351 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003352 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003353 removedFromHistory = true;
3354 skipDestroy = true;
3355 }
3356 }
3357
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003358 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003359
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003360 // If the activity is finishing, we need to wait on removing it
3361 // from the list to give it a chance to do its cleanup. During
3362 // that time it may make calls back with its token so we need to
3363 // be able to find it on the list and so we don't want to remove
3364 // it from the list yet. Otherwise, we can just immediately put
3365 // it in the destroyed state since we are not removing it from the
3366 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003367 if (r.finishing && !skipDestroy) {
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003368 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYING: " + r
3369 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003370 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003371 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003372 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3373 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003374 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003375 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003376 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003377 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003378 }
3379 } else {
3380 // remove this record from the history.
3381 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003382 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003383 removedFromHistory = true;
3384 } else {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003385 if (DEBUG_STATES) Slog.v(TAG, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003386 r.state = ActivityState.DESTROYED;
Dianne Hackborn07981492013-01-28 11:36:23 -08003387 if (DEBUG_APP) Slog.v(TAG, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003388 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003389 }
3390 }
3391
3392 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003393
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003394 if (!mLRUActivities.remove(r) && hadApp) {
3395 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3396 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003397
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003398 return removedFromHistory;
3399 }
3400
Craig Mautner299f9602015-01-26 09:47:33 -08003401 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003402 final long origId = Binder.clearCallingIdentity();
3403 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003404 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003405 if (r != null) {
3406 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003407 }
Craig Mautnerd163e752014-06-13 17:18:47 -07003408 if (DEBUG_CONTAINERS) Slog.d(TAG, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003409
Wale Ogunwale60454db2015-01-23 16:05:07 -08003410 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003411 if (r.state == ActivityState.DESTROYING) {
3412 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003413 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003414 }
3415 }
Craig Mautner05d29032013-05-03 13:40:13 -07003416 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003417 } finally {
3418 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003419 }
3420 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003421
Todd Kennedyaab56db2015-01-30 09:39:53 -08003422 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003423 if (hasVisibleBehindActivity() &&
3424 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003425 if (r == topRunningActivityLocked(null)) {
3426 // Don't release the top activity if it has requested to run behind the next
3427 // activity.
3428 return;
3429 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003430 if (DEBUG_STATES) Slog.d(TAG, "releaseBackgroundResources activtyDisplay=" +
3431 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003432 " thread=" + r.app.thread);
3433 if (r != null && r.app != null && r.app.thread != null) {
3434 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003435 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003436 } catch (RemoteException e) {
3437 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003438 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003439 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003440 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003441 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003442 }
3443 }
3444 }
3445
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003446 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003447 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3448 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003449 if (r != null) {
3450 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003451 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003452 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003453 }
3454 mStackSupervisor.resumeTopActivitiesLocked();
3455 }
3456
Jose Lima4b6c6692014-08-12 17:41:12 -07003457 boolean hasVisibleBehindActivity() {
3458 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003459 }
3460
Jose Lima4b6c6692014-08-12 17:41:12 -07003461 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003462 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003463 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003464 }
3465 }
3466
Jose Lima4b6c6692014-08-12 17:41:12 -07003467 ActivityRecord getVisibleBehindActivity() {
3468 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003469 }
3470
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003471 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3472 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003473 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003474 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3475 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003476 while (i > 0) {
3477 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003478 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003479 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003480 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003481 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003482 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003483 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003484 }
3485 }
3486 }
3487
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003488 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3489 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003490 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3491 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003492 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3493 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003494 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003495 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003496 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3497 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003498
3499 boolean hasVisibleActivities = false;
3500
3501 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003502 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003503 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3504 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003505 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3506 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3507 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3508 final ActivityRecord r = activities.get(activityNdx);
3509 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003510 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3511 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003512 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003513 if (r.visible) {
3514 hasVisibleActivities = true;
3515 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003516 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003517 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3518 // Don't currently have state for the activity, or
3519 // it is finishing -- always remove it.
3520 remove = true;
3521 } else if (r.launchCount > 2 &&
3522 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3523 // We have launched this activity too many times since it was
3524 // able to run, so give up and remove it.
3525 remove = true;
3526 } else {
3527 // The process may be gone, but the activity lives on!
3528 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003529 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003530 if (remove) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003531 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003532 RuntimeException here = new RuntimeException("here");
3533 here.fillInStackTrace();
3534 Slog.i(TAG, "Removing activity " + r + " from stack at " + i
3535 + ": haveState=" + r.haveState
3536 + " stateNotNeeded=" + r.stateNotNeeded
3537 + " finishing=" + r.finishing
3538 + " state=" + r.state, here);
3539 }
3540 if (!r.finishing) {
3541 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3542 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3543 r.userId, System.identityHashCode(r),
3544 r.task.taskId, r.shortComponentName,
3545 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003546 if (r.state == ActivityState.RESUMED) {
3547 mService.updateUsageStats(r, false);
3548 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003549 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003550 } else {
3551 // We have the current state for this activity, so
3552 // it can be restarted later when needed.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003553 if (DEBUG_ALL) Slog.v(
Craig Mautner0247fc82013-02-28 14:32:06 -08003554 TAG, "Keeping entry, setting app to null");
Craig Mautner0247fc82013-02-28 14:32:06 -08003555 if (DEBUG_APP) Slog.v(TAG, "Clearing app during removeHistory for activity "
3556 + r);
3557 r.app = null;
3558 r.nowVisible = false;
3559 if (!r.haveState) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003560 if (DEBUG_SAVED_STATE) Slog.i(TAG,
Craig Mautner0247fc82013-02-28 14:32:06 -08003561 "App died, clearing saved state of " + r);
3562 r.icicle = null;
3563 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003564 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003565 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003566 if (remove) {
3567 removeActivityFromHistoryLocked(r, "appDied");
3568 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003569 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003570 }
3571 }
3572
3573 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003574 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003575
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003576 final void updateTransitLocked(int transit, Bundle options) {
3577 if (options != null) {
3578 ActivityRecord r = topRunningActivityLocked(null);
3579 if (r != null && r.state != ActivityState.RESUMED) {
3580 r.updateOptionsLocked(options);
3581 } else {
3582 ActivityOptions.abort(options);
3583 }
3584 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003585 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003586 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003587
Craig Mautner21d24a22014-04-23 11:45:37 -07003588 void updateTaskMovement(TaskRecord task, boolean toFront) {
3589 if (task.isPersistable) {
3590 task.mLastTimeMoved = System.currentTimeMillis();
3591 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3592 // recently will be most negative, tasks sent to the bottom before that will be less
3593 // negative. Similarly for recent tasks moved to the top which will be most positive.
3594 if (!toFront) {
3595 task.mLastTimeMoved *= -1;
3596 }
3597 }
3598 }
3599
Craig Mautner84984fa2014-06-19 11:19:20 -07003600 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003601 final int top = mTaskHistory.size() - 1;
3602 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3603 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003604 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003605 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3606 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003607 mTaskHistory.remove(taskNdx);
3608 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003609 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003610 return;
3611 }
3612 }
3613 }
3614
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003615 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Craig Mautner299f9602015-01-26 09:47:33 -08003616 String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003617 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003618
Craig Mautner11bf9a52013-02-19 14:08:51 -08003619 final int numTasks = mTaskHistory.size();
3620 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003621 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003622 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003623 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003624 ActivityOptions.abort(options);
3625 } else {
3626 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3627 }
3628 return;
3629 }
3630
3631 // Shift all activities with this task up to the top
3632 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07003633 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003634
3635 // Set focus to the top running activity of this stack.
3636 ActivityRecord r = topRunningActivityLocked(null);
3637 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003638
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003639 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003640 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003641 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003642 if (r != null) {
3643 mNoAnimActivities.add(r);
3644 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003645 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003646 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003647 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003648 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003649
Craig Mautner05d29032013-05-03 13:40:13 -07003650 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003651 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003652
3653 if (VALIDATE_TOKENS) {
3654 validateAppTokensLocked();
3655 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003656 }
3657
3658 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003659 * Worker method for rearranging history stack. Implements the function of moving all
3660 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003661 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003662 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003663 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3664 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003665 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003666 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003667 * @return Returns true if the move completed, false if not.
3668 */
Craig Mautner299f9602015-01-26 09:47:33 -08003669 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003670 final TaskRecord tr = taskForIdLocked(taskId);
3671 if (tr == null) {
3672 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3673 return false;
3674 }
3675
3676 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07003677 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003678
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003679 // If we have a watcher, preflight the move before committing to it. First check
3680 // for *other* available tasks, but if none are available, then try again allowing the
3681 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003682 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003683 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003684 if (next == null) {
3685 next = topRunningActivityLocked(null, 0);
3686 }
3687 if (next != null) {
3688 // ask watcher if this is allowed
3689 boolean moveOK = true;
3690 try {
3691 moveOK = mService.mController.activityResuming(next.packageName);
3692 } catch (RemoteException e) {
3693 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003694 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003695 }
3696 if (!moveOK) {
3697 return false;
3698 }
3699 }
3700 }
3701
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003702 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003703
riddle_hsuc215a4f2014-12-27 12:10:45 +08003704 boolean prevIsHome = false;
3705 if (tr.isOverHomeStack()) {
3706 final TaskRecord nextTask = getNextTask(tr);
3707 if (nextTask != null) {
3708 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3709 } else {
3710 prevIsHome = true;
3711 }
3712 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003713 mTaskHistory.remove(tr);
3714 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003715 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003716
Craig Mautnerc8143c62013-09-03 12:15:57 -07003717 // There is an assumption that moving a task to the back moves it behind the home activity.
3718 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003719 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003720 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3721 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003722 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003723 break;
3724 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003725 if (taskNdx == 1) {
3726 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003727 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003728 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003729 }
3730
Craig Mautner299f9602015-01-26 09:47:33 -08003731 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003732 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003733
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003734 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003735 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003736 }
3737
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003738 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
riddle_hsuc215a4f2014-12-27 12:10:45 +08003739 if (prevIsHome || task == tr && tr.isOverHomeStack()
3740 || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003741 if (!mService.mBooting && !mService.mBooted) {
3742 // Not ready yet!
3743 return false;
3744 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003745 final int taskToReturnTo = tr.getTaskToReturnTo();
3746 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003747 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003748 }
3749
Craig Mautner05d29032013-05-03 13:40:13 -07003750 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003751 return true;
3752 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003753
Craig Mautner8849a5e2013-04-02 16:41:03 -07003754 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003755 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003756 final Uri data = r.intent.getData();
3757 final String strData = data != null ? data.toSafeString() : null;
3758
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003759 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003760 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003761 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003762 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003763 }
3764
3765 /**
3766 * Make sure the given activity matches the current configuration. Returns
3767 * false if the activity had to be destroyed. Returns true if the
3768 * configuration is the same, or the activity will remain running as-is
3769 * for whatever reason. Ensures the HistoryRecord is updated with the
3770 * correct configuration and all other bookkeeping is handled.
3771 */
3772 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3773 int globalChanges) {
3774 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003775 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003776 "Skipping config check (will change): " + r);
3777 return true;
3778 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003779
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003780 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003781 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003782
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08003783 // Make sure the current stack override configuration is supported by the top task
3784 // before continuing.
3785 final TaskRecord topTask = topTask();
3786 if (topTask != null && ((topTask.mResizeable && mForcedFullscreen)
3787 || (!topTask.mResizeable && !mFullscreen))) {
3788 final boolean prevFullscreen = mFullscreen;
3789 final Configuration newOverrideConfig =
3790 mWindowManager.forceStackToFullscreen(mStackId, !topTask.mResizeable);
3791 updateOverrideConfiguration(newOverrideConfig);
3792 mForcedFullscreen = !prevFullscreen && mFullscreen;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003793 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08003794 "Updated stack config to support task=" + topTask
3795 + " resizeable=" + topTask.mResizeable
3796 + " mForcedFullscreen=" + mForcedFullscreen
3797 + " prevFullscreen=" + prevFullscreen
3798 + " mFullscreen=" + mFullscreen);
3799 }
3800
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003801 // Short circuit: if the two configurations are the exact same
3802 // object (the common case), then there is nothing to do.
3803 Configuration newConfig = mService.mConfiguration;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003804 if (r.configuration == newConfig
3805 && r.stackConfigOverride == mOverrideConfig
3806 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003807 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003808 "Configuration unchanged in " + r);
3809 return true;
3810 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003811
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003812 // We don't worry about activities that are finishing.
3813 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003814 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003815 "Configuration doesn't matter in finishing " + r);
3816 r.stopFreezingScreenLocked(false);
3817 return true;
3818 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003819
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003820 // Okay we now are going to make this activity have the new config.
3821 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003822 final Configuration oldConfig = r.configuration;
3823 final Configuration oldStackOverride = r.stackConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003824 r.configuration = newConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003825 r.stackConfigOverride = mOverrideConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003826
3827 // Determine what has changed. May be nothing, if this is a config
3828 // that has come back from the app after going idle. In that case
3829 // we just want to leave the official config object now in the
3830 // activity and do nothing else.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003831 int stackChanges = oldStackOverride.diff(mOverrideConfig);
Wale Ogunwalea9281272015-02-07 14:04:19 -08003832 if (stackChanges == 0) {
3833 // {@link Configuration#diff} doesn't catch changes from unset values.
3834 // Check for changes we care about.
3835 if (oldStackOverride.orientation != mOverrideConfig.orientation) {
3836 stackChanges |= ActivityInfo.CONFIG_ORIENTATION;
3837 }
3838 if (oldStackOverride.screenHeightDp != mOverrideConfig.screenHeightDp
3839 || oldStackOverride.screenWidthDp != mOverrideConfig.screenWidthDp) {
3840 stackChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
3841 }
3842 if (oldStackOverride.smallestScreenWidthDp != mOverrideConfig.smallestScreenWidthDp) {
3843 stackChanges |= ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
3844 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08003845 }
3846 final int changes = oldConfig.diff(newConfig) | stackChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003847 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003848 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003849 "Configuration no differences in " + r);
3850 return true;
3851 }
3852
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003853 // If the activity isn't currently running, just leave the new
3854 // configuration and it will pick that up next time it starts.
3855 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003856 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003857 "Configuration doesn't matter not running " + r);
3858 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003859 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003860 return true;
3861 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003862
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003863 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003864 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
3865 "Checking to restart " + r.info.name + ": changed=0x"
3866 + Integer.toHexString(changes) + ", handles=0x"
3867 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig);
3868
Dianne Hackborne6676352011-06-01 16:51:20 -07003869 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003870 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3871 r.configChangeFlags |= changes;
3872 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003873 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003874 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003875 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003876 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003877 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003878 } else if (r.state == ActivityState.PAUSING) {
3879 // A little annoying: we are waiting for this activity to
3880 // finish pausing. Let's not do anything now, but just
3881 // flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003882 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003883 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003884 r.configDestroy = true;
3885 return true;
3886 } else if (r.state == ActivityState.RESUMED) {
3887 // Try to optimize this case: the configuration is changing
3888 // and we need to restart the top, resumed activity.
3889 // Instead of doing the normal handshaking, just say
3890 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003891 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003892 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003893 relaunchActivityLocked(r, r.configChangeFlags, true);
3894 r.configChangeFlags = 0;
3895 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003896 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003897 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003898 relaunchActivityLocked(r, r.configChangeFlags, false);
3899 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003900 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003901
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003902 // All done... tell the caller we weren't able to keep this
3903 // activity around.
3904 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003905 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003906
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003907 // Default case: the activity can handle this new configuration, so hand it over.
3908 // NOTE: We only forward the stack override configuration as the system level configuration
3909 // changes is always sent to all processes when they happen so it can just use whatever
3910 // system level configuration it last got.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003911 if (r.app != null && r.app.thread != null) {
3912 try {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003913 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Sending new config to " + r);
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003914 r.app.thread.scheduleActivityConfigurationChanged(
3915 r.appToken, new Configuration(mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003916 } catch (RemoteException e) {
3917 // If process died, whatever.
3918 }
3919 }
3920 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003921
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003922 return true;
3923 }
3924
Craig Mautner2568c3a2015-03-26 14:22:34 -07003925 private boolean relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003926 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003927 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003928 if (andResume) {
3929 results = r.results;
3930 newIntents = r.newIntents;
3931 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003932 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3933 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003934 + " andResume=" + andResume);
3935 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003936 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003937 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003938
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003939 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003940
Craig Mautner34b73df2014-01-12 21:11:08 -08003941 mStackSupervisor.removeChildActivityContainers(r);
3942
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003943 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003944 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
3945 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003946 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003947 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
3948 !andResume, new Configuration(mService.mConfiguration),
3949 new Configuration(mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003950 // Note: don't need to call pauseIfSleepingLocked() here, because
3951 // the caller will only pass in 'andResume' if this activity is
3952 // currently resumed, which implies we aren't sleeping.
3953 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003954 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003955 }
3956
3957 if (andResume) {
3958 r.results = null;
3959 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003960 r.state = ActivityState.RESUMED;
3961 } else {
3962 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3963 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003964 }
3965
3966 return true;
3967 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003968
3969 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003970 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3971 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3972 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3973 final ActivityRecord r = activities.get(activityNdx);
3974 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003975 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003976 }
3977 if (r.fullscreen && !r.finishing) {
3978 return false;
3979 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003980 }
3981 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07003982 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08003983 if (r == null) {
3984 return false;
3985 }
3986 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
3987 + " would have returned true for r=" + r);
3988 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08003989 }
3990
3991 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003992 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3993 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3994 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3995 final ActivityRecord r = activities.get(activityNdx);
3996 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003997 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08003998 }
Craig Mautnercae015f2013-02-08 14:31:27 -08003999 }
4000 }
4001 }
4002
4003 boolean forceStopPackageLocked(String name, boolean doit, boolean evenPersistent, int userId) {
4004 boolean didSomething = false;
4005 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004006 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004007 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4008 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4009 int numActivities = activities.size();
4010 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4011 ActivityRecord r = activities.get(activityNdx);
4012 final boolean samePackage = r.packageName.equals(name)
4013 || (name == null && r.userId == userId);
4014 if ((userId == UserHandle.USER_ALL || r.userId == userId)
4015 && (samePackage || r.task == lastTask)
4016 && (r.app == null || evenPersistent || !r.app.persistent)) {
4017 if (!doit) {
4018 if (r.finishing) {
4019 // If this activity is just finishing, then it is not
4020 // interesting as far as something to stop.
4021 continue;
4022 }
4023 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004024 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004025 if (r.isHomeActivity()) {
4026 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4027 Slog.i(TAG, "Skip force-stop again " + r);
4028 continue;
4029 } else {
4030 homeActivity = r.realActivity;
4031 }
4032 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004033 didSomething = true;
4034 Slog.i(TAG, " Force finishing activity " + r);
4035 if (samePackage) {
4036 if (r.app != null) {
4037 r.app.removed = true;
4038 }
4039 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004040 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004041 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004042 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4043 true)) {
4044 // r has been deleted from mActivities, accommodate.
4045 --numActivities;
4046 --activityNdx;
4047 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004048 }
4049 }
4050 }
4051 return didSomething;
4052 }
4053
Dianne Hackborn09233282014-04-30 11:33:59 -07004054 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004055 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4056 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004057 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004058 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004059 if (task.getTopActivity() == null) {
4060 continue;
4061 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004062 ActivityRecord r = null;
4063 ActivityRecord top = null;
4064 int numActivities = 0;
4065 int numRunning = 0;
4066 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004067 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004068 continue;
4069 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004070 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4071 r = activities.get(activityNdx);
Craig Mautnercae015f2013-02-08 14:31:27 -08004072
Craig Mautneraab647e2013-02-28 16:31:36 -08004073 // Initialize state for next task if needed.
4074 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4075 top = r;
4076 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004077 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004078
4079 // Add 'r' into the current task.
4080 numActivities++;
4081 if (r.app != null && r.app.thread != null) {
4082 numRunning++;
4083 }
4084
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004085 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004086 TAG, r.intent.getComponent().flattenToShortString()
4087 + ": task=" + r.task);
4088 }
4089
4090 RunningTaskInfo ci = new RunningTaskInfo();
4091 ci.id = task.taskId;
4092 ci.baseActivity = r.intent.getComponent();
4093 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004094 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004095 if (focusedStack && topTask) {
4096 // Give the latest time to ensure foreground task can be sorted
4097 // at the first, because lastActiveTime of creating task is 0.
4098 ci.lastActiveTime = System.currentTimeMillis();
4099 topTask = false;
4100 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004101
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004102 if (top.task != null) {
4103 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004104 }
4105 ci.numActivities = numActivities;
4106 ci.numRunning = numRunning;
Craig Mautneraab647e2013-02-28 16:31:36 -08004107 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004108 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004109 }
4110
4111 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004112 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004113 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004114 if (top >= 0) {
4115 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4116 int activityTop = activities.size() - 1;
4117 if (activityTop > 0) {
4118 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4119 "unhandled-back", true);
4120 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004121 }
4122 }
4123
Craig Mautner6b74cb52013-09-27 17:02:21 -07004124 /**
4125 * Reset local parameters because an app's activity died.
4126 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004127 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004128 */
4129 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004130 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004131 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004132 "App died while pausing: " + mPausingActivity);
4133 mPausingActivity = null;
4134 }
4135 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4136 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004137 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004138 }
4139
Craig Mautner19091252013-10-05 00:03:53 -07004140 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004141 }
4142
Craig Mautnercae015f2013-02-08 14:31:27 -08004143 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004144 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4145 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4146 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4147 final ActivityRecord r = activities.get(activityNdx);
4148 if (r.app == app) {
4149 Slog.w(TAG, " Force finishing activity "
4150 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004151 // Force the destroy to skip right to removal.
4152 r.app = null;
4153 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004154 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004155 }
4156 }
4157 }
4158
Dianne Hackborn390517b2013-05-30 15:03:32 -07004159 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004160 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004161 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004162 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4163 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004164 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4165 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004166 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07004167 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004168 if (printed) {
4169 header = null;
4170 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004171 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004172 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004173 }
4174
4175 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4176 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4177
4178 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004179 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4180 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004181 }
4182 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004183 final int top = mTaskHistory.size() - 1;
4184 if (top >= 0) {
4185 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4186 int listTop = list.size() - 1;
4187 if (listTop >= 0) {
4188 activities.add(list.get(listTop));
4189 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004190 }
4191 } else {
4192 ItemMatcher matcher = new ItemMatcher();
4193 matcher.build(name);
4194
Craig Mautneraab647e2013-02-28 16:31:36 -08004195 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4196 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4197 if (matcher.match(r1, r1.intent.getComponent())) {
4198 activities.add(r1);
4199 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004200 }
4201 }
4202 }
4203
4204 return activities;
4205 }
4206
4207 ActivityRecord restartPackage(String packageName) {
4208 ActivityRecord starting = topRunningActivityLocked(null);
4209
4210 // All activities that came from the package must be
4211 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004212 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4213 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4214 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4215 final ActivityRecord a = activities.get(activityNdx);
4216 if (a.info.packageName.equals(packageName)) {
4217 a.forceNewConfig = true;
4218 if (starting != null && a == starting && a.visible) {
4219 a.startFreezingScreenLocked(starting.app,
4220 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4221 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004222 }
4223 }
4224 }
4225
4226 return starting;
4227 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004228
Craig Mautner299f9602015-01-26 09:47:33 -08004229 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale000957c2015-04-03 08:19:12 -07004230 removeTask(task, reason, true /* notMoving */);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004231 }
4232
Wale Ogunwale000957c2015-04-03 08:19:12 -07004233 /**
4234 * Removes the input task from this stack.
4235 * @param task to remove.
4236 * @param reason for removal.
4237 * @param notMoving task to another stack. In the case we are moving we don't want to perform
4238 * some operations on the task like removing it from window manager or recents.
4239 */
4240 void removeTask(TaskRecord task, String reason, boolean notMoving) {
4241 if (notMoving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004242 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004243 mWindowManager.removeTask(task.taskId);
4244 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004245
Craig Mautner04a0ea62014-01-13 12:51:26 -08004246 final ActivityRecord r = mResumedActivity;
4247 if (r != null && r.task == task) {
4248 mResumedActivity = null;
4249 }
4250
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004251 final int taskNdx = mTaskHistory.indexOf(task);
4252 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004253 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4254 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4255 if (!nextTask.isOverHomeStack()) {
4256 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4257 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004258 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004259 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004260 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004261
Wale Ogunwale000957c2015-04-03 08:19:12 -07004262 if (notMoving && task.mActivities.isEmpty()) {
Craig Mautner41db4a72014-05-07 17:20:56 -07004263 final boolean isVoiceSession = task.voiceSession != null;
4264 if (isVoiceSession) {
4265 try {
4266 task.voiceSession.taskFinished(task.intent, task.taskId);
4267 } catch (RemoteException e) {
4268 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004269 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004270 if (task.autoRemoveFromRecents() || isVoiceSession) {
4271 // Task creator asked to remove this when done, or this task was a voice
4272 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004273 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004274 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004275 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004276 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004277
4278 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004279 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004280 final boolean notHomeStack = !isHomeStack();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004281 if (isOnHomeDisplay()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004282 String myReason = reason + " leftTaskHistoryEmpty";
4283 if (mFullscreen || !adjustFocusToNextVisibleStackLocked(null, myReason)) {
4284 mStackSupervisor.moveHomeStack(notHomeStack, myReason);
4285 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004286 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004287 if (mStacks != null) {
4288 mStacks.remove(this);
4289 mStacks.add(0, this);
4290 }
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004291 if (notHomeStack) {
4292 mActivityContainer.onTaskListEmptyLocked();
4293 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004294 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004295
4296 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004297 }
4298
Dianne Hackborn91097de2014-04-04 18:02:06 -07004299 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4300 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4301 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004302 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4303 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004304 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004305 return task;
4306 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004307
4308 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004309 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004310 }
4311
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004312 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004313 task.stack = this;
4314 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004315 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004316 } else {
4317 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004318 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004319 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004320 if (!moving && task.voiceSession != null) {
4321 try {
4322 task.voiceSession.taskStarted(task.intent, task.taskId);
4323 } catch (RemoteException e) {
4324 }
4325 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004326 }
4327
4328 public int getStackId() {
4329 return mStackId;
4330 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004331
4332 @Override
4333 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004334 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4335 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004336 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004337
4338 boolean updateOverrideConfiguration(Configuration newConfig) {
4339 Configuration oldConfig = mOverrideConfig;
4340 mOverrideConfig = (newConfig == null) ? Configuration.EMPTY : newConfig;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004341 // We override the configuration only when the stack's dimensions are different from
4342 // the display. In this manner, we know that if the override configuration is empty,
4343 // the stack is necessarily full screen.
Todd Kennedyaab56db2015-01-30 09:39:53 -08004344 mFullscreen = Configuration.EMPTY.equals(mOverrideConfig);
Wale Ogunwale60454db2015-01-23 16:05:07 -08004345 return !mOverrideConfig.equals(oldConfig);
4346 }
Craig Mautner15df08a2015-04-01 12:17:18 -07004347
4348 void onLockTaskPackagesUpdatedLocked() {
4349 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4350 mTaskHistory.get(taskNdx).setLockTaskAuth();
4351 }
4352 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004353}