blob: 494ae6cf6776d8c3081e29e3b2377a2c5220d50f [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 Ogunwaleddc1cb22015-07-25 19:23:04 -070019import static android.app.ActivityManager.FULLSCREEN_WORKSPACE_STACK_ID;
20import static android.app.ActivityManager.HOME_STACK_ID;
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -070021import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -070022
Wale Ogunwalee23149f2015-03-06 15:39:44 -080023import static com.android.server.am.ActivityManagerDebugConfig.*;
Craig Mautner0eea92c2013-05-16 13:35:39 -070024
Craig Mautner84984fa2014-06-19 11:19:20 -070025import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
26import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner84984fa2014-06-19 11:19:20 -070027
Wale Ogunwale706ed792015-08-02 10:29:44 -070028import android.graphics.Rect;
Dianne Hackborn89ad4562014-08-24 16:45:38 -070029import android.util.ArraySet;
Wale Ogunwale706ed792015-08-02 10:29:44 -070030import android.view.IApplicationToken;
Dianne Hackborn91097de2014-04-04 18:02:06 -070031import com.android.internal.app.IVoiceInteractor;
Dianne Hackborn85d558c2014-11-04 10:31:54 -080032import com.android.internal.content.ReferrerIntent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070033import com.android.internal.os.BatteryStatsImpl;
Kenny Rootadd58212013-05-07 09:47:34 -070034import com.android.server.Watchdog;
Craig Mautnercae015f2013-02-08 14:31:27 -080035import com.android.server.am.ActivityManagerService.ItemMatcher;
Craig Mautner4a1cb222013-12-04 16:14:06 -080036import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
Craig Mautner4b71aa12012-12-27 17:20:01 -080037import com.android.server.wm.AppTransition;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080038import com.android.server.wm.TaskGroup;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -070039import com.android.server.wm.WindowManagerService;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070040
41import android.app.Activity;
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070042import android.app.ActivityManager;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070043import android.app.ActivityOptions;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070044import android.app.AppGlobals;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080045import android.app.IActivityController;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070046import android.app.ResultInfo;
Craig Mautnercae015f2013-02-08 14:31:27 -080047import android.app.ActivityManager.RunningTaskInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070048import android.content.ComponentName;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070049import android.content.Intent;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070050import android.content.pm.ActivityInfo;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070051import android.content.pm.PackageManager;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070052import android.content.res.Configuration;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -080053import android.graphics.Bitmap;
Santos Cordon73ff7d82013-03-06 17:24:11 -080054import android.net.Uri;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070055import android.os.Binder;
Dianne Hackbornce86ba82011-07-13 19:33:41 -070056import android.os.Bundle;
Craig Mautner329f4122013-11-07 09:10:42 -080057import android.os.Debug;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070058import android.os.Handler;
59import android.os.IBinder;
Zoran Marcetaf958b322012-08-09 20:27:12 +090060import android.os.Looper;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.os.Message;
Craig Mautnera0026042014-04-23 11:45:37 -070062import android.os.PersistableBundle;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070063import android.os.RemoteException;
64import android.os.SystemClock;
Craig Mautner329f4122013-11-07 09:10:42 -080065import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070066import android.os.UserHandle;
Craig Mautner4c07d022014-06-11 17:12:59 -070067import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070068import android.util.EventLog;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070069import android.util.Slog;
Craig Mautner59c00972012-07-30 12:10:24 -070070import android.view.Display;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070071
Craig Mautnercae015f2013-02-08 14:31:27 -080072import java.io.FileDescriptor;
Craig Mautnercae015f2013-02-08 14:31:27 -080073import java.io.PrintWriter;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070074import java.lang.ref.WeakReference;
75import java.util.ArrayList;
76import java.util.Iterator;
77import java.util.List;
Kenny Roote6585b32013-12-13 12:00:26 -080078import java.util.Objects;
Wale Ogunwale540e1232015-05-01 15:35:39 -070079import java.util.Set;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070080
81/**
82 * State and management of a single stack of activities.
83 */
Dianne Hackborn0c5001d2011-04-12 18:16:08 -070084final class ActivityStack {
Craig Mautner5d9c7be2013-02-15 14:02:56 -080085
Wale Ogunwalee23149f2015-03-06 15:39:44 -080086 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070087 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
88 private static final String TAG_APP = TAG + POSTFIX_APP;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080089 private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070090 private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070091 private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070092 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070093 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070094 private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070095 private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
96 private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070097 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070098 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070099 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
100 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
101 private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
102 private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
103 private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -0700104
105 private static final boolean VALIDATE_TOKENS = false;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800106
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700107 // Ticks during which we check progress while waiting for an app to launch.
108 static final int LAUNCH_TICK = 500;
109
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700110 // How long we wait until giving up on the last activity to pause. This
111 // is short because it directly impacts the responsiveness of starting the
112 // next activity.
113 static final int PAUSE_TIMEOUT = 500;
114
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700115 // How long we wait for the activity to tell us it has stopped before
116 // giving up. This is a good amount of time because we really need this
117 // from the application in order to get its saved state.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700118 static final int STOP_TIMEOUT = 10 * 1000;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700119
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700120 // How long we wait until giving up on an activity telling us it has
121 // finished destroying itself.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700122 static final int DESTROY_TIMEOUT = 10 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800123
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700124 // How long until we reset a task when the user returns to it. Currently
Dianne Hackborn621e17d2010-11-22 15:59:56 -0800125 // disabled.
126 static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800127
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700128 // How long between activity launches that we consider safe to not warn
129 // the user about an unexpected activity being launched on top.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700130 static final long START_WARN_TIME = 5 * 1000;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800131
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700132 // Set to false to disable the preview that is shown while a new activity
133 // is being started.
134 static final boolean SHOW_APP_STARTING_PREVIEW = true;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800135
Craig Mautner5eda9b32013-07-02 11:58:16 -0700136 // How long to wait for all background Activities to redraw following a call to
137 // convertToTranslucent().
138 static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
139
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700140 enum ActivityState {
141 INITIALIZING,
142 RESUMED,
143 PAUSING,
144 PAUSED,
145 STOPPING,
146 STOPPED,
147 FINISHING,
148 DESTROYING,
149 DESTROYED
150 }
151
152 final ActivityManagerService mService;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700153 final WindowManagerService mWindowManager;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800154 private final RecentTasks mRecentTasks;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800155
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700156 /**
157 * The back history of all previous (and possibly still
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800158 * running) activities. It contains #TaskRecord objects.
159 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800160 private ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800161
162 /**
Dianne Hackbornbe707852011-11-11 14:32:10 -0800163 * Used for validating app tokens with window manager.
164 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800165 final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
Dianne Hackbornbe707852011-11-11 14:32:10 -0800166
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700167 /**
168 * List of running activities, sorted by recent usage.
169 * The first entry in the list is the least recently used.
170 * It contains HistoryRecord objects.
171 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800172 final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700173
174 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700175 * Animations that for the current transition have requested not to
176 * be considered for the transition animation.
177 */
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800178 final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700179
180 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700181 * When we are in the process of pausing an activity, before starting the
182 * next one, this variable holds the activity that is currently being paused.
183 */
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800184 ActivityRecord mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700185
186 /**
187 * This is the last activity that we put into the paused state. This is
188 * used to determine if we need to do an activity transition while sleeping,
189 * when we normally hold the top activity paused.
190 */
191 ActivityRecord mLastPausedActivity = null;
192
193 /**
Craig Mautner0f922742013-08-06 08:44:42 -0700194 * Activities that specify No History must be removed once the user navigates away from them.
195 * If the device goes to sleep with such an activity in the paused state then we save it here
196 * and finish it later if another activity replaces it on wakeup.
197 */
198 ActivityRecord mLastNoHistoryActivity = null;
199
200 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700201 * Current activity that is resumed, or null if there is none.
202 */
203 ActivityRecord mResumedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800204
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700205 /**
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700206 * This is the last activity that has been started. It is only used to
207 * identify when multiple activities are started at once so that the user
208 * can be warned they may not be in the activity they think they are.
209 */
210 ActivityRecord mLastStartedActivity = null;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800211
Craig Mautner5eda9b32013-07-02 11:58:16 -0700212 // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
213 // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
214 // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
215 // Activity in mTranslucentActivityWaiting is notified via
216 // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
217 // background activity being drawn then the same call will be made with a true value.
218 ActivityRecord mTranslucentActivityWaiting = null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700219 private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
Craig Mautner5eda9b32013-07-02 11:58:16 -0700220
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700221 /**
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700222 * Set when we know we are going to be calling updateConfiguration()
223 * soon, so want to skip intermediate config checks.
224 */
225 boolean mConfigWillChange;
226
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700227 // Whether or not this stack covers the entire screen; by default stacks are fullscreen
Todd Kennedyaab56db2015-01-30 09:39:53 -0800228 boolean mFullscreen = true;
229
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700230 long mLaunchStartTime = 0;
231 long mFullyDrawnStartTime = 0;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800232
Craig Mautner858d8a62013-04-23 17:08:34 -0700233 int mCurrentUser;
Amith Yamasani742a6712011-05-04 14:49:28 -0700234
Craig Mautnerc00204b2013-03-05 15:02:14 -0800235 final int mStackId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800236 final ActivityContainer mActivityContainer;
Craig Mautnere0a38842013-12-16 16:14:02 -0800237 /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
238 ArrayList<ActivityStack> mStacks;
239 /** The attached Display's unique identifier, or -1 if detached */
240 int mDisplayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800241
Craig Mautner27084302013-03-25 08:05:25 -0700242 /** Run all ActivityStacks through this */
243 final ActivityStackSupervisor mStackSupervisor;
244
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700245 static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700246 static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
247 static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
248 static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
249 static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
Craig Mautner5eda9b32013-07-02 11:58:16 -0700250 static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
Jose Lima4b6c6692014-08-12 17:41:12 -0700251 static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
Craig Mautneree2e45a2014-06-27 12:10:03 -0700252 ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700253
254 static class ScheduleDestroyArgs {
255 final ProcessRecord mOwner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700256 final String mReason;
Craig Mautneree2e45a2014-06-27 12:10:03 -0700257 ScheduleDestroyArgs(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700258 mOwner = owner;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700259 mReason = reason;
260 }
261 }
262
Zoran Marcetaf958b322012-08-09 20:27:12 +0900263 final Handler mHandler;
264
265 final class ActivityStackHandler extends Handler {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800266
Craig Mautnerc8143c62013-09-03 12:15:57 -0700267 ActivityStackHandler(Looper looper) {
Zoran Marcetaf958b322012-08-09 20:27:12 +0900268 super(looper);
269 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700270
Zoran Marcetaf958b322012-08-09 20:27:12 +0900271 @Override
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700272 public void handleMessage(Message msg) {
273 switch (msg.what) {
274 case PAUSE_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800275 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700276 // We don't at this point know if the activity is fullscreen,
277 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800278 Slog.w(TAG, "Activity pause timeout for " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700279 synchronized (mService) {
280 if (r.app != null) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700281 mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700282 }
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700283 activityPausedLocked(r.appToken, true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800284 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700285 } break;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700286 case LAUNCH_TICK_MSG: {
287 ActivityRecord r = (ActivityRecord)msg.obj;
288 synchronized (mService) {
289 if (r.continueLaunchTickingLocked()) {
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700290 mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700291 }
292 }
293 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700294 case DESTROY_TIMEOUT_MSG: {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800295 ActivityRecord r = (ActivityRecord)msg.obj;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700296 // We don't at this point know if the activity is fullscreen,
297 // so we need to be conservative and assume it isn't.
Dianne Hackbornbe707852011-11-11 14:32:10 -0800298 Slog.w(TAG, "Activity destroy timeout for " + r);
Craig Mautnerd2328952013-03-05 12:46:26 -0800299 synchronized (mService) {
Craig Mautner299f9602015-01-26 09:47:33 -0800300 activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
Craig Mautnerd2328952013-03-05 12:46:26 -0800301 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700302 } break;
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700303 case STOP_TIMEOUT_MSG: {
304 ActivityRecord r = (ActivityRecord)msg.obj;
305 // We don't at this point know if the activity is fullscreen,
306 // so we need to be conservative and assume it isn't.
307 Slog.w(TAG, "Activity stop timeout for " + r);
308 synchronized (mService) {
309 if (r.isInHistory()) {
310 activityStoppedLocked(r, null, null, null);
311 }
312 }
313 } break;
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700314 case DESTROY_ACTIVITIES_MSG: {
315 ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
316 synchronized (mService) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700317 destroyActivitiesLocked(args.mOwner, args.mReason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -0700318 }
Craig Mautner5eda9b32013-07-02 11:58:16 -0700319 } break;
320 case TRANSLUCENT_TIMEOUT_MSG: {
321 synchronized (mService) {
322 notifyActivityDrawnLocked(null);
323 }
324 } break;
Jose Lima4b6c6692014-08-12 17:41:12 -0700325 case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700326 synchronized (mService) {
Jose Lima4b6c6692014-08-12 17:41:12 -0700327 final ActivityRecord r = getVisibleBehindActivity();
328 Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700329 if (r != null) {
330 mService.killAppAtUsersRequest(r.app, null);
331 }
332 }
333 } break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700334 }
335 }
Craig Mautner4b71aa12012-12-27 17:20:01 -0800336 }
337
Craig Mautner34b73df2014-01-12 21:11:08 -0800338 int numActivities() {
Craig Mautner000f0022013-02-26 15:04:29 -0800339 int count = 0;
340 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
341 count += mTaskHistory.get(taskNdx).mActivities.size();
342 }
343 return count;
344 }
345
Wale Ogunwale53a29a92015-02-23 15:42:52 -0800346 int numTasks() {
347 return mTaskHistory.size();
348 }
349
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800350 ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
351 RecentTasks recentTasks) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800352 mActivityContainer = activityContainer;
353 mStackSupervisor = activityContainer.getOuter();
354 mService = mStackSupervisor.mService;
355 mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
356 mWindowManager = mService.mWindowManager;
357 mStackId = activityContainer.mStackId;
358 mCurrentUser = mService.mCurrentUserId;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800359 mRecentTasks = recentTasks;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700360 }
Craig Mautner5962b122012-10-05 14:45:52 -0700361
Amith Yamasani734983f2014-03-04 16:48:05 -0800362 boolean okToShowLocked(ActivityRecord r) {
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700363 return mStackSupervisor.isCurrentProfileLocked(r.userId)
364 || (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0;
Craig Mautner5962b122012-10-05 14:45:52 -0700365 }
366
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700367 final ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800368 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner6b74cb52013-09-27 17:02:21 -0700369 ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked(notTop);
370 if (r != null) {
371 return r;
Craig Mautner11bf9a52013-02-19 14:08:51 -0800372 }
373 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700374 return null;
375 }
376
377 final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800378 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
379 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner11bf9a52013-02-19 14:08:51 -0800380 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd74f7d72013-02-26 13:41:02 -0800381 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
382 ActivityRecord r = activities.get(activityNdx);
Amith Yamasani734983f2014-03-04 16:48:05 -0800383 if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800384 return r;
385 }
386 }
387 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700388 return null;
389 }
390
391 /**
392 * This is a simplified version of topRunningActivityLocked that provides a number of
393 * optional skip-over modes. It is intended for use with the ActivityController hook only.
Craig Mautner9658b312013-02-28 10:55:59 -0800394 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700395 * @param token If non-null, any history records matching this token will be skipped.
396 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
Craig Mautner9658b312013-02-28 10:55:59 -0800397 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700398 * @return Returns the HistoryRecord of the next activity on the stack.
399 */
400 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800401 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
402 TaskRecord task = mTaskHistory.get(taskNdx);
403 if (task.taskId == taskId) {
404 continue;
405 }
406 ArrayList<ActivityRecord> activities = task.mActivities;
407 for (int i = activities.size() - 1; i >= 0; --i) {
408 final ActivityRecord r = activities.get(i);
409 // Note: the taskId check depends on real taskId fields being non-zero
Amith Yamasani734983f2014-03-04 16:48:05 -0800410 if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
Craig Mautner11bf9a52013-02-19 14:08:51 -0800411 return r;
412 }
413 }
414 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700415 return null;
416 }
417
Craig Mautner8849a5e2013-04-02 16:41:03 -0700418 final ActivityRecord topActivity() {
Craig Mautner8849a5e2013-04-02 16:41:03 -0700419 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
420 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
Craig Mautner0175b882014-09-07 18:05:31 -0700421 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
422 final ActivityRecord r = activities.get(activityNdx);
423 if (!r.finishing) {
424 return r;
425 }
Craig Mautner8849a5e2013-04-02 16:41:03 -0700426 }
427 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700428 return null;
Craig Mautner8849a5e2013-04-02 16:41:03 -0700429 }
430
Craig Mautner9e14d0f2013-05-01 11:26:09 -0700431 final TaskRecord topTask() {
432 final int size = mTaskHistory.size();
433 if (size > 0) {
434 return mTaskHistory.get(size - 1);
435 }
436 return null;
437 }
438
Craig Mautnerd2328952013-03-05 12:46:26 -0800439 TaskRecord taskForIdLocked(int id) {
440 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
441 final TaskRecord task = mTaskHistory.get(taskNdx);
442 if (task.taskId == id) {
443 return task;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800444 }
445 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700446 return null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700447 }
448
Craig Mautnerd2328952013-03-05 12:46:26 -0800449 ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700450 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -0800451 return isInStackLocked(r);
452 }
453
454 ActivityRecord isInStackLocked(ActivityRecord r) {
455 if (r == null) {
456 return null;
457 }
458 final TaskRecord task = r.task;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700459 if (task != null && task.stack != null
460 && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
Wale Ogunwale60454db2015-01-23 16:05:07 -0800461 if (task.stack != this) Slog.w(TAG,
Craig Mautnerd2328952013-03-05 12:46:26 -0800462 "Illegal state! task does not point to stack it is in.");
Wale Ogunwale60454db2015-01-23 16:05:07 -0800463 return r;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800464 }
Craig Mautnerd2328952013-03-05 12:46:26 -0800465 return null;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800466 }
467
Craig Mautner2420ead2013-04-01 17:13:20 -0700468 final boolean updateLRUListLocked(ActivityRecord r) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700469 final boolean hadit = mLRUActivities.remove(r);
470 mLRUActivities.add(r);
471 return hadit;
472 }
473
Craig Mautnerde4ef022013-04-07 19:01:33 -0700474 final boolean isHomeStack() {
475 return mStackId == HOME_STACK_ID;
476 }
477
Craig Mautnere0a38842013-12-16 16:14:02 -0800478 final boolean isOnHomeDisplay() {
479 return isAttached() &&
480 mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
481 }
482
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700483 void moveToFront(String reason) {
484 moveToFront(reason, null);
485 }
486
487 /**
488 * @param reason The reason for moving the stack to the front.
489 * @param task If non-null, the task will be moved to the top of the stack.
490 * */
491 void moveToFront(String reason, TaskRecord task) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800492 if (isAttached()) {
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800493 final boolean homeStack = isHomeStack()
494 || (mActivityContainer.mParentActivity != null
495 && mActivityContainer.mParentActivity.isHomeActivity());
496 ActivityStack lastFocusStack = null;
497 if (!homeStack) {
498 // Need to move this stack to the front before calling
499 // {@link ActivityStackSupervisor#moveHomeStack} below.
500 lastFocusStack = mStacks.get(mStacks.size() - 1);
501 mStacks.remove(this);
502 mStacks.add(this);
Wale Ogunwaleaf0e4482015-02-24 12:27:31 -0800503 }
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700504 // TODO(multi-display): Focus stack currently adjusted in call to move home stack.
505 // Needs to also work if focus is moving to the non-home display.
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800506 if (isOnHomeDisplay()) {
507 mStackSupervisor.moveHomeStack(homeStack, reason, lastFocusStack);
508 }
Wale Ogunwaleeae451e2015-08-04 15:20:50 -0700509 if (task != null) {
510 insertTaskAtTop(task, null);
511 } else {
512 task = topTask();
513 }
Craig Mautner6b904ef2014-12-17 15:45:03 -0800514 if (task != null) {
515 mWindowManager.moveTaskToTop(task.taskId);
516 }
Craig Mautner4a1cb222013-12-04 16:14:06 -0800517 }
Craig Mautnere0a38842013-12-16 16:14:02 -0800518 }
519
520 final boolean isAttached() {
521 return mStacks != null;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800522 }
523
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700524 /**
525 * Returns the top activity in any existing task matching the given
526 * Intent. Returns null if no such task is found.
527 */
Craig Mautnerac6f8432013-07-17 13:24:59 -0700528 ActivityRecord findTaskLocked(ActivityRecord target) {
529 Intent intent = target.intent;
530 ActivityInfo info = target.info;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700531 ComponentName cls = intent.getComponent();
532 if (info.targetActivity != null) {
533 cls = new ComponentName(info.packageName, info.targetActivity);
534 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700535 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautnerd00f4742014-03-12 14:17:26 -0700536 boolean isDocument = intent != null & intent.isDocument();
537 // If documentData is non-null then it must match the existing task data.
538 Uri documentData = isDocument ? intent.getData() : null;
Craig Mautner000f0022013-02-26 15:04:29 -0800539
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700540 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
Craig Mautner000f0022013-02-26 15:04:29 -0800541 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
542 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn91097de2014-04-04 18:02:06 -0700543 if (task.voiceSession != null) {
544 // We never match voice sessions; those always run independently.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700545 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
Dianne Hackborn91097de2014-04-04 18:02:06 -0700546 continue;
547 }
Craig Mautnerac6f8432013-07-17 13:24:59 -0700548 if (task.userId != userId) {
549 // Looking for a different task.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700550 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
Craig Mautnerac6f8432013-07-17 13:24:59 -0700551 continue;
552 }
Craig Mautner000f0022013-02-26 15:04:29 -0800553 final ActivityRecord r = task.getTopActivity();
554 if (r == null || r.finishing || r.userId != userId ||
555 r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700556 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
Craig Mautner000f0022013-02-26 15:04:29 -0800557 continue;
558 }
559
Craig Mautnerd00f4742014-03-12 14:17:26 -0700560 final Intent taskIntent = task.intent;
561 final Intent affinityIntent = task.affinityIntent;
562 final boolean taskIsDocument;
563 final Uri taskDocumentData;
564 if (taskIntent != null && taskIntent.isDocument()) {
565 taskIsDocument = true;
566 taskDocumentData = taskIntent.getData();
567 } else if (affinityIntent != null && affinityIntent.isDocument()) {
568 taskIsDocument = true;
569 taskDocumentData = affinityIntent.getData();
570 } else {
571 taskIsDocument = false;
572 taskDocumentData = null;
573 }
574
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700575 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
Craig Mautnerd00f4742014-03-12 14:17:26 -0700576 + taskIntent.getComponent().flattenToShortString()
Dianne Hackborn79228822014-09-16 11:11:23 -0700577 + "/aff=" + r.task.rootAffinity + " to new cls="
Dianne Hackborn2a272d42013-10-16 13:34:33 -0700578 + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700579 if (!isDocument && !taskIsDocument && task.rootAffinity != null) {
580 if (task.rootAffinity.equals(target.taskAffinity)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700581 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700582 return r;
583 }
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700584 } else if (taskIntent != null && taskIntent.getComponent() != null &&
585 taskIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700586 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700587 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800588 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700589 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
590 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800591 return r;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700592 } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
593 affinityIntent.getComponent().compareTo(cls) == 0 &&
Craig Mautnerd00f4742014-03-12 14:17:26 -0700594 Objects.equals(documentData, taskDocumentData)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700595 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
Craig Mautner000f0022013-02-26 15:04:29 -0800596 //dump();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700597 if (DEBUG_TASKS) Slog.d(TAG_TASKS,
598 "For Intent " + intent + " bringing to top: " + r.intent);
Craig Mautner000f0022013-02-26 15:04:29 -0800599 return r;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700600 } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700601 }
602
603 return null;
604 }
605
606 /**
607 * Returns the first activity (starting from the top of the stack) that
608 * is the same as the given activity. Returns null if no such activity
609 * is found.
610 */
Craig Mautner8849a5e2013-04-02 16:41:03 -0700611 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700612 ComponentName cls = intent.getComponent();
613 if (info.targetActivity != null) {
614 cls = new ComponentName(info.packageName, info.targetActivity);
615 }
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700616 final int userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700617
Craig Mautner000f0022013-02-26 15:04:29 -0800618 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700619 final TaskRecord task = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700620 final boolean notCurrentUserTask =
621 !mStackSupervisor.isCurrentProfileLocked(task.userId);
Craig Mautnerac6f8432013-07-17 13:24:59 -0700622 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700623
Craig Mautner000f0022013-02-26 15:04:29 -0800624 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
625 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -0700626 if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
Wale Ogunwale25073dd2015-07-21 16:54:54 -0700627 continue;
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700628 }
Craig Mautner000f0022013-02-26 15:04:29 -0800629 if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700630 return r;
631 }
632 }
633 }
634
635 return null;
636 }
637
Amith Yamasani742a6712011-05-04 14:49:28 -0700638 /*
Craig Mautnerac6f8432013-07-17 13:24:59 -0700639 * Move the activities around in the stack to bring a user to the foreground.
Amith Yamasani742a6712011-05-04 14:49:28 -0700640 */
Craig Mautner93529a42013-10-04 15:03:13 -0700641 final void switchUserLocked(int userId) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800642 if (mCurrentUser == userId) {
Craig Mautner93529a42013-10-04 15:03:13 -0700643 return;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800644 }
645 mCurrentUser = userId;
646
647 // Move userId's tasks to the top.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800648 int index = mTaskHistory.size();
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800649 for (int i = 0; i < index; ) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700650 final TaskRecord task = mTaskHistory.get(i);
651
652 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
653 // okay to show the activity when locked.
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -0700654 if (mStackSupervisor.isCurrentProfileLocked(task.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -0700655 || task.topRunningActivityLocked(null) != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700656 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700657 " moving " + task + " to top");
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800658 mTaskHistory.remove(i);
659 mTaskHistory.add(task);
660 --index;
Craig Mautnerdb5c4fb2013-11-06 13:55:08 -0800661 // Use same value for i.
662 } else {
663 ++i;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800664 }
665 }
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700666 if (VALIDATE_TOKENS) {
667 validateAppTokensLocked();
668 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700669 }
670
Craig Mautner2420ead2013-04-01 17:13:20 -0700671 void minimalResumeActivityLocked(ActivityRecord r) {
672 r.state = ActivityState.RESUMED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700673 if (DEBUG_STATES) Slog.v(TAG_STATES,
674 "Moving to RESUMED: " + r + " (starting new instance)");
Craig Mautner2420ead2013-04-01 17:13:20 -0700675 r.stopped = false;
676 mResumedActivity = r;
677 r.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800678 mRecentTasks.addLocked(r.task);
Craig Mautner2420ead2013-04-01 17:13:20 -0700679 completeResumeLocked(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700680 mStackSupervisor.checkReadyForSleepLocked();
Craig Mautner1e8b8722013-10-14 18:24:52 -0700681 setLaunchTime(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700682 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
683 "Launch completed; removing icicle of " + r.icicle);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700684 }
685
Narayan Kamath7829c812015-06-08 17:39:43 +0100686 private void startLaunchTraces(String packageName) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700687 if (mFullyDrawnStartTime != 0) {
688 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
689 }
Narayan Kamath7829c812015-06-08 17:39:43 +0100690 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborncee04b52013-07-03 17:01:28 -0700691 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
692 }
693
694 private void stopFullyDrawnTraceIfNeeded() {
695 if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
696 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
697 mFullyDrawnStartTime = 0;
698 }
699 }
700
Craig Mautnere79d42682013-04-01 19:01:53 -0700701 void setLaunchTime(ActivityRecord r) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700702 if (r.displayStartTime == 0) {
703 r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
704 if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100705 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700706 mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700707 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700708 } else if (mLaunchStartTime == 0) {
Narayan Kamath7829c812015-06-08 17:39:43 +0100709 startLaunchTraces(r.packageName);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700710 mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700711 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700712 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800713
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700714 void clearLaunchTime(ActivityRecord r) {
Craig Mautner5c494542013-09-06 11:59:38 -0700715 // Make sure that there is no activity waiting for this to launch.
716 if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
717 r.displayStartTime = r.fullyDrawnStartTime = 0;
718 } else {
719 mStackSupervisor.removeTimeoutsForActivityLocked(r);
720 mStackSupervisor.scheduleIdleTimeoutLocked(r);
721 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700722 }
723
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800724 void awakeFromSleepingLocked() {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800725 // Ensure activities are no longer sleeping.
Craig Mautnerd44711d2013-02-23 11:24:36 -0800726 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
727 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
728 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
729 activities.get(activityNdx).setSleeping(false);
730 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800731 }
Craig Mautnerf49b0a42014-11-20 15:06:40 -0800732 if (mPausingActivity != null) {
733 Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
734 activityPausedLocked(mPausingActivity.appToken, true);
735 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800736 }
737
Craig Mautner0eea92c2013-05-16 13:35:39 -0700738 /**
739 * @return true if something must be done before going to sleep.
740 */
741 boolean checkReadyForSleepLocked() {
742 if (mResumedActivity != null) {
743 // Still have something resumed; can't sleep until it is paused.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700744 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
745 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
746 "Sleep => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700747 startPausingLocked(false, true, false, false);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700748 return true;
749 }
750 if (mPausingActivity != null) {
751 // Still waiting for something to pause; can't sleep yet.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700752 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700753 return true;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800754 }
755
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700756 if (hasVisibleBehindActivity()) {
757 // Stop visible behind activity before going to sleep.
758 final ActivityRecord r = mActivityContainer.mActivityDisplay.mVisibleBehindActivity;
759 mStackSupervisor.mStoppingActivities.add(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700760 if (DEBUG_STATES) Slog.v(TAG_STATES,
761 "Sleep still waiting to stop visible behind " + r);
Wale Ogunwale5c42e502015-04-08 09:18:54 -0700762 return true;
763 }
764
Craig Mautner0eea92c2013-05-16 13:35:39 -0700765 return false;
766 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800767
Craig Mautner0eea92c2013-05-16 13:35:39 -0700768 void goToSleep() {
769 ensureActivitiesVisibleLocked(null, 0);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800770
Craig Mautner0eea92c2013-05-16 13:35:39 -0700771 // Make sure any stopped but visible activities are now sleeping.
772 // This ensures that the activity's onStop() is called.
773 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
774 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
775 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
776 final ActivityRecord r = activities.get(activityNdx);
777 if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED) {
778 r.setSleeping(true);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800779 }
780 }
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800781 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700782 }
Craig Mautner59c00972012-07-30 12:10:24 -0700783
Dianne Hackbornd2835932010-12-13 16:28:46 -0800784 public final Bitmap screenshotActivities(ActivityRecord who) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700785 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivities: " + who);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800786 if (who.noDisplay) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700787 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800788 return null;
789 }
Craig Mautneraab647e2013-02-28 16:31:36 -0800790
Winson Chung083baf92014-07-11 10:32:42 -0700791 if (isHomeStack()) {
Winson Chung376543b2014-05-21 17:43:28 -0700792 // This is an optimization -- since we never show Home or Recents within Recents itself,
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800793 // we can just go ahead and skip taking the screenshot if this is the home stack.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700794 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
Dianne Hackborn4d03fe62013-10-04 17:26:37 -0700795 return null;
796 }
797
Winson Chung48a10a52014-08-27 14:36:51 -0700798 int w = mService.mThumbnailWidth;
799 int h = mService.mThumbnailHeight;
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800800 if (w > 0) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700801 if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
Wale Ogunwaleeacdf2c2014-12-09 14:02:27 -0800802 return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
Dianne Hackborn27eac1d2015-03-16 17:15:53 -0700803 w, h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800804 }
Winson Chung376543b2014-05-21 17:43:28 -0700805 Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
Dianne Hackborn0aae2d42010-12-07 23:51:29 -0800806 return null;
807 }
808
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700809 /**
810 * Start pausing the currently resumed activity. It is an error to call this if there
811 * is already an activity being paused or there is no resumed activity.
812 *
813 * @param userLeaving True if this should result in an onUserLeaving to the current activity.
814 * @param uiSleeping True if this is happening with the user interface going to sleep (the
815 * screen turning off).
816 * @param resuming True if this is being called as part of resuming the top activity, so
817 * we shouldn't try to instigate a resume here.
818 * @param dontWait True if the caller does not want to wait for the pause to complete. If
819 * set to true, we will immediately complete the pause here before returning.
820 * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
821 * it to tell us when it is done.
822 */
823 final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
824 boolean dontWait) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800825 if (mPausingActivity != null) {
riddle_hsu7dfe4d72015-02-16 18:43:49 +0800826 Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
827 + " state=" + mPausingActivity.state);
828 if (!mService.isSleeping()) {
829 // Avoid recursion among check for sleep and complete pause during sleeping.
830 // Because activity will be paused immediately after resume, just let pause
831 // be completed by the order of activity paused from clients.
832 completePauseLocked(false);
833 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800834 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700835 ActivityRecord prev = mResumedActivity;
836 if (prev == null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700837 if (!resuming) {
838 Slog.wtf(TAG, "Trying to pause when nothing is resumed");
839 mStackSupervisor.resumeTopActivitiesLocked();
840 }
841 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700842 }
Craig Mautnerdf88d732014-01-27 09:21:32 -0800843
844 if (mActivityContainer.mParentActivity == null) {
845 // Top level stack, not a child. Look for child stacks.
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700846 mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
Craig Mautnerdf88d732014-01-27 09:21:32 -0800847 }
848
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700849 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700850 else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700851 mResumedActivity = null;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800852 mPausingActivity = prev;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700853 mLastPausedActivity = prev;
Craig Mautner0f922742013-08-06 08:44:42 -0700854 mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
855 || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700856 prev.state = ActivityState.PAUSING;
857 prev.task.touchActiveTime();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700858 clearLaunchTime(prev);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700859 final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
Wale Ogunwaled3e2a082014-11-04 16:09:19 -0800860 if (mService.mHasRecents && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
Winson Chung740c3ac2014-11-12 16:14:38 -0800861 prev.updateThumbnailLocked(screenshotActivities(prev), null);
Craig Mautner6f6d56f2013-10-24 16:02:07 -0700862 }
Dianne Hackborncee04b52013-07-03 17:01:28 -0700863 stopFullyDrawnTraceIfNeeded();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700864
865 mService.updateCpuStats();
Craig Mautneraab647e2013-02-28 16:31:36 -0800866
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700867 if (prev.app != null && prev.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700868 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700869 try {
870 EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -0700871 prev.userId, System.identityHashCode(prev),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700872 prev.shortComponentName);
Jeff Sharkey5782da72013-04-25 14:32:30 -0700873 mService.updateUsageStats(prev, false);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800874 prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700875 userLeaving, prev.configChangeFlags, dontWait);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700876 } catch (Exception e) {
877 // Ignore exception, if process died other code will cleanup.
878 Slog.w(TAG, "Exception thrown during pause", e);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800879 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700880 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700881 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700882 }
883 } else {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800884 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700885 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -0700886 mLastNoHistoryActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700887 }
888
889 // If we are not going to sleep, we want to ensure the device is
890 // awake until the next activity is started.
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700891 if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700892 mStackSupervisor.acquireLaunchWakelock();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700893 }
894
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800895 if (mPausingActivity != null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700896 // Have the window manager pause its key dispatching until the new
897 // activity has started. If we're pausing the activity just because
898 // the screen is being turned off and the UI is sleeping, don't interrupt
899 // key dispatch; the same activity will pick it up again on wakeup.
900 if (!uiSleeping) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800901 prev.pauseKeyDispatchingLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700902 } else if (DEBUG_PAUSE) {
903 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700904 }
905
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700906 if (dontWait) {
907 // If the caller said they don't want to wait for the pause, then complete
908 // the pause now.
909 completePauseLocked(false);
910 return false;
911
912 } else {
913 // Schedule a pause timeout in case the app doesn't respond.
914 // We don't give it much time because this directly impacts the
915 // responsiveness seen by the user.
916 Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
917 msg.obj = prev;
918 prev.pauseTime = SystemClock.uptimeMillis();
919 mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700920 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700921 return true;
922 }
923
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700924 } else {
925 // This activity failed to schedule the
926 // pause, so just treat it as being paused now.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700927 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700928 if (!resuming) {
929 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
930 }
931 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700932 }
933 }
Dianne Hackbornad9b32112012-09-17 15:35:01 -0700934
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700935 final void activityPausedLocked(IBinder token, boolean timeout) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700936 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
937 "Activity paused: token=" + token + ", timeout=" + timeout);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700938
Craig Mautnerd2328952013-03-05 12:46:26 -0800939 final ActivityRecord r = isInStackLocked(token);
940 if (r != null) {
941 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
942 if (mPausingActivity == r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700943 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
Craig Mautnerd2328952013-03-05 12:46:26 -0800944 + (timeout ? " (due to timeout)" : " (pause complete)"));
Dianne Hackborna4e102e2014-09-04 22:52:27 -0700945 completePauseLocked(true);
Craig Mautnerd2328952013-03-05 12:46:26 -0800946 } else {
947 EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
948 r.userId, System.identityHashCode(r), r.shortComponentName,
949 mPausingActivity != null
950 ? mPausingActivity.shortComponentName : "(none)");
louis_chang047dfd42015-04-08 16:35:55 +0800951 if (r.finishing && r.state == ActivityState.PAUSING) {
952 if (DEBUG_PAUSE) Slog.v(TAG,
953 "Executing finish of failed to pause activity: " + r);
954 finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
955 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700956 }
957 }
958 }
959
Craig Mautnera0026042014-04-23 11:45:37 -0700960 final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
961 PersistableBundle persistentState, CharSequence description) {
Dianne Hackbornb61a0262012-05-14 17:19:18 -0700962 if (r.state != ActivityState.STOPPING) {
963 Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
964 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
965 return;
966 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700967 if (persistentState != null) {
968 r.persistentState = persistentState;
969 mService.notifyTaskPersisterLocked(r.task, false);
970 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700971 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700972 if (icicle != null) {
973 // If icicle is null, this is happening due to a timeout, so we
974 // haven't really saved the state.
975 r.icicle = icicle;
976 r.haveState = true;
Dianne Hackborn07981492013-01-28 11:36:23 -0800977 r.launchCount = 0;
Winson Chung740c3ac2014-11-12 16:14:38 -0800978 r.updateThumbnailLocked(null, description);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700979 }
980 if (!r.stopped) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700981 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700982 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
983 r.stopped = true;
984 r.state = ActivityState.STOPPED;
Jose Lima4b6c6692014-08-12 17:41:12 -0700985 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == r) {
986 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -0700987 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700988 if (r.finishing) {
989 r.clearOptionsLocked();
990 } else {
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700991 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -0700992 destroyActivityLocked(r, true, "stop-config");
Craig Mautner05d29032013-05-03 13:40:13 -0700993 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn162bc0e2012-04-09 14:06:16 -0700994 } else {
Dianne Hackborna413dc02013-07-12 12:02:55 -0700995 mStackSupervisor.updatePreviousProcessLocked(r);
Dianne Hackborn50685602011-12-01 12:23:37 -0800996 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -0700997 }
998 }
999 }
1000
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001001 private void completePauseLocked(boolean resumeNext) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001002 ActivityRecord prev = mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001003 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
Craig Mautneraab647e2013-02-28 16:31:36 -08001004
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001005 if (prev != null) {
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001006 prev.state = ActivityState.PAUSED;
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001007 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001008 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07001009 prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001010 } else if (prev.app != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001011 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending stop: " + prev);
Craig Mautner8c14c152015-01-15 17:32:07 -08001012 if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001013 if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1014 "Complete pause, no longer waiting: " + prev);
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001015 }
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001016 if (prev.configDestroy) {
1017 // The previous is being paused because the configuration
1018 // is changing, which means it is actually stopping...
1019 // To juggle the fact that we are also starting a new
1020 // instance right now, we need to first completely stop
1021 // the current instance before starting the new one.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001022 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Destroying after pause: " + prev);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001023 destroyActivityLocked(prev, true, "pause-config");
Wale Ogunwale5c42e502015-04-08 09:18:54 -07001024 } else if (!hasVisibleBehindActivity() || mService.isSleepingOrShuttingDown()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07001025 // If we were visible then resumeTopActivities will release resources before
Craig Mautneree2e45a2014-06-27 12:10:03 -07001026 // stopping.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001027 mStackSupervisor.mStoppingActivities.add(prev);
Craig Mautner29219d92013-04-16 20:19:12 -07001028 if (mStackSupervisor.mStoppingActivities.size() > 3 ||
1029 prev.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001030 // If we already have a few activities waiting to stop,
1031 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07001032 // them out. Or if r is the last of activity of the last task the stack
1033 // will be empty and must be cleared immediately.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001034 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "To many pending stops, forcing idle");
Craig Mautnerf3333272013-04-22 10:55:53 -07001035 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001036 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001037 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001038 }
1039 }
1040 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001041 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001042 prev = null;
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001043 }
Wale Ogunwale07927bf2015-03-28 17:21:05 -07001044 // It is possible the activity was freezing the screen before it was paused.
1045 // In that case go ahead and remove the freeze this activity has on the screen
1046 // since it is no longer visible.
1047 prev.stopFreezingScreenLocked(true /*force*/);
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001048 mPausingActivity = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001049 }
Dianne Hackborncbb722e2012-02-07 18:33:49 -08001050
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001051 if (resumeNext) {
1052 final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1053 if (!mService.isSleepingOrShuttingDown()) {
1054 mStackSupervisor.resumeTopActivitiesLocked(topStack, prev, null);
1055 } else {
1056 mStackSupervisor.checkReadyForSleepLocked();
1057 ActivityRecord top = topStack.topRunningActivityLocked(null);
1058 if (top == null || (prev != null && top != prev)) {
1059 // If there are no more activities available to run,
1060 // do resume anyway to start something. Also if the top
1061 // activity on the stack is not the just paused activity,
1062 // we need to go ahead and resume it to ensure we complete
1063 // an in-flight app switch.
1064 mStackSupervisor.resumeTopActivitiesLocked(topStack, null, null);
1065 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07001066 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001067 }
Craig Mautneraab647e2013-02-28 16:31:36 -08001068
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001069 if (prev != null) {
1070 prev.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001071
Craig Mautner525f3d92013-05-07 14:01:50 -07001072 if (prev.app != null && prev.cpuTimeAtResume > 0
1073 && mService.mBatteryStatsService.isOnBattery()) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001074 long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1075 - prev.cpuTimeAtResume;
Craig Mautner525f3d92013-05-07 14:01:50 -07001076 if (diff > 0) {
1077 BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1078 synchronized (bsi) {
1079 BatteryStatsImpl.Uid.Proc ps =
1080 bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
Dianne Hackbornd2932242013-08-05 18:18:42 -07001081 prev.info.packageName);
Craig Mautner525f3d92013-05-07 14:01:50 -07001082 if (ps != null) {
1083 ps.addForegroundTimeLocked(diff);
1084 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001085 }
1086 }
1087 }
Craig Mautner525f3d92013-05-07 14:01:50 -07001088 prev.cpuTimeAtResume = 0; // reset it
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001089 }
Winson Chung740c3ac2014-11-12 16:14:38 -08001090
1091 // Notfiy when the task stack has changed
1092 mService.notifyTaskStackChangedLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001093 }
1094
1095 /**
1096 * Once we know that we have asked an application to put an activity in
1097 * the resumed state (either by launching it or explicitly telling it),
1098 * this function updates the rest of our state to match that fact.
1099 */
Craig Mautner525f3d92013-05-07 14:01:50 -07001100 private void completeResumeLocked(ActivityRecord next) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001101 next.idle = false;
1102 next.results = null;
1103 next.newIntents = null;
Craig Mautnerf33f4d72014-07-16 17:25:48 +00001104
1105 if (next.isHomeActivity() && next.isNotResolverActivity()) {
1106 ProcessRecord app = next.task.mActivities.get(0).app;
1107 if (app != null && app != mService.mHomeProcess) {
1108 mService.mHomeProcess = app;
1109 }
1110 }
1111
Craig Mautner07566322013-09-26 16:42:55 -07001112 if (next.nowVisible) {
1113 // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
Jorim Jaggi8de4311c2014-08-11 22:36:20 +02001114 mStackSupervisor.notifyActivityDrawnForKeyguard();
Craig Mautner07566322013-09-26 16:42:55 -07001115 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001116
1117 // schedule an idle timeout in case the app doesn't do it for us.
Craig Mautnerf3333272013-04-22 10:55:53 -07001118 mStackSupervisor.scheduleIdleTimeoutLocked(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001119
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001120 mStackSupervisor.reportResumedActivityLocked(next);
1121
1122 next.resumeKeyDispatchingLocked();
1123 mNoAnimActivities.clear();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001124
1125 // Mark the point when the activity is resuming
1126 // TODO: To be more accurate, the mark should be before the onCreate,
1127 // not after the onResume. But for subsequent starts, onResume is fine.
1128 if (next.app != null) {
Dianne Hackborn652973f2014-09-10 17:08:48 -07001129 next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001130 } else {
1131 next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1132 }
Winson Chung376543b2014-05-21 17:43:28 -07001133
George Mount6ba042b2014-07-28 11:12:28 -07001134 next.returningOptions = null;
Craig Mautner64ccb702014-10-01 09:38:40 -07001135
1136 if (mActivityContainer.mActivityDisplay.mVisibleBehindActivity == next) {
1137 // When resuming an activity, require it to call requestVisibleBehind() again.
1138 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(null);
1139 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001140 }
1141
Craig Mautner2568c3a2015-03-26 14:22:34 -07001142 private void setVisible(ActivityRecord r, boolean visible) {
Craig Mautnere3a00d72014-04-16 08:31:19 -07001143 r.visible = visible;
1144 mWindowManager.setAppVisibility(r.appToken, visible);
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001145 final ArrayList<ActivityContainer> containers = r.mChildContainers;
Craig Mautnere3a00d72014-04-16 08:31:19 -07001146 for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001147 ActivityContainer container = containers.get(containerNdx);
Craig Mautnere3a00d72014-04-16 08:31:19 -07001148 container.setVisible(visible);
1149 }
1150 }
1151
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001152 // Find the first visible activity above the passed activity and if it is translucent return it
1153 // otherwise return null;
1154 ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1155 TaskRecord task = r.task;
1156 if (task == null) {
1157 return null;
1158 }
1159
1160 ActivityStack stack = task.stack;
1161 if (stack == null) {
1162 return null;
1163 }
1164
1165 int stackNdx = mStacks.indexOf(stack);
1166
1167 ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1168 int taskNdx = tasks.indexOf(task);
1169
1170 ArrayList<ActivityRecord> activities = task.mActivities;
1171 int activityNdx = activities.indexOf(r) + 1;
1172
1173 final int numStacks = mStacks.size();
1174 while (stackNdx < numStacks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001175 final ActivityStack historyStack = mStacks.get(stackNdx);
Todd Kennedyaab56db2015-01-30 09:39:53 -08001176 tasks = historyStack.mTaskHistory;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001177 final int numTasks = tasks.size();
1178 while (taskNdx < numTasks) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001179 final TaskRecord currentTask = tasks.get(taskNdx);
1180 activities = currentTask.mActivities;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001181 final int numActivities = activities.size();
1182 while (activityNdx < numActivities) {
1183 final ActivityRecord activity = activities.get(activityNdx);
1184 if (!activity.finishing) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001185 return historyStack.mFullscreen
1186 && currentTask.mFullscreen && activity.fullscreen ? null : activity;
Craig Mautnerfa387ad2014-08-05 11:16:41 -07001187 }
1188 ++activityNdx;
1189 }
1190 activityNdx = 0;
1191 ++taskNdx;
1192 }
1193 taskNdx = 0;
1194 ++stackNdx;
1195 }
1196
1197 return null;
1198 }
1199
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001200 private ActivityStack getNextVisibleStackLocked() {
1201 ArrayList<ActivityStack> stacks = mStacks;
1202 final ActivityRecord parent = mActivityContainer.mParentActivity;
1203 if (parent != null) {
1204 stacks = parent.task.stack.mStacks;
1205 }
1206 if (stacks != null) {
1207 for (int i = stacks.size() - 1; i >= 0; --i) {
1208 ActivityStack stack = stacks.get(i);
1209 if (stack != this && stack.isStackVisibleLocked()) {
1210 return stack;
1211 }
1212 }
1213 }
1214 return null;
1215 }
1216
Jose Lima7ba71252014-04-30 12:59:27 -07001217 // Checks if any of the stacks above this one has a fullscreen activity behind it.
1218 // If so, this stack is hidden, otherwise it is visible.
Todd Kennedyaab56db2015-01-30 09:39:53 -08001219 private boolean isStackVisibleLocked() {
Jose Lima7ba71252014-04-30 12:59:27 -07001220 if (!isAttached()) {
1221 return false;
1222 }
1223
1224 if (mStackSupervisor.isFrontStack(this)) {
1225 return true;
1226 }
1227
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001228 // Any stack that isn't the front stack is not visible, except for the case of the home
1229 // stack behind the main application stack since we can have dialog activities on the
1230 // main application stack that need the home stack to display behind them.
1231 // TODO(multi-window): Also need to add exception for side-by-side stacks.
1232 final boolean homeStack = mStackId == HOME_STACK_ID;
1233 if (!homeStack) {
1234 return false;
1235 }
1236
Jose Lima729cb232014-05-05 15:59:40 -07001237 /**
1238 * Start at the task above this one and go up, looking for a visible
1239 * fullscreen activity, or a translucent activity that requested the
1240 * wallpaper to be shown behind it.
1241 */
Jose Lima7ba71252014-04-30 12:59:27 -07001242 for (int i = mStacks.indexOf(this) + 1; i < mStacks.size(); i++) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001243 final ActivityStack stack = mStacks.get(i);
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001244 if (stack.mStackId != FULLSCREEN_WORKSPACE_STACK_ID) {
1245 return false;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001246 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07001247
Todd Kennedyaab56db2015-01-30 09:39:53 -08001248 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
1249 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001250 final TaskRecord task = tasks.get(taskNdx);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001251 // task above isn't fullscreen, so, we assume we're still visible.
1252 if (!task.mFullscreen) {
1253 continue;
1254 }
Craig Mautner84984fa2014-06-19 11:19:20 -07001255 final ArrayList<ActivityRecord> activities = task.mActivities;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001256 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Jose Lima7ba71252014-04-30 12:59:27 -07001257 final ActivityRecord r = activities.get(activityNdx);
Jose Lima729cb232014-05-05 15:59:40 -07001258
1259 // Conditions for an activity to obscure the stack we're
1260 // examining:
1261 // 1. Not Finishing AND Visible AND:
1262 // 2. Either:
1263 // - Full Screen Activity OR
1264 // - On top of Home and our stack is NOT home
1265 if (!r.finishing && r.visible && (r.fullscreen ||
Craig Mautner84984fa2014-06-19 11:19:20 -07001266 (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()))) {
Jose Lima7ba71252014-04-30 12:59:27 -07001267 return false;
1268 }
1269 }
1270 }
1271 }
1272
1273 return true;
1274 }
1275
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001276 /**
1277 * Make sure that all activities that need to be visible (that is, they
1278 * currently can be seen by the user) actually are.
1279 */
Craig Mautnerbb742462014-07-07 15:28:55 -07001280 final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges) {
1281 ActivityRecord top = topRunningActivityLocked(null);
1282 if (top == null) {
1283 return;
1284 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001285 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1286 "ensureActivitiesVisible behind " + top
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001287 + " configChanges=0x" + Integer.toHexString(configChanges));
1288
Craig Mautner5eda9b32013-07-02 11:58:16 -07001289 if (mTranslucentActivityWaiting != top) {
1290 mUndrawnActivitiesBelowTopTranslucent.clear();
1291 if (mTranslucentActivityWaiting != null) {
1292 // Call the callback with a timeout indication.
1293 notifyActivityDrawnLocked(null);
1294 mTranslucentActivityWaiting = null;
1295 }
1296 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1297 }
1298
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001299 // If the top activity is not fullscreen, then we need to
1300 // make sure any activities under it are now visible.
Craig Mautnerd44711d2013-02-23 11:24:36 -08001301 boolean aboveTop = true;
Todd Kennedyaab56db2015-01-30 09:39:53 -08001302 boolean behindFullscreen = !isStackVisibleLocked();
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001303 boolean noStackActivityResumed = (isInStackLocked(starting) == null);
Jose Lima7ba71252014-04-30 12:59:27 -07001304
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001305 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001306 final TaskRecord task = mTaskHistory.get(taskNdx);
1307 final ArrayList<ActivityRecord> activities = task.mActivities;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001308 // Set to true if an activity in this task is fullscreen thereby hiding other
1309 // activities in the same task. Initialized to the same value as behindFullscreen
1310 // which represent if the entire task/stack is behind another fullscreen task/stack.
1311 boolean behindFullscreenActivity = behindFullscreen;
Craig Mautnerd44711d2013-02-23 11:24:36 -08001312 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1313 final ActivityRecord r = activities.get(activityNdx);
1314 if (r.finishing) {
1315 continue;
1316 }
1317 if (aboveTop && r != top) {
1318 continue;
1319 }
1320 aboveTop = false;
Craig Mautnerbb742462014-07-07 15:28:55 -07001321 // mLaunchingBehind: Activities launching behind are at the back of the task stack
1322 // but must be drawn initially for the animation as though they were visible.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001323 if (!behindFullscreenActivity || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001324 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1325 "Make visible? " + r + " finishing=" + r.finishing
Craig Mautnerd44711d2013-02-23 11:24:36 -08001326 + " state=" + r.state);
Craig Mautner58547802013-03-05 08:23:53 -08001327
Craig Mautnerd44711d2013-02-23 11:24:36 -08001328 // First: if this is not the current activity being started, make
1329 // sure it matches the current configuration.
Craig Mautnerbb742462014-07-07 15:28:55 -07001330 if (r != starting) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001331 ensureActivityConfigurationLocked(r, 0);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001332 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001333
1334 if (r.app == null || r.app.thread == null) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001335 // This activity needs to be visible, but isn't even running...
1336 // get it started and resume if no other stack in this stack is resumed.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001337 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1338 "Start and freeze screen for " + r);
Craig Mautnerbb742462014-07-07 15:28:55 -07001339 if (r != starting) {
1340 r.startFreezingScreenLocked(r.app, configChanges);
1341 }
1342 if (!r.visible || r.mLaunchTaskBehind) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001343 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1344 "Starting and making visible: " + r);
Craig Mautner2568c3a2015-03-26 14:22:34 -07001345 setVisible(r, true);
Craig Mautnerbb742462014-07-07 15:28:55 -07001346 }
1347 if (r != starting) {
Wale Ogunwaleaddd00e2015-04-04 17:10:50 -07001348 mStackSupervisor.startSpecificActivityLocked(
1349 r, noStackActivityResumed, false);
riddle_hsu36ee73d2015-06-05 16:38:38 +08001350 if (activityNdx >= activities.size()) {
1351 // Record may be removed if its process needs to restart.
1352 activityNdx = activities.size() - 1;
1353 } else {
1354 noStackActivityResumed = false;
1355 }
Craig Mautnerd44711d2013-02-23 11:24:36 -08001356 }
1357
1358 } else if (r.visible) {
1359 // If this activity is already visible, then there is nothing
1360 // else to do here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001361 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1362 "Skipping: already visible at " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001363 r.stopFreezingScreenLocked(false);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001364 try {
George Mount6ba042b2014-07-28 11:12:28 -07001365 if (r.returningOptions != null) {
1366 r.app.thread.scheduleOnNewActivityOptions(r.appToken,
1367 r.returningOptions);
Craig Mautnereb8abf72014-07-02 15:04:09 -07001368 }
1369 } catch(RemoteException e) {
1370 }
Wale Ogunwale85b90ab2015-04-27 20:54:47 -07001371 if (r.state == ActivityState.RESUMED) {
1372 noStackActivityResumed = false;
1373 }
Craig Mautnerbb742462014-07-07 15:28:55 -07001374 } else {
Craig Mautnerd44711d2013-02-23 11:24:36 -08001375 // This activity is not currently visible, but is running.
1376 // Tell it to become visible.
1377 r.visible = true;
1378 if (r.state != ActivityState.RESUMED && r != starting) {
1379 // If this activity is paused, tell it
1380 // to now show its window.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001381 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1382 "Making visible and scheduling visibility: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001383 try {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001384 if (mTranslucentActivityWaiting != null) {
George Mount6ba042b2014-07-28 11:12:28 -07001385 r.updateOptionsLocked(r.returningOptions);
Craig Mautner5eda9b32013-07-02 11:58:16 -07001386 mUndrawnActivitiesBelowTopTranslucent.add(r);
1387 }
Craig Mautner2568c3a2015-03-26 14:22:34 -07001388 setVisible(r, true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001389 r.sleeping = false;
1390 r.app.pendingUiClean = true;
1391 r.app.thread.scheduleWindowVisibility(r.appToken, true);
1392 r.stopFreezingScreenLocked(false);
1393 } catch (Exception e) {
1394 // Just skip on any failure; we'll make it
1395 // visible when it next restarts.
1396 Slog.w(TAG, "Exception thrown making visibile: "
1397 + r.intent.getComponent(), e);
1398 }
1399 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001400 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001401
Craig Mautnerd44711d2013-02-23 11:24:36 -08001402 // Aggregate current change flags.
1403 configChanges |= r.configChangeFlags;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001404
Craig Mautnerd44711d2013-02-23 11:24:36 -08001405 if (r.fullscreen) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001406 // At this point, nothing else needs to be shown in this task.
1407 behindFullscreenActivity = true;
1408 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
1409 + " behindFullscreen=" + behindFullscreen
1410 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautner84984fa2014-06-19 11:19:20 -07001411 } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001412 behindFullscreenActivity = true;
1413 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1414 + " behindFullscreen=" + behindFullscreen
1415 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerd44711d2013-02-23 11:24:36 -08001416 }
1417 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001418 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001419 "Make invisible? " + r + " finishing=" + r.finishing
1420 + " state=" + r.state + " behindFullscreen=" + behindFullscreen
1421 + " behindFullscreenActivity=" + behindFullscreenActivity);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001422 // Now for any activities that aren't visible to the user, make
1423 // sure they no longer are keeping the screen frozen.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001424 if (r.visible) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001425 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001426 try {
Craig Mautner2568c3a2015-03-26 14:22:34 -07001427 setVisible(r, false);
Craig Mautner4addfc52013-06-25 08:05:45 -07001428 switch (r.state) {
1429 case STOPPING:
1430 case STOPPED:
1431 if (r.app != null && r.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001432 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1433 "Scheduling invisibility: " + r);
Craig Mautner4addfc52013-06-25 08:05:45 -07001434 r.app.thread.scheduleWindowVisibility(r.appToken, false);
1435 }
1436 break;
1437
1438 case INITIALIZING:
1439 case RESUMED:
1440 case PAUSING:
1441 case PAUSED:
Craig Mautner88176102013-07-22 12:57:51 -07001442 // This case created for transitioning activities from
1443 // translucent to opaque {@link Activity#convertToOpaque}.
Jose Lima4b6c6692014-08-12 17:41:12 -07001444 if (getVisibleBehindActivity() == r) {
Todd Kennedyaab56db2015-01-30 09:39:53 -08001445 releaseBackgroundResources(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07001446 } else {
1447 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1448 mStackSupervisor.mStoppingActivities.add(r);
1449 }
1450 mStackSupervisor.scheduleIdleLocked();
Craig Mautnere5273b42013-09-09 12:57:47 -07001451 }
Craig Mautner4addfc52013-06-25 08:05:45 -07001452 break;
1453
1454 default:
1455 break;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001456 }
1457 } catch (Exception e) {
1458 // Just skip on any failure; we'll make it
1459 // visible when it next restarts.
1460 Slog.w(TAG, "Exception thrown making hidden: "
1461 + r.intent.getComponent(), e);
1462 }
1463 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001464 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001465 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001466 }
1467 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001468 // Factoring if the previous task is fullscreen there by affecting the visibility of
1469 // task behind it.
1470 behindFullscreen |= task.mFullscreen;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001471 }
Craig Mautnereb8abf72014-07-02 15:04:09 -07001472
1473 if (mTranslucentActivityWaiting != null &&
1474 mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1475 // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1476 notifyActivityDrawnLocked(null);
1477 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001478 }
Craig Mautner58547802013-03-05 08:23:53 -08001479
Todd Kennedyaab56db2015-01-30 09:39:53 -08001480 void convertActivityToTranslucent(ActivityRecord r) {
Craig Mautner5eda9b32013-07-02 11:58:16 -07001481 mTranslucentActivityWaiting = r;
1482 mUndrawnActivitiesBelowTopTranslucent.clear();
1483 mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1484 }
1485
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07001486 void clearOtherAppTimeTrackers(AppTimeTracker except) {
1487 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1488 final TaskRecord task = mTaskHistory.get(taskNdx);
1489 final ArrayList<ActivityRecord> activities = task.mActivities;
1490 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1491 final ActivityRecord r = activities.get(activityNdx);
1492 if ( r.appTimeTracker != except) {
1493 r.appTimeTracker = null;
1494 }
1495 }
1496 }
1497 }
1498
Craig Mautner5eda9b32013-07-02 11:58:16 -07001499 /**
1500 * Called as activities below the top translucent activity are redrawn. When the last one is
1501 * redrawn notify the top activity by calling
1502 * {@link Activity#onTranslucentConversionComplete}.
1503 *
1504 * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1505 * occurred and the activity will be notified immediately.
1506 */
1507 void notifyActivityDrawnLocked(ActivityRecord r) {
Craig Mautner6985bad2014-04-21 15:22:06 -07001508 mActivityContainer.setDrawn();
Craig Mautner5eda9b32013-07-02 11:58:16 -07001509 if ((r == null)
1510 || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1511 mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1512 // The last undrawn activity below the top has just been drawn. If there is an
1513 // opaque activity at the top, notify it that it can become translucent safely now.
1514 final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1515 mTranslucentActivityWaiting = null;
1516 mUndrawnActivitiesBelowTopTranslucent.clear();
1517 mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1518
Craig Mautner71dd1b62014-02-18 15:48:52 -08001519 if (waitingActivity != null) {
1520 mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
1521 if (waitingActivity.app != null && waitingActivity.app.thread != null) {
1522 try {
1523 waitingActivity.app.thread.scheduleTranslucentConversionComplete(
1524 waitingActivity.appToken, r != null);
1525 } catch (RemoteException e) {
1526 }
Craig Mautner5eda9b32013-07-02 11:58:16 -07001527 }
1528 }
1529 }
1530 }
1531
Craig Mautnera61bc652013-10-28 15:43:18 -07001532 /** If any activities below the top running one are in the INITIALIZING state and they have a
1533 * starting window displayed then remove that starting window. It is possible that the activity
1534 * in this state will never resumed in which case that starting window will be orphaned. */
1535 void cancelInitializingActivities() {
1536 final ActivityRecord topActivity = topRunningActivityLocked(null);
1537 boolean aboveTop = true;
1538 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1539 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1540 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1541 final ActivityRecord r = activities.get(activityNdx);
1542 if (aboveTop) {
1543 if (r == topActivity) {
1544 aboveTop = false;
1545 }
1546 continue;
1547 }
1548
1549 if (r.state == ActivityState.INITIALIZING && r.mStartingWindowShown) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001550 if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
1551 "Found orphaned starting window " + r);
Craig Mautnera61bc652013-10-28 15:43:18 -07001552 r.mStartingWindowShown = false;
1553 mWindowManager.removeAppStartingWindow(r.appToken);
1554 }
1555 }
1556 }
1557 }
1558
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001559 /**
1560 * Ensure that the top activity in the stack is resumed.
1561 *
1562 * @param prev The previously resumed activity, for when in the process
1563 * of pausing; can be null to call from elsewhere.
1564 *
1565 * @return Returns true if something is being resumed, or false if
1566 * nothing happened.
1567 */
1568 final boolean resumeTopActivityLocked(ActivityRecord prev) {
Dianne Hackborn84375872012-06-01 19:03:50 -07001569 return resumeTopActivityLocked(prev, null);
1570 }
1571
1572 final boolean resumeTopActivityLocked(ActivityRecord prev, Bundle options) {
Craig Mautner42d04db2014-11-06 12:13:23 -08001573 if (mStackSupervisor.inResumeTopActivity) {
Craig Mautner544efa72014-09-04 16:41:20 -07001574 // Don't even start recursing.
1575 return false;
1576 }
1577
1578 boolean result = false;
1579 try {
1580 // Protect against recursion.
Craig Mautner42d04db2014-11-06 12:13:23 -08001581 mStackSupervisor.inResumeTopActivity = true;
1582 if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
1583 mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
Jeff Brown9ef94012014-11-21 13:04:42 -08001584 mService.updateSleepIfNeededLocked();
Craig Mautner42d04db2014-11-06 12:13:23 -08001585 }
Craig Mautner544efa72014-09-04 16:41:20 -07001586 result = resumeTopActivityInnerLocked(prev, options);
1587 } finally {
Craig Mautner42d04db2014-11-06 12:13:23 -08001588 mStackSupervisor.inResumeTopActivity = false;
Craig Mautner544efa72014-09-04 16:41:20 -07001589 }
1590 return result;
1591 }
1592
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001593 private boolean resumeTopActivityInnerLocked(ActivityRecord prev, Bundle options) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001594 if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
Craig Mautner5314a402013-09-26 12:40:16 -07001595
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001596 if (!mService.mBooting && !mService.mBooted) {
1597 // Not ready yet!
1598 return false;
1599 }
1600
Craig Mautnerdf88d732014-01-27 09:21:32 -08001601 ActivityRecord parent = mActivityContainer.mParentActivity;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07001602 if ((parent != null && parent.state != ActivityState.RESUMED) ||
Craig Mautnerd163e752014-06-13 17:18:47 -07001603 !mActivityContainer.isAttachedLocked()) {
Craig Mautnerdf88d732014-01-27 09:21:32 -08001604 // Do not resume this stack if its parent is not resumed.
1605 // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
1606 return false;
1607 }
1608
Craig Mautnera61bc652013-10-28 15:43:18 -07001609 cancelInitializingActivities();
1610
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001611 // Find the first activity that is not finishing.
Craig Mautner94ab4662015-01-20 10:49:22 -08001612 final ActivityRecord next = topRunningActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001613
1614 // Remember how we'll process this pause/resume situation, and ensure
1615 // that the state is reset however we wind up proceeding.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001616 final boolean userLeaving = mStackSupervisor.mUserLeaving;
1617 mStackSupervisor.mUserLeaving = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001618
Craig Mautner84984fa2014-06-19 11:19:20 -07001619 final TaskRecord prevTask = prev != null ? prev.task : null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001620 if (next == null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001621 // There are no more activities!
1622 final String reason = "noMoreActivities";
1623 if (!mFullscreen) {
1624 // Try to move focus to the next visible stack with a running activity if this
1625 // stack is not covering the entire screen.
1626 final ActivityStack stack = getNextVisibleStackLocked();
1627 if (adjustFocusToNextVisibleStackLocked(stack, reason)) {
1628 return mStackSupervisor.resumeTopActivitiesLocked(stack, prev, null);
1629 }
1630 }
1631 // Let's just start up the Launcher...
Craig Mautnerde4ef022013-04-07 19:01:33 -07001632 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001633 if (DEBUG_STATES) Slog.d(TAG_STATES,
1634 "resumeTopActivityLocked: No more activities go home");
Craig Mautnercf910b02013-04-23 11:23:27 -07001635 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnere0a38842013-12-16 16:14:02 -08001636 // Only resume home if on home display
Craig Mautner84984fa2014-06-19 11:19:20 -07001637 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1638 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1639 return isOnHomeDisplay() &&
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001640 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001641 }
1642
1643 next.delayedResume = false;
Craig Mautner58547802013-03-05 08:23:53 -08001644
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001645 // If the top activity is the resumed one, nothing to do.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001646 if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
1647 mStackSupervisor.allResumedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001648 // Make sure we have executed any pending transitions, since there
1649 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001650 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001651 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001652 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001653 if (DEBUG_STATES) Slog.d(TAG_STATES,
1654 "resumeTopActivityLocked: Top activity resumed " + next);
Craig Mautnercf910b02013-04-23 11:23:27 -07001655 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001656 return false;
1657 }
1658
Craig Mautner525f3d92013-05-07 14:01:50 -07001659 final TaskRecord nextTask = next.task;
bulicccd230712014-05-12 14:34:50 -07001660 if (prevTask != null && prevTask.stack == this &&
Craig Mautner84984fa2014-06-19 11:19:20 -07001661 prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001662 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautner525f3d92013-05-07 14:01:50 -07001663 if (prevTask == nextTask) {
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08001664 prevTask.setFrontOfTask();
Craig Mautner525f3d92013-05-07 14:01:50 -07001665 } else if (prevTask != topTask()) {
Craig Mautner84984fa2014-06-19 11:19:20 -07001666 // This task is going away but it was supposed to return to the home stack.
Craig Mautnere418ecd2013-05-01 17:02:29 -07001667 // Now the task above it has to return to the home task instead.
Craig Mautner525f3d92013-05-07 14:01:50 -07001668 final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07001669 mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
louis_chang2d094e92015-01-21 19:01:52 +08001670 } else if (!isOnHomeDisplay()) {
1671 return false;
1672 } else if (!isHomeStack()){
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001673 if (DEBUG_STATES) Slog.d(TAG_STATES,
Craig Mautnere0a38842013-12-16 16:14:02 -08001674 "resumeTopActivityLocked: Launching home next");
Craig Mautner84984fa2014-06-19 11:19:20 -07001675 final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
1676 HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
1677 return isOnHomeDisplay() &&
Craig Mautner3c878f22015-01-26 13:57:19 -08001678 mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
Craig Mautnere418ecd2013-05-01 17:02:29 -07001679 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001680 }
1681
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001682 // If we are sleeping, and there is no resumed activity, and the top
1683 // activity is paused, well that is the state we want.
Craig Mautner5314a402013-09-26 12:40:16 -07001684 if (mService.isSleepingOrShuttingDown()
p13451dbad2872012-04-18 11:39:23 +09001685 && mLastPausedActivity == next
Craig Mautner5314a402013-09-26 12:40:16 -07001686 && mStackSupervisor.allPausedActivitiesComplete()) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001687 // Make sure we have executed any pending transitions, since there
1688 // should be nothing left to do at this point.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001689 mWindowManager.executeAppTransition();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001690 mNoAnimActivities.clear();
Dianne Hackborn84375872012-06-01 19:03:50 -07001691 ActivityOptions.abort(options);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001692 if (DEBUG_STATES) Slog.d(TAG_STATES,
1693 "resumeTopActivityLocked: Going to sleep and all paused");
Craig Mautnercf910b02013-04-23 11:23:27 -07001694 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001695 return false;
1696 }
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001697
1698 // Make sure that the user who owns this activity is started. If not,
1699 // we will just leave it as is because someone should be bringing
1700 // another user's activities to the top of the stack.
1701 if (mService.mStartedUsers.get(next.userId) == null) {
1702 Slog.w(TAG, "Skipping resume of top activity " + next
1703 + ": user " + next.userId + " is stopped");
Craig Mautnercf910b02013-04-23 11:23:27 -07001704 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn80a4af22012-08-27 19:18:31 -07001705 return false;
1706 }
1707
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001708 // The activity may be waiting for stop, but that is no longer
1709 // appropriate for it.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001710 mStackSupervisor.mStoppingActivities.remove(next);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001711 mStackSupervisor.mGoingToSleepActivities.remove(next);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001712 next.sleeping = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001713 mStackSupervisor.mWaitingVisibleActivities.remove(next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001714
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001715 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001716
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001717 // If we are currently pausing an activity, then don't do anything
1718 // until that is done.
Craig Mautner69ada552013-04-18 13:51:51 -07001719 if (!mStackSupervisor.allPausedActivitiesComplete()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001720 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001721 "resumeTopActivityLocked: Skip resume: some activity pausing.");
Craig Mautnercf910b02013-04-23 11:23:27 -07001722 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001723 return false;
1724 }
1725
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001726 // Okay we are now going to start a switch, to 'next'. We may first
1727 // have to pause the current activity, but this is an important point
1728 // where we have decided to go to 'next' so keep track of that.
Dianne Hackborn034093a42010-09-20 22:24:38 -07001729 // XXX "App Redirected" dialog is getting too many false positives
1730 // at this point, so turn off for now.
1731 if (false) {
1732 if (mLastStartedActivity != null && !mLastStartedActivity.finishing) {
1733 long now = SystemClock.uptimeMillis();
1734 final boolean inTime = mLastStartedActivity.startTime != 0
1735 && (mLastStartedActivity.startTime + START_WARN_TIME) >= now;
1736 final int lastUid = mLastStartedActivity.info.applicationInfo.uid;
1737 final int nextUid = next.info.applicationInfo.uid;
1738 if (inTime && lastUid != nextUid
1739 && lastUid != next.launchedFromUid
1740 && mService.checkPermission(
1741 android.Manifest.permission.STOP_APP_SWITCHES,
1742 -1, next.launchedFromUid)
1743 != PackageManager.PERMISSION_GRANTED) {
1744 mService.showLaunchWarningLocked(mLastStartedActivity, next);
1745 } else {
1746 next.startTime = now;
1747 mLastStartedActivity = next;
1748 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001749 } else {
Dianne Hackborn034093a42010-09-20 22:24:38 -07001750 next.startTime = SystemClock.uptimeMillis();
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001751 mLastStartedActivity = next;
1752 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -07001753 }
Craig Mautner58547802013-03-05 08:23:53 -08001754
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001755 mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
1756
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001757 // We need to start pausing the current activity so the top one
1758 // can be resumed...
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001759 boolean dontWaitForPause = (next.info.flags&ActivityInfo.FLAG_RESUME_WHILE_PAUSING) != 0;
1760 boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001761 if (mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001762 if (DEBUG_STATES) Slog.d(TAG_STATES,
1763 "resumeTopActivityLocked: Pausing " + mResumedActivity);
Craig Mautnere042bf22014-11-11 11:28:43 -08001764 pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
Craig Mautnereb957862013-04-24 15:34:32 -07001765 }
1766 if (pausing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001767 if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
Craig Mautnerac6f8432013-07-17 13:24:59 -07001768 "resumeTopActivityLocked: Skip resume: need to start pausing");
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001769 // At this point we want to put the upcoming activity's process
1770 // at the top of the LRU list, since we know we will be needing it
1771 // very soon and it would be a waste to let it get killed if it
1772 // happens to be sitting towards the end.
1773 if (next.app != null && next.app.thread != null) {
Dianne Hackborndb926082013-10-31 16:32:44 -07001774 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackbornad9b32112012-09-17 15:35:01 -07001775 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001776 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001777 return true;
1778 }
1779
Christopher Tated3f175c2012-06-14 14:16:54 -07001780 // If the most recent activity was noHistory but was only stopped rather
1781 // than stopped+finished because the device went to sleep, we need to make
1782 // sure to finish it as we're making a new activity topmost.
Dianne Hackborn91097de2014-04-04 18:02:06 -07001783 if (mService.isSleeping() && mLastNoHistoryActivity != null &&
Craig Mautner0f922742013-08-06 08:44:42 -07001784 !mLastNoHistoryActivity.finishing) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001785 if (DEBUG_STATES) Slog.d(TAG_STATES,
1786 "no-history finish of " + mLastNoHistoryActivity + " on new resume");
Craig Mautner0f922742013-08-06 08:44:42 -07001787 requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
Todd Kennedy539db512014-12-15 09:57:55 -08001788 null, "resume-no-history", false);
Craig Mautner0f922742013-08-06 08:44:42 -07001789 mLastNoHistoryActivity = null;
Christopher Tated3f175c2012-06-14 14:16:54 -07001790 }
1791
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001792 if (prev != null && prev != next) {
Craig Mautner8c14c152015-01-15 17:32:07 -08001793 if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1794 && next != null && !next.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001795 mStackSupervisor.mWaitingVisibleActivities.add(prev);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001796 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1797 "Resuming top, waiting visible to hide: " + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001798 } else {
1799 // The next activity is already visible, so hide the previous
1800 // activity's windows right now so we can show the new one ASAP.
1801 // We only do this if the previous is finishing, which should mean
1802 // it is on top of the one being resumed so hiding it quickly
1803 // is good. Otherwise, we want to do the normal route of allowing
1804 // the resumed activity to be shown so we can decide if the
1805 // previous should actually be hidden depending on whether the
1806 // new one is found to be full-screen or not.
1807 if (prev.finishing) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001808 mWindowManager.setAppVisibility(prev.appToken, false);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001809 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1810 "Not waiting for visible to hide: " + prev + ", waitingVisible="
Craig Mautner8c14c152015-01-15 17:32:07 -08001811 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001812 + ", nowVisible=" + next.nowVisible);
1813 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001814 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
Craig Mautner8c14c152015-01-15 17:32:07 -08001815 "Previous already visible but still waiting to hide: " + prev
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001816 + ", waitingVisible="
1817 + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
1818 + ", nowVisible=" + next.nowVisible);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001819 }
1820 }
1821 }
1822
Dianne Hackborne7f97212011-02-24 14:40:20 -08001823 // Launching this app's activity, make sure the app is no longer
1824 // considered stopped.
1825 try {
1826 AppGlobals.getPackageManager().setPackageStoppedState(
Amith Yamasani483f3b02012-03-13 16:08:00 -07001827 next.packageName, false, next.userId); /* TODO: Verify if correct userid */
Dianne Hackborne7f97212011-02-24 14:40:20 -08001828 } catch (RemoteException e1) {
Dianne Hackborna925cd42011-03-10 13:18:20 -08001829 } catch (IllegalArgumentException e) {
1830 Slog.w(TAG, "Failed trying to unstop package "
1831 + next.packageName + ": " + e);
Dianne Hackborne7f97212011-02-24 14:40:20 -08001832 }
1833
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001834 // We are starting up the next activity, so tell the window manager
1835 // that the previous one will be hidden soon. This way it can know
1836 // to ignore it when computing the desired screen orientation.
Craig Mautner525f3d92013-05-07 14:01:50 -07001837 boolean anim = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001838 if (prev != null) {
1839 if (prev.finishing) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001840 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001841 "Prepare close transition: prev=" + prev);
1842 if (mNoAnimActivities.contains(prev)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001843 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001844 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001845 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001846 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001847 ? AppTransition.TRANSIT_ACTIVITY_CLOSE
1848 : AppTransition.TRANSIT_TASK_CLOSE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001849 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001850 mWindowManager.setAppWillBeHidden(prev.appToken);
1851 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001852 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001853 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
1854 "Prepare open transition: prev=" + prev);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001855 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001856 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001857 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001858 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001859 mWindowManager.prepareAppTransition(prev.task == next.task
Craig Mautner4b71aa12012-12-27 17:20:01 -08001860 ? AppTransition.TRANSIT_ACTIVITY_OPEN
Craig Mautnerbb742462014-07-07 15:28:55 -07001861 : next.mLaunchTaskBehind
1862 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
1863 : AppTransition.TRANSIT_TASK_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001864 }
1865 }
1866 if (false) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001867 mWindowManager.setAppWillBeHidden(prev.appToken);
1868 mWindowManager.setAppVisibility(prev.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001869 }
Craig Mautner967212c2013-04-13 21:10:58 -07001870 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001871 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001872 if (mNoAnimActivities.contains(next)) {
Craig Mautner525f3d92013-05-07 14:01:50 -07001873 anim = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001874 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001875 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001876 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_ACTIVITY_OPEN, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001877 }
1878 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001879
1880 Bundle resumeAnimOptions = null;
Craig Mautner525f3d92013-05-07 14:01:50 -07001881 if (anim) {
Adam Powellcfbe9be2013-11-06 14:58:58 -08001882 ActivityOptions opts = next.getOptionsForTargetActivityLocked();
1883 if (opts != null) {
1884 resumeAnimOptions = opts.toBundle();
1885 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001886 next.applyOptionsLocked();
1887 } else {
1888 next.clearOptionsLocked();
1889 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001890
Craig Mautnercf910b02013-04-23 11:23:27 -07001891 ActivityStack lastStack = mStackSupervisor.getLastStack();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001892 if (next.app != null && next.app.thread != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001893 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001894
1895 // This activity is now becoming visible.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001896 mWindowManager.setAppVisibility(next.appToken, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001897
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001898 // schedule launch ticks to collect information about slow apps.
1899 next.startLaunchTickingLocked();
1900
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001901 ActivityRecord lastResumedActivity =
1902 lastStack == null ? null :lastStack.mResumedActivity;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001903 ActivityState lastState = next.state;
1904
1905 mService.updateCpuStats();
Craig Mautner58547802013-03-05 08:23:53 -08001906
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001907 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001908 next.state = ActivityState.RESUMED;
1909 mResumedActivity = next;
1910 next.task.touchActiveTime();
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08001911 mRecentTasks.addLocked(next.task);
Dianne Hackborndb926082013-10-31 16:32:44 -07001912 mService.updateLruProcessLocked(next.app, true, null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001913 updateLRUListLocked(next);
Dianne Hackborndb926082013-10-31 16:32:44 -07001914 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001915
1916 // Have the window manager re-evaluate the orientation of
1917 // the screen based on the new activity order.
Craig Mautner525f3d92013-05-07 14:01:50 -07001918 boolean notUpdated = true;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001919 if (mStackSupervisor.isFrontStack(this)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001920 Configuration config = mWindowManager.updateOrientationFromAppTokens(
Craig Mautner8d341ef2013-03-26 09:03:27 -07001921 mService.mConfiguration,
1922 next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
1923 if (config != null) {
1924 next.frozenBeforeDestroy = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001925 }
Maxim Bogatov05075302015-05-19 18:33:08 -07001926 notUpdated = !mService.updateConfigurationLocked(config, next, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001927 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001928
Craig Mautner525f3d92013-05-07 14:01:50 -07001929 if (notUpdated) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001930 // The configuration update wasn't able to keep the existing
1931 // instance of the activity, and instead started a new one.
1932 // We should be all done, but let's just make sure our activity
1933 // is still at the top and schedule another run if something
1934 // weird happened.
1935 ActivityRecord nextNext = topRunningActivityLocked(null);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001936 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001937 "Activity config changed during resume: " + next
1938 + ", new next: " + nextNext);
1939 if (nextNext != next) {
1940 // Do over!
Craig Mautner05d29032013-05-03 13:40:13 -07001941 mStackSupervisor.scheduleResumeTopActivities();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001942 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001943 if (mStackSupervisor.reportResumedActivityLocked(next)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07001944 mNoAnimActivities.clear();
Craig Mautnercf910b02013-04-23 11:23:27 -07001945 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001946 return true;
1947 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001948 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001949 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001950 }
Craig Mautner58547802013-03-05 08:23:53 -08001951
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001952 try {
1953 // Deliver all pending results.
Craig Mautner05d6272ba2013-02-11 09:39:27 -08001954 ArrayList<ResultInfo> a = next.results;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001955 if (a != null) {
1956 final int N = a.size();
1957 if (!next.finishing && N > 0) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001958 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
1959 "Delivering results to " + next + ": " + a);
Dianne Hackbornbe707852011-11-11 14:32:10 -08001960 next.app.thread.scheduleSendResult(next.appToken, a);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001961 }
1962 }
1963
1964 if (next.newIntents != null) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001965 next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001966 }
1967
Craig Mautner299f9602015-01-26 09:47:33 -08001968 EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
1969 System.identityHashCode(next), next.task.taskId, next.shortComponentName);
Craig Mautner58547802013-03-05 08:23:53 -08001970
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001971 next.sleeping = false;
Craig Mautner2420ead2013-04-01 17:13:20 -07001972 mService.showAskCompatModeDialogLocked(next);
Dianne Hackborn905577f2011-09-07 18:31:28 -07001973 next.app.pendingUiClean = true;
Dianne Hackborn4870e9d2015-04-08 16:55:47 -07001974 next.app.forceProcessStateUpTo(mService.mTopProcessState);
George Mount2c92c972014-03-20 09:38:23 -07001975 next.clearOptionsLocked();
Dianne Hackborna413dc02013-07-12 12:02:55 -07001976 next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
Adam Powellcfbe9be2013-11-06 14:58:58 -08001977 mService.isNextTransitionForward(), resumeAnimOptions);
Craig Mautner58547802013-03-05 08:23:53 -08001978
Craig Mautner0eea92c2013-05-16 13:35:39 -07001979 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001980
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001981 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001982 } catch (Exception e) {
1983 // Whoops, need to restart this activity!
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001984 if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
Dianne Hackbornce86ba82011-07-13 19:33:41 -07001985 + lastState + ": " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001986 next.state = lastState;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001987 if (lastStack != null) {
1988 lastStack.mResumedActivity = lastResumedActivity;
1989 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001990 Slog.i(TAG, "Restarting because process died: " + next);
1991 if (!next.hasBeenLaunched) {
1992 next.hasBeenLaunched = true;
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001993 } else if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
1994 mStackSupervisor.isFrontStack(lastStack)) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001995 mWindowManager.setAppStartingWindow(
Craig Mautnerf88c50f2013-04-18 19:25:12 -07001996 next.appToken, next.packageName, next.theme,
1997 mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
Adam Powell04fe6eb2013-05-31 14:39:48 -07001998 next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
1999 next.windowFlags, null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002000 }
George Mount2c92c972014-03-20 09:38:23 -07002001 mStackSupervisor.startSpecificActivityLocked(next, true, false);
Craig Mautnercf910b02013-04-23 11:23:27 -07002002 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002003 return true;
2004 }
2005
2006 // From this point on, if something goes wrong there is no way
2007 // to recover the activity.
2008 try {
2009 next.visible = true;
2010 completeResumeLocked(next);
2011 } catch (Exception e) {
2012 // If any exception gets thrown, toss away this
2013 // activity and try the next one.
2014 Slog.w(TAG, "Exception thrown during resume of " + next, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002015 requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002016 "resume-exception", true);
Craig Mautnercf910b02013-04-23 11:23:27 -07002017 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002018 return true;
2019 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002020 next.stopped = false;
2021
2022 } else {
2023 // Whoops, need to restart this activity!
2024 if (!next.hasBeenLaunched) {
2025 next.hasBeenLaunched = true;
2026 } else {
2027 if (SHOW_APP_STARTING_PREVIEW) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002028 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002029 next.appToken, next.packageName, next.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002030 mService.compatibilityInfoForPackageLocked(
2031 next.info.applicationInfo),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002032 next.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002033 next.labelRes, next.icon, next.logo, next.windowFlags,
Dianne Hackborn7eec10e2010-11-12 18:03:47 -08002034 null, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002035 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002036 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002037 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002038 if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
George Mount2c92c972014-03-20 09:38:23 -07002039 mStackSupervisor.startSpecificActivityLocked(next, true, true);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002040 }
2041
Craig Mautnercf910b02013-04-23 11:23:27 -07002042 if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002043 return true;
2044 }
2045
riddle_hsuc215a4f2014-12-27 12:10:45 +08002046 private TaskRecord getNextTask(TaskRecord targetTask) {
2047 final int index = mTaskHistory.indexOf(targetTask);
2048 if (index >= 0) {
2049 final int numTasks = mTaskHistory.size();
2050 for (int i = index + 1; i < numTasks; ++i) {
2051 TaskRecord task = mTaskHistory.get(i);
2052 if (task.userId == targetTask.userId) {
2053 return task;
2054 }
2055 }
2056 }
2057 return null;
2058 }
2059
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002060 private void insertTaskAtPosition(TaskRecord task, int position) {
2061 if (position >= mTaskHistory.size()) {
2062 insertTaskAtTop(task, null);
2063 return;
2064 }
2065 // Calculate maximum possible position for this task.
2066 int maxPosition = mTaskHistory.size();
2067 if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
2068 && task.topRunningActivityLocked(null) == null) {
2069 // Put non-current user tasks below current user tasks.
2070 while (maxPosition > 0) {
2071 final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2072 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2073 || tmpTask.topRunningActivityLocked(null) == null) {
2074 break;
2075 }
2076 maxPosition--;
2077 }
2078 }
2079 position = Math.min(position, maxPosition);
2080 mTaskHistory.remove(task);
2081 mTaskHistory.add(position, task);
2082 updateTaskMovement(task, true);
2083 }
2084
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002085 private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
riddle_hsuc215a4f2014-12-27 12:10:45 +08002086 // If the moving task is over home stack, transfer its return type to next task
2087 if (task.isOverHomeStack()) {
2088 final TaskRecord nextTask = getNextTask(task);
2089 if (nextTask != null) {
2090 nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2091 }
2092 }
2093
Craig Mautner9c85c202013-10-04 20:11:26 -07002094 // If this is being moved to the top by another activity or being launched from the home
riddle_hsuc215a4f2014-12-27 12:10:45 +08002095 // activity, set mTaskToReturnTo accordingly.
Craig Mautnere0a38842013-12-16 16:14:02 -08002096 if (isOnHomeDisplay()) {
2097 ActivityStack lastStack = mStackSupervisor.getLastStack();
2098 final boolean fromHome = lastStack.isHomeStack();
2099 if (!isHomeStack() && (fromHome || topTask() != task)) {
Craig Mautner3b1dac82014-07-15 09:51:33 -07002100 task.setTaskToReturnTo(fromHome
2101 ? lastStack.topTask() == null
2102 ? HOME_ACTIVITY_TYPE
2103 : lastStack.topTask().taskType
2104 : APPLICATION_ACTIVITY_TYPE);
Craig Mautnere0a38842013-12-16 16:14:02 -08002105 }
2106 } else {
Craig Mautner84984fa2014-06-19 11:19:20 -07002107 task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner9c85c202013-10-04 20:11:26 -07002108 }
Craig Mautnerd99384d2013-10-14 07:09:18 -07002109
Craig Mautnerac6f8432013-07-17 13:24:59 -07002110 mTaskHistory.remove(task);
2111 // Now put task at top.
Craig Mautnerbb742462014-07-07 15:28:55 -07002112 int taskNdx = mTaskHistory.size();
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002113 final boolean notShownWhenLocked =
Wale Ogunwale6dfdfd62015-04-15 12:01:38 -07002114 (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002115 || (newActivity == null && task.topRunningActivityLocked(null) == null);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002116 if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002117 // Put non-current user tasks below current user tasks.
Craig Mautnerbb742462014-07-07 15:28:55 -07002118 while (--taskNdx >= 0) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002119 final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07002120 if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002121 || tmpTask.topRunningActivityLocked(null) == null) {
Craig Mautnerac6f8432013-07-17 13:24:59 -07002122 break;
2123 }
2124 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002125 ++taskNdx;
Craig Mautnerac6f8432013-07-17 13:24:59 -07002126 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002127 mTaskHistory.add(taskNdx, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002128 updateTaskMovement(task, true);
Craig Mautnerac6f8432013-07-17 13:24:59 -07002129 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08002130
Craig Mautner8849a5e2013-04-02 16:41:03 -07002131 final void startActivityLocked(ActivityRecord r, boolean newTask,
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07002132 boolean doResume, boolean keepCurTransition, Bundle options) {
Craig Mautnerd2328952013-03-05 12:46:26 -08002133 TaskRecord rTask = r.task;
2134 final int taskId = rTask.taskId;
Craig Mautnerbb742462014-07-07 15:28:55 -07002135 // mLaunchTaskBehind tasks get placed at the back of the task stack.
2136 if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
Craig Mautner77878772013-03-04 19:46:24 -08002137 // Last activity in task had been removed or ActivityManagerService is reusing task.
2138 // Insert or replace.
Craig Mautner77878772013-03-04 19:46:24 -08002139 // Might not even be in.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07002140 insertTaskAtTop(rTask, r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002141 mWindowManager.moveTaskToTop(taskId);
Craig Mautner77878772013-03-04 19:46:24 -08002142 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002143 TaskRecord task = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002144 if (!newTask) {
2145 // If starting in an existing task, find where that is...
Craig Mautner70a86932013-02-28 22:37:44 -08002146 boolean startIt = true;
2147 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2148 task = mTaskHistory.get(taskNdx);
riddle_hsu9bcc6e82014-07-31 00:26:51 +08002149 if (task.getTopActivity() == null) {
2150 // All activities in task are finishing.
2151 continue;
2152 }
Craig Mautner70a86932013-02-28 22:37:44 -08002153 if (task == r.task) {
2154 // Here it is! Now, if this is not yet visible to the
2155 // user, then just add it without starting; it will
2156 // get started when the user navigates back to it.
Craig Mautner70a86932013-02-28 22:37:44 -08002157 if (!startIt) {
2158 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2159 + task, new RuntimeException("here").fillInStackTrace());
2160 task.addActivityToTop(r);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002161 r.putInHistory();
Wale Ogunwale706ed792015-08-02 10:29:44 -07002162 addAppToken(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002163 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002164 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002165 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002166 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002167 return;
2168 }
2169 break;
Craig Mautner70a86932013-02-28 22:37:44 -08002170 } else if (task.numFullscreen > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002171 startIt = false;
2172 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002173 }
2174 }
2175
2176 // Place a new activity at top of stack, so it is next to interact
2177 // with the user.
Craig Mautner70a86932013-02-28 22:37:44 -08002178
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002179 // If we are not placing the new activity frontmost, we do not want
2180 // to deliver the onUserLeaving callback to the actual frontmost
2181 // activity
Craig Mautner70a86932013-02-28 22:37:44 -08002182 if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002183 mStackSupervisor.mUserLeaving = false;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002184 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
Craig Mautner70a86932013-02-28 22:37:44 -08002185 "startActivity() behind front, mUserLeaving=false");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002186 }
Craig Mautner70a86932013-02-28 22:37:44 -08002187
2188 task = r.task;
2189
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002190 // Slot the activity into the history stack and proceed
Craig Mautner70a86932013-02-28 22:37:44 -08002191 if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
Craig Mautner56f52db2013-02-25 10:03:01 -08002192 new RuntimeException("here").fillInStackTrace());
Craig Mautner70a86932013-02-28 22:37:44 -08002193 task.addActivityToTop(r);
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002194 task.setFrontOfTask();
Craig Mautner70a86932013-02-28 22:37:44 -08002195
Dianne Hackbornf26fd992011-04-08 18:14:09 -07002196 r.putInHistory();
Craig Mautnerde4ef022013-04-07 19:01:33 -07002197 if (!isHomeStack() || numActivities() > 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002198 // We want to show the starting preview window if we are
2199 // switching to a new task, or the next activity's process is
2200 // not currently running.
2201 boolean showStartingIcon = newTask;
2202 ProcessRecord proc = r.app;
2203 if (proc == null) {
2204 proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2205 }
2206 if (proc == null || proc.thread == null) {
2207 showStartingIcon = true;
2208 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002209 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002210 "Prepare open transition: starting " + r);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002211 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002212 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002213 mNoAnimActivities.add(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002214 } else {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002215 mWindowManager.prepareAppTransition(newTask
Craig Mautnerbb742462014-07-07 15:28:55 -07002216 ? r.mLaunchTaskBehind
2217 ? AppTransition.TRANSIT_TASK_OPEN_BEHIND
2218 : AppTransition.TRANSIT_TASK_OPEN
Craig Mautner4b71aa12012-12-27 17:20:01 -08002219 : AppTransition.TRANSIT_ACTIVITY_OPEN, keepCurTransition);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002220 mNoAnimActivities.remove(r);
2221 }
Wale Ogunwale706ed792015-08-02 10:29:44 -07002222 addAppToken(r, task);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002223 boolean doShow = true;
2224 if (newTask) {
2225 // Even though this activity is starting fresh, we still need
2226 // to reset it to make sure we apply affinities to move any
2227 // existing activities from other tasks in to it.
2228 // If the caller has requested that the target task be
2229 // reset, then do so.
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002230 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002231 resetTaskIfNeededLocked(r, r);
2232 doShow = topRunningNonDelayedActivityLocked(null) == r;
2233 }
George Mount70778d72014-07-01 16:33:45 -07002234 } else if (options != null && new ActivityOptions(options).getAnimationType()
2235 == ActivityOptions.ANIM_SCENE_TRANSITION) {
2236 doShow = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002237 }
Craig Mautnerbb742462014-07-07 15:28:55 -07002238 if (r.mLaunchTaskBehind) {
2239 // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2240 // tell WindowManager that r is visible even though it is at the back of the stack.
2241 mWindowManager.setAppVisibility(r.appToken, true);
2242 ensureActivitiesVisibleLocked(null, 0);
2243 } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002244 // Figure out if we are transitioning from another activity that is
2245 // "has the same starting icon" as the next one. This allows the
2246 // window manager to keep the previous window it had previously
2247 // created, if it still had one.
2248 ActivityRecord prev = mResumedActivity;
2249 if (prev != null) {
2250 // We don't want to reuse the previous starting preview if:
2251 // (1) The current activity is in a different task.
Craig Mautner29219d92013-04-16 20:19:12 -07002252 if (prev.task != r.task) {
2253 prev = null;
2254 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002255 // (2) The current activity is already displayed.
Craig Mautner29219d92013-04-16 20:19:12 -07002256 else if (prev.nowVisible) {
2257 prev = null;
2258 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002259 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002260 mWindowManager.setAppStartingWindow(
Dianne Hackbornbe707852011-11-11 14:32:10 -08002261 r.appToken, r.packageName, r.theme,
Dianne Hackborn2f0b1752011-05-31 17:59:49 -07002262 mService.compatibilityInfoForPackageLocked(
2263 r.info.applicationInfo), r.nonLocalizedLabel,
Adam Powell04fe6eb2013-05-31 14:39:48 -07002264 r.labelRes, r.icon, r.logo, r.windowFlags,
Dianne Hackbornbe707852011-11-11 14:32:10 -08002265 prev != null ? prev.appToken : null, showStartingIcon);
Craig Mautnera61bc652013-10-28 15:43:18 -07002266 r.mStartingWindowShown = true;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002267 }
2268 } else {
2269 // If this is the first activity, don't do any fancy animations,
2270 // because there is nothing for it to animate on top of.
Wale Ogunwale706ed792015-08-02 10:29:44 -07002271 addAppToken(r, task);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07002272 ActivityOptions.abort(options);
Craig Mautner233ceee2014-05-09 17:05:11 -07002273 options = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002274 }
2275 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08002276 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002277 }
2278
2279 if (doResume) {
Craig Mautner233ceee2014-05-09 17:05:11 -07002280 mStackSupervisor.resumeTopActivitiesLocked(this, r, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002281 }
2282 }
2283
Dianne Hackbornbe707852011-11-11 14:32:10 -08002284 final void validateAppTokensLocked() {
2285 mValidateAppTokens.clear();
Craig Mautner000f0022013-02-26 15:04:29 -08002286 mValidateAppTokens.ensureCapacity(numActivities());
2287 final int numTasks = mTaskHistory.size();
2288 for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2289 TaskRecord task = mTaskHistory.get(taskNdx);
2290 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerc8143c62013-09-03 12:15:57 -07002291 if (activities.isEmpty()) {
Craig Mautner000f0022013-02-26 15:04:29 -08002292 continue;
Craig Mautnerb1fd65c02013-02-05 13:34:57 -08002293 }
Craig Mautner000f0022013-02-26 15:04:29 -08002294 TaskGroup group = new TaskGroup();
2295 group.taskId = task.taskId;
2296 mValidateAppTokens.add(group);
2297 final int numActivities = activities.size();
2298 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2299 final ActivityRecord r = activities.get(activityNdx);
2300 group.tokens.add(r.appToken);
2301 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002302 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002303 mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
Dianne Hackbornbe707852011-11-11 14:32:10 -08002304 }
2305
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002306 /**
2307 * Perform a reset of the given task, if needed as part of launching it.
2308 * Returns the new HistoryRecord at the top of the task.
2309 */
Craig Mautnere3a74d52013-02-22 14:14:58 -08002310 /**
2311 * Helper method for #resetTaskIfNeededLocked.
2312 * We are inside of the task being reset... we'll either finish this activity, push it out
2313 * for another task, or leave it as-is.
2314 * @param task The task containing the Activity (taskTop) that might be reset.
2315 * @param forceReset
2316 * @return An ActivityOptions that needs to be processed.
2317 */
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002318 final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002319 ActivityOptions topOptions = null;
2320
2321 int replyChainEnd = -1;
2322 boolean canMoveOptions = true;
2323
2324 // We only do this for activities that are not the root of the task (since if we finish
2325 // the root, we may no longer have the task!).
2326 final ArrayList<ActivityRecord> activities = task.mActivities;
2327 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002328 final int rootActivityNdx = task.findEffectiveRootIndex();
2329 for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002330 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002331 if (target.frontOfTask)
2332 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002333
2334 final int flags = target.info.flags;
2335 final boolean finishOnTaskLaunch =
2336 (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2337 final boolean allowTaskReparenting =
2338 (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2339 final boolean clearWhenTaskReset =
2340 (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2341
2342 if (!finishOnTaskLaunch
2343 && !clearWhenTaskReset
2344 && target.resultTo != null) {
2345 // If this activity is sending a reply to a previous
2346 // activity, we can't do anything with it now until
2347 // we reach the start of the reply chain.
2348 // XXX note that we are assuming the result is always
2349 // to the previous activity, which is almost always
2350 // the case but we really shouldn't count on.
2351 if (replyChainEnd < 0) {
2352 replyChainEnd = i;
2353 }
2354 } else if (!finishOnTaskLaunch
2355 && !clearWhenTaskReset
2356 && allowTaskReparenting
2357 && target.taskAffinity != null
2358 && !target.taskAffinity.equals(task.affinity)) {
2359 // If this activity has an affinity for another
2360 // task, then we need to move it out of here. We will
2361 // move it as far out of the way as possible, to the
2362 // bottom of the activity stack. This also keeps it
2363 // correctly ordered with any activities we previously
2364 // moved.
Craig Mautner329f4122013-11-07 09:10:42 -08002365 final TaskRecord targetTask;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002366 final ActivityRecord bottom =
2367 !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
Craig Mautner329f4122013-11-07 09:10:42 -08002368 mTaskHistory.get(0).mActivities.get(0) : null;
Craig Mautnerdccb7702013-09-17 15:53:34 -07002369 if (bottom != null && target.taskAffinity != null
2370 && target.taskAffinity.equals(bottom.task.affinity)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002371 // If the activity currently at the bottom has the
2372 // same task affinity as the one we are moving,
2373 // then merge it into the same task.
Craig Mautner329f4122013-11-07 09:10:42 -08002374 targetTask = bottom.task;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002375 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnerdccb7702013-09-17 15:53:34 -07002376 + " out to bottom task " + bottom.task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002377 } else {
Craig Mautner329f4122013-11-07 09:10:42 -08002378 targetTask = createTaskRecord(mStackSupervisor.getNextTaskId(), target.info,
Dianne Hackborn91097de2014-04-04 18:02:06 -07002379 null, null, null, false);
Craig Mautner329f4122013-11-07 09:10:42 -08002380 targetTask.affinityIntent = target.intent;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002381 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
Craig Mautnere3a74d52013-02-22 14:14:58 -08002382 + " out to new task " + target.task);
2383 }
2384
Wale Ogunwale706ed792015-08-02 10:29:44 -07002385 setAppTask(target, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002386
Craig Mautner525f3d92013-05-07 14:01:50 -07002387 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002388 final int start = replyChainEnd < 0 ? i : replyChainEnd;
2389 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnerdccb7702013-09-17 15:53:34 -07002390 final ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002391 if (p.finishing) {
2392 continue;
2393 }
2394
Craig Mautnere3a74d52013-02-22 14:14:58 -08002395 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002396 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002397 topOptions = p.takeOptionsLocked();
2398 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002399 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002400 }
2401 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002402 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2403 "Removing activity " + p + " from task=" + task + " adding to task="
2404 + targetTask + " Callers=" + Debug.getCallers(4));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002405 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2406 "Pushing next activity " + p + " out to target's task " + target.task);
Craig Mautnera228ae92014-07-09 05:44:55 -07002407 p.setTask(targetTask, null);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002408 targetTask.addActivityAtBottom(p);
Craig Mautner0247fc82013-02-28 14:32:06 -08002409
Wale Ogunwale706ed792015-08-02 10:29:44 -07002410 setAppTask(p, targetTask);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002411 }
2412
Wale Ogunwale706ed792015-08-02 10:29:44 -07002413 mWindowManager.moveTaskToBottom(targetTask.taskId);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002414 if (VALIDATE_TOKENS) {
2415 validateAppTokensLocked();
2416 }
2417
2418 replyChainEnd = -1;
2419 } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2420 // If the activity should just be removed -- either
2421 // because it asks for it, or the task should be
2422 // cleared -- then finish it and anything that is
2423 // part of its reply chain.
2424 int end;
2425 if (clearWhenTaskReset) {
2426 // In this case, we want to finish this activity
2427 // and everything above it, so be sneaky and pretend
2428 // like these are all in the reply chain.
Mark Lu4b5a9a02014-12-09 14:47:13 +08002429 end = activities.size() - 1;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002430 } else if (replyChainEnd < 0) {
2431 end = i;
2432 } else {
2433 end = replyChainEnd;
2434 }
Craig Mautner525f3d92013-05-07 14:01:50 -07002435 boolean noOptions = canMoveOptions;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002436 for (int srcPos = i; srcPos <= end; srcPos++) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002437 ActivityRecord p = activities.get(srcPos);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002438 if (p.finishing) {
2439 continue;
2440 }
2441 canMoveOptions = false;
Craig Mautner525f3d92013-05-07 14:01:50 -07002442 if (noOptions && topOptions == null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002443 topOptions = p.takeOptionsLocked();
2444 if (topOptions != null) {
Craig Mautner525f3d92013-05-07 14:01:50 -07002445 noOptions = false;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002446 }
2447 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002448 if (DEBUG_TASKS) Slog.w(TAG_TASKS,
Craig Mautner58547802013-03-05 08:23:53 -08002449 "resetTaskIntendedTask: calling finishActivity on " + p);
Todd Kennedy539db512014-12-15 09:57:55 -08002450 if (finishActivityLocked(
2451 p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002452 end--;
2453 srcPos--;
2454 }
2455 }
2456 replyChainEnd = -1;
2457 } else {
2458 // If we were in the middle of a chain, well the
2459 // activity that started it all doesn't want anything
2460 // special, so leave it all as-is.
2461 replyChainEnd = -1;
2462 }
2463 }
2464
2465 return topOptions;
2466 }
2467
2468 /**
2469 * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2470 * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2471 * @param affinityTask The task we are looking for an affinity to.
2472 * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2473 * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2474 * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2475 */
Craig Mautner525f3d92013-05-07 14:01:50 -07002476 private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
Craig Mautner77878772013-03-04 19:46:24 -08002477 boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002478 int replyChainEnd = -1;
2479 final int taskId = task.taskId;
2480 final String taskAffinity = task.affinity;
2481
2482 final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2483 final int numActivities = activities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07002484 final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2485
2486 // Do not operate on or below the effective root Activity.
2487 for (int i = numActivities - 1; i > rootActivityNdx; --i) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002488 ActivityRecord target = activities.get(i);
Craig Mautner76ae2f02014-07-16 16:16:19 +00002489 if (target.frontOfTask)
2490 break;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002491
2492 final int flags = target.info.flags;
2493 boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2494 boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2495
2496 if (target.resultTo != null) {
2497 // If this activity is sending a reply to a previous
2498 // activity, we can't do anything with it now until
2499 // we reach the start of the reply chain.
2500 // XXX note that we are assuming the result is always
2501 // to the previous activity, which is almost always
2502 // the case but we really shouldn't count on.
2503 if (replyChainEnd < 0) {
2504 replyChainEnd = i;
2505 }
2506 } else if (topTaskIsHigher
2507 && allowTaskReparenting
2508 && taskAffinity != null
2509 && taskAffinity.equals(target.taskAffinity)) {
2510 // This activity has an affinity for our task. Either remove it if we are
2511 // clearing or move it over to our task. Note that
2512 // we currently punt on the case where we are resetting a
2513 // task that is not at the top but who has activities above
2514 // with an affinity to it... this is really not a normal
2515 // case, and we will need to later pull that task to the front
2516 // and usually at that point we will do the reset and pick
2517 // up those remaining activities. (This only happens if
2518 // someone starts an activity in a new task from an activity
2519 // in a task that is not currently on top.)
2520 if (forceReset || finishOnTaskLaunch) {
2521 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002522 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2523 "Finishing task at index " + start + " to " + i);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002524 for (int srcPos = start; srcPos >= i; --srcPos) {
2525 final ActivityRecord p = activities.get(srcPos);
2526 if (p.finishing) {
2527 continue;
2528 }
Todd Kennedy539db512014-12-15 09:57:55 -08002529 finishActivityLocked(
2530 p, Activity.RESULT_CANCELED, null, "move-affinity", false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002531 }
2532 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002533 if (taskInsertionPoint < 0) {
2534 taskInsertionPoint = task.mActivities.size();
Craig Mautnerd2328952013-03-05 12:46:26 -08002535
Craig Mautner77878772013-03-04 19:46:24 -08002536 }
Craig Mautner77878772013-03-04 19:46:24 -08002537
2538 final int start = replyChainEnd >= 0 ? replyChainEnd : i;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002539 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2540 "Reparenting from task=" + affinityTask + ":" + start + "-" + i
2541 + " to task=" + task + ":" + taskInsertionPoint);
Craig Mautner77878772013-03-04 19:46:24 -08002542 for (int srcPos = start; srcPos >= i; --srcPos) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002543 final ActivityRecord p = activities.get(srcPos);
Craig Mautnera228ae92014-07-09 05:44:55 -07002544 p.setTask(task, null);
Craig Mautner77878772013-03-04 19:46:24 -08002545 task.addActivityAtIndex(taskInsertionPoint, p);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002546
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002547 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2548 "Removing and adding activity " + p + " to stack at " + task
2549 + " callers=" + Debug.getCallers(3));
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002550 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
2551 + " from " + srcPos + " in to resetting task " + task);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002552 setAppTask(p, task);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002553 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002554 mWindowManager.moveTaskToTop(taskId);
Craig Mautner9658b312013-02-28 10:55:59 -08002555 if (VALIDATE_TOKENS) {
2556 validateAppTokensLocked();
2557 }
Craig Mautnere3a74d52013-02-22 14:14:58 -08002558
2559 // Now we've moved it in to place... but what if this is
2560 // a singleTop activity and we have put it on top of another
2561 // instance of the same activity? Then we drop the instance
2562 // below so it remains singleTop.
2563 if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
2564 ArrayList<ActivityRecord> taskActivities = task.mActivities;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002565 int targetNdx = taskActivities.indexOf(target);
2566 if (targetNdx > 0) {
2567 ActivityRecord p = taskActivities.get(targetNdx - 1);
2568 if (p.intent.getComponent().equals(target.intent.getComponent())) {
Craig Mautner58547802013-03-05 08:23:53 -08002569 finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
2570 false);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002571 }
2572 }
2573 }
2574 }
2575
2576 replyChainEnd = -1;
2577 }
2578 }
Craig Mautner77878772013-03-04 19:46:24 -08002579 return taskInsertionPoint;
Craig Mautnere3a74d52013-02-22 14:14:58 -08002580 }
2581
Craig Mautner8849a5e2013-04-02 16:41:03 -07002582 final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
Craig Mautnere3a74d52013-02-22 14:14:58 -08002583 ActivityRecord newActivity) {
2584 boolean forceReset =
2585 (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
2586 if (ACTIVITY_INACTIVE_RESET_TIME > 0
2587 && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
2588 if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
2589 forceReset = true;
2590 }
2591 }
2592
2593 final TaskRecord task = taskTop.task;
2594
2595 /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
2596 * for remaining tasks. Used for later tasks to reparent to task. */
2597 boolean taskFound = false;
2598
2599 /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
2600 ActivityOptions topOptions = null;
2601
Craig Mautner77878772013-03-04 19:46:24 -08002602 // Preserve the location for reparenting in the new task.
2603 int reparentInsertionPoint = -1;
2604
Craig Mautnere3a74d52013-02-22 14:14:58 -08002605 for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
2606 final TaskRecord targetTask = mTaskHistory.get(i);
2607
2608 if (targetTask == task) {
2609 topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
2610 taskFound = true;
2611 } else {
Craig Mautner77878772013-03-04 19:46:24 -08002612 reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
2613 taskFound, forceReset, reparentInsertionPoint);
Craig Mautnere3a74d52013-02-22 14:14:58 -08002614 }
2615 }
2616
Craig Mautner70a86932013-02-28 22:37:44 -08002617 int taskNdx = mTaskHistory.indexOf(task);
riddle_hsu1d7919a2015-03-11 17:09:50 +08002618 if (taskNdx >= 0) {
2619 do {
2620 taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
2621 } while (taskTop == null && taskNdx >= 0);
2622 }
Craig Mautner70a86932013-02-28 22:37:44 -08002623
Craig Mautnere3a74d52013-02-22 14:14:58 -08002624 if (topOptions != null) {
2625 // If we got some ActivityOptions from an activity on top that
2626 // was removed from the task, propagate them to the new real top.
2627 if (taskTop != null) {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002628 taskTop.updateOptionsLocked(topOptions);
2629 } else {
Craig Mautnere3a74d52013-02-22 14:14:58 -08002630 topOptions.abort();
2631 }
2632 }
2633
2634 return taskTop;
2635 }
2636
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002637 void sendActivityResultLocked(int callingUid, ActivityRecord r,
2638 String resultWho, int requestCode, int resultCode, Intent data) {
2639
2640 if (callingUid > 0) {
2641 mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002642 data, r.getUriPermissionsLocked(), r.userId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002643 }
2644
2645 if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
2646 + " : who=" + resultWho + " req=" + requestCode
2647 + " res=" + resultCode + " data=" + data);
2648 if (mResumedActivity == r && r.app != null && r.app.thread != null) {
2649 try {
2650 ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
2651 list.add(new ResultInfo(resultWho, requestCode,
2652 resultCode, data));
Dianne Hackbornbe707852011-11-11 14:32:10 -08002653 r.app.thread.scheduleSendResult(r.appToken, list);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002654 return;
2655 } catch (Exception e) {
2656 Slog.w(TAG, "Exception thrown sending result to " + r, e);
2657 }
2658 }
2659
2660 r.addResultLocked(null, resultWho, requestCode, resultCode, data);
2661 }
2662
Craig Mautner299f9602015-01-26 09:47:33 -08002663 private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
Craig Mautner04f0b702013-10-22 12:31:01 -07002664 if (mStackSupervisor.isFrontStack(this) && mService.mFocusedActivity == r) {
2665 ActivityRecord next = topRunningActivityLocked(null);
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002666 final String myReason = reason + " adjustFocus";
Craig Mautner04f0b702013-10-22 12:31:01 -07002667 if (next != r) {
2668 final TaskRecord task = r.task;
Craig Mautner84984fa2014-06-19 11:19:20 -07002669 if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002670 // For non-fullscreen stack, we want to move the focus to the next visible
2671 // stack to prevent the home screen from moving to the top and obscuring
2672 // other visible stacks.
2673 if (!mFullscreen
2674 && adjustFocusToNextVisibleStackLocked(null, myReason)) {
2675 return;
2676 }
2677 // Move the home stack to the top if this stack is fullscreen or there is no
2678 // other visible stack.
Wale Ogunwaled80c2632015-03-13 10:26:26 -07002679 if (mStackSupervisor.moveHomeStackTaskToTop(
2680 task.getTaskToReturnTo(), myReason)) {
2681 // Activity focus was already adjusted. Nothing else to do...
2682 return;
2683 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002684 }
2685 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002686
2687 final ActivityRecord top = mStackSupervisor.topRunningActivityLocked();
Winson Chung648c83b2014-04-28 15:11:56 -07002688 if (top != null) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002689 mService.setFocusedActivityLocked(top, myReason);
Winson Chung648c83b2014-04-28 15:11:56 -07002690 }
Craig Mautner04f0b702013-10-22 12:31:01 -07002691 }
2692 }
2693
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002694 private boolean adjustFocusToNextVisibleStackLocked(ActivityStack inStack, String reason) {
2695 final ActivityStack stack = (inStack != null) ? inStack : getNextVisibleStackLocked();
2696 final String myReason = reason + " adjustFocusToNextVisibleStack";
2697 if (stack == null) {
2698 return false;
2699 }
2700 final ActivityRecord top = stack.topRunningActivityLocked(null);
2701 if (top == null) {
2702 return false;
2703 }
Wale Ogunwaled697cea2015-02-20 17:19:49 -08002704 mService.setFocusedActivityLocked(top, myReason);
2705 return true;
2706 }
2707
Craig Mautnerf3333272013-04-22 10:55:53 -07002708 final void stopActivityLocked(ActivityRecord r) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002709 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002710 if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
2711 || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
2712 if (!r.finishing) {
Dianne Hackborn91097de2014-04-04 18:02:06 -07002713 if (!mService.isSleeping()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002714 if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07002715 if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
2716 "stop-no-history", false)) {
2717 // Activity was finished, no need to continue trying to schedule stop.
2718 adjustFocusedActivityLocked(r, "stopActivityFinished");
2719 r.resumeKeyDispatchingLocked();
2720 return;
2721 }
Christopher Tated3f175c2012-06-14 14:16:54 -07002722 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002723 if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
Christopher Tated3f175c2012-06-14 14:16:54 -07002724 + " on stop because we're just sleeping");
2725 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002726 }
Christopher Tate5007ddd2012-06-12 13:08:18 -07002727 }
2728
2729 if (r.app != null && r.app.thread != null) {
Craig Mautner299f9602015-01-26 09:47:33 -08002730 adjustFocusedActivityLocked(r, "stopActivity");
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002731 r.resumeKeyDispatchingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002732 try {
2733 r.stopped = false;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002734 if (DEBUG_STATES) Slog.v(TAG_STATES,
2735 "Moving to STOPPING: " + r + " (stop requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002736 r.state = ActivityState.STOPPING;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002737 if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
2738 "Stopping visible=" + r.visible + " for " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002739 if (!r.visible) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002740 mWindowManager.setAppVisibility(r.appToken, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002741 }
Dianne Hackbornbe707852011-11-11 14:32:10 -08002742 r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
Craig Mautnere11f2b72013-04-01 12:37:17 -07002743 if (mService.isSleepingOrShuttingDown()) {
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002744 r.setSleeping(true);
2745 }
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07002746 Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07002747 mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002748 } catch (Exception e) {
2749 // Maybe just ignore exceptions here... if the process
2750 // has crashed, our death notification will clean things
2751 // up.
2752 Slog.w(TAG, "Exception thrown during pause", e);
2753 // Just in case, assume it to be stopped.
2754 r.stopped = true;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002755 if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002756 r.state = ActivityState.STOPPED;
2757 if (r.configDestroy) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002758 destroyActivityLocked(r, true, "stop-except");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002759 }
2760 }
2761 }
2762 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07002763
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002764 /**
2765 * @return Returns true if the activity is being finished, false if for
2766 * some reason it is being left as-is.
2767 */
2768 final boolean requestFinishActivityLocked(IBinder token, int resultCode,
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002769 Intent resultData, String reason, boolean oomAdj) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002770 ActivityRecord r = isInStackLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002771 if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
2772 "Finishing activity token=" + token + " r="
Christopher Tated3f175c2012-06-14 14:16:54 -07002773 + ", result=" + resultCode + ", data=" + resultData
2774 + ", reason=" + reason);
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002775 if (r == null) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002776 return false;
2777 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002778
Craig Mautnerd44711d2013-02-23 11:24:36 -08002779 finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002780 return true;
2781 }
2782
Craig Mautnerd2328952013-03-05 12:46:26 -08002783 final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
Craig Mautner9658b312013-02-28 10:55:59 -08002784 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2785 ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2786 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2787 ActivityRecord r = activities.get(activityNdx);
2788 if (r.resultTo == self && r.requestCode == requestCode) {
2789 if ((r.resultWho == null && resultWho == null) ||
2790 (r.resultWho != null && r.resultWho.equals(resultWho))) {
2791 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
2792 false);
2793 }
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002794 }
2795 }
2796 }
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002797 mService.updateOomAdjLocked();
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002798 }
2799
Todd Kennedy539db512014-12-15 09:57:55 -08002800 final void finishTopRunningActivityLocked(ProcessRecord app, String reason) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002801 ActivityRecord r = topRunningActivityLocked(null);
2802 if (r != null && r.app == app) {
2803 // If the top running activity is from this crashing
2804 // process, then terminate it to avoid getting in a loop.
2805 Slog.w(TAG, " Force finishing activity "
2806 + r.intent.getComponent().flattenToShortString());
Craig Mautner9658b312013-02-28 10:55:59 -08002807 int taskNdx = mTaskHistory.indexOf(r.task);
2808 int activityNdx = r.task.mActivities.indexOf(r);
Todd Kennedy539db512014-12-15 09:57:55 -08002809 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002810 // Also terminate any activities below it that aren't yet
2811 // stopped, to avoid a situation where one will get
2812 // re-start our crashing activity once it gets resumed again.
Craig Mautner9658b312013-02-28 10:55:59 -08002813 --activityNdx;
2814 if (activityNdx < 0) {
2815 do {
2816 --taskNdx;
2817 if (taskNdx < 0) {
2818 break;
2819 }
2820 activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
2821 } while (activityNdx < 0);
2822 }
2823 if (activityNdx >= 0) {
2824 r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002825 if (r.state == ActivityState.RESUMED
2826 || r.state == ActivityState.PAUSING
2827 || r.state == ActivityState.PAUSED) {
Craig Mautner4ef26932013-09-18 15:15:52 -07002828 if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002829 Slog.w(TAG, " Force finishing activity "
2830 + r.intent.getComponent().flattenToShortString());
Todd Kennedy539db512014-12-15 09:57:55 -08002831 finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08002832 }
2833 }
2834 }
2835 }
2836 }
2837
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002838 final void finishVoiceTask(IVoiceInteractionSession session) {
2839 IBinder sessionBinder = session.asBinder();
2840 boolean didOne = false;
2841 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2842 TaskRecord tr = mTaskHistory.get(taskNdx);
2843 if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
2844 for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2845 ActivityRecord r = tr.mActivities.get(activityNdx);
2846 if (!r.finishing) {
2847 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
2848 false);
2849 didOne = true;
2850 }
2851 }
2852 }
2853 }
2854 if (didOne) {
2855 mService.updateOomAdjLocked();
2856 }
2857 }
2858
Craig Mautnerd2328952013-03-05 12:46:26 -08002859 final boolean finishActivityAffinityLocked(ActivityRecord r) {
Craig Mautnerd74f7d72013-02-26 13:41:02 -08002860 ArrayList<ActivityRecord> activities = r.task.mActivities;
2861 for (int index = activities.indexOf(r); index >= 0; --index) {
2862 ActivityRecord cur = activities.get(index);
Kenny Roote6585b32013-12-13 12:00:26 -08002863 if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002864 break;
2865 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002866 finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
Dianne Hackbornecc5a9c2012-04-26 18:56:09 -07002867 }
2868 return true;
2869 }
2870
Dianne Hackborn5c607432012-02-28 14:44:19 -08002871 final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
2872 // send the result
2873 ActivityRecord resultTo = r.resultTo;
2874 if (resultTo != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002875 if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
Dianne Hackborn5c607432012-02-28 14:44:19 -08002876 + " who=" + r.resultWho + " req=" + r.requestCode
2877 + " res=" + resultCode + " data=" + resultData);
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002878 if (resultTo.userId != r.userId) {
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002879 if (resultData != null) {
Nicolas Prevot107f7b72015-07-01 16:31:48 +01002880 resultData.prepareToLeaveUser(r.userId);
Nicolas Prevot6b942b82014-06-02 15:20:42 +01002881 }
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002882 }
Dianne Hackborn5c607432012-02-28 14:44:19 -08002883 if (r.info.applicationInfo.uid > 0) {
2884 mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
2885 resultTo.packageName, resultData,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +01002886 resultTo.getUriPermissionsLocked(), resultTo.userId);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002887 }
2888 resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
2889 resultData);
2890 r.resultTo = null;
2891 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002892 else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
Dianne Hackborn5c607432012-02-28 14:44:19 -08002893
2894 // Make sure this HistoryRecord is not holding on to other resources,
2895 // because clients have remote IPC references to this object so we
2896 // can't assume that will go away and want to avoid circular IPC refs.
2897 r.results = null;
2898 r.pendingResults = null;
2899 r.newIntents = null;
2900 r.icicle = null;
2901 }
2902
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002903 /**
2904 * @return Returns true if this activity has been removed from the history
2905 * list, or false if it is still in the list and will be removed later.
2906 */
Craig Mautnerf3333272013-04-22 10:55:53 -07002907 final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
2908 String reason, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002909 if (r.finishing) {
2910 Slog.w(TAG, "Duplicate finish request for " + r);
2911 return false;
2912 }
2913
Wale Ogunwale7d701172015-03-11 15:36:30 -07002914 r.makeFinishingLocked();
Craig Mautneraea74a52014-03-08 14:23:10 -08002915 final TaskRecord task = r.task;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002916 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07002917 r.userId, System.identityHashCode(r),
Craig Mautneraea74a52014-03-08 14:23:10 -08002918 task.taskId, r.shortComponentName, reason);
2919 final ArrayList<ActivityRecord> activities = task.mActivities;
Craig Mautnerd44711d2013-02-23 11:24:36 -08002920 final int index = activities.indexOf(r);
2921 if (index < (activities.size() - 1)) {
Craig Mautneraea74a52014-03-08 14:23:10 -08002922 task.setFrontOfTask();
Craig Mautnerd00f4742014-03-12 14:17:26 -07002923 if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08002924 // If the caller asked that this activity (and all above it)
2925 // be cleared when the task is reset, don't lose that information,
2926 // but propagate it up to the next activity.
Craig Mautner1aa9d0d3f2013-12-16 15:58:31 -08002927 ActivityRecord next = activities.get(index+1);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002928 next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002929 }
2930 }
2931
2932 r.pauseKeyDispatchingLocked();
Craig Mautner04f0b702013-10-22 12:31:01 -07002933
Craig Mautner299f9602015-01-26 09:47:33 -08002934 adjustFocusedActivityLocked(r, "finishActivity");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002935
Dianne Hackborn5c607432012-02-28 14:44:19 -08002936 finishActivityResultsLocked(r, resultCode, resultData);
Craig Mautner2420ead2013-04-01 17:13:20 -07002937
Craig Mautnerde4ef022013-04-07 19:01:33 -07002938 if (mResumedActivity == r) {
Craig Mautner0247fc82013-02-28 14:32:06 -08002939 boolean endTask = index <= 0;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002940 if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002941 "Prepare close transition: finishing " + r);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002942 mWindowManager.prepareAppTransition(endTask
Craig Mautner4b71aa12012-12-27 17:20:01 -08002943 ? AppTransition.TRANSIT_TASK_CLOSE
2944 : AppTransition.TRANSIT_ACTIVITY_CLOSE, false);
Craig Mautner0247fc82013-02-28 14:32:06 -08002945
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002946 // Tell window manager to prepare for this one to be removed.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07002947 mWindowManager.setAppVisibility(r.appToken, false);
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07002948
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08002949 if (mPausingActivity == null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002950 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
2951 if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
2952 "finish() => pause with userLeaving=false");
Dianne Hackborna4e102e2014-09-04 22:52:27 -07002953 startPausingLocked(false, false, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002954 }
2955
Craig Mautneraea74a52014-03-08 14:23:10 -08002956 if (endTask) {
Craig Mautner15df08a2015-04-01 12:17:18 -07002957 mStackSupervisor.removeLockedTaskLocked(task);
Craig Mautneraea74a52014-03-08 14:23:10 -08002958 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002959 } else if (r.state != ActivityState.PAUSING) {
2960 // If the activity is PAUSING, we will complete the finish once
2961 // it is done pausing; else we can just directly finish it here.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002962 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
Craig Mautnerd44711d2013-02-23 11:24:36 -08002963 return finishCurrentActivityLocked(r, FINISH_AFTER_PAUSE, oomAdj) == null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002964 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002965 if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002966 }
2967
2968 return false;
2969 }
2970
Craig Mautnerf3333272013-04-22 10:55:53 -07002971 static final int FINISH_IMMEDIATELY = 0;
2972 static final int FINISH_AFTER_PAUSE = 1;
2973 static final int FINISH_AFTER_VISIBLE = 2;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002974
Craig Mautnerf3333272013-04-22 10:55:53 -07002975 final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002976 // First things first: if this activity is currently visible,
2977 // and the resumed activity is not yet visible, then hold off on
2978 // finishing until the resumed one becomes visible.
2979 if (mode == FINISH_AFTER_VISIBLE && r.nowVisible) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07002980 if (!mStackSupervisor.mStoppingActivities.contains(r)) {
2981 mStackSupervisor.mStoppingActivities.add(r);
Craig Mautner29219d92013-04-16 20:19:12 -07002982 if (mStackSupervisor.mStoppingActivities.size() > 3
2983 || r.frontOfTask && mTaskHistory.size() <= 1) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002984 // If we already have a few activities waiting to stop,
2985 // then give up on things going idle and start clearing
Craig Mautner29219d92013-04-16 20:19:12 -07002986 // them out. Or if r is the last of activity of the last task the stack
2987 // will be empty and must be cleared immediately.
Craig Mautnerf3333272013-04-22 10:55:53 -07002988 mStackSupervisor.scheduleIdleLocked();
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08002989 } else {
Craig Mautner0eea92c2013-05-16 13:35:39 -07002990 mStackSupervisor.checkReadyForSleepLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002991 }
2992 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07002993 if (DEBUG_STATES) Slog.v(TAG_STATES,
2994 "Moving to STOPPING: "+ r + " (finish requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002995 r.state = ActivityState.STOPPING;
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07002996 if (oomAdj) {
2997 mService.updateOomAdjLocked();
2998 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07002999 return r;
3000 }
3001
3002 // make sure the record is cleaned out of other places.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003003 mStackSupervisor.mStoppingActivities.remove(r);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003004 mStackSupervisor.mGoingToSleepActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003005 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003006 if (mResumedActivity == r) {
3007 mResumedActivity = null;
3008 }
3009 final ActivityState prevState = r.state;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003010 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003011 r.state = ActivityState.FINISHING;
3012
3013 if (mode == FINISH_IMMEDIATELY
Wale Ogunwale3f529ee2015-07-12 15:14:01 -07003014 || (mode == FINISH_AFTER_PAUSE && prevState == ActivityState.PAUSED)
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003015 || prevState == ActivityState.STOPPED
3016 || prevState == ActivityState.INITIALIZING) {
3017 // If this activity is already stopped, we can just finish
3018 // it right now.
Wale Ogunwale7d701172015-03-11 15:36:30 -07003019 r.makeFinishingLocked();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003020 boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003021 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003022 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003023 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003024 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
Craig Mautnerd163e752014-06-13 17:18:47 -07003025 "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3026 " destroy returned removed=" + activityRemoved);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003027 return activityRemoved ? null : r;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003028 }
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003029
3030 // Need to go through the full pause cycle to get this
3031 // activity into the stopped state and then finish it.
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003032 if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
Craig Mautnerf3333272013-04-22 10:55:53 -07003033 mStackSupervisor.mFinishingActivities.add(r);
Martin Wallgrenc8733b82011-08-31 12:39:31 +02003034 r.resumeKeyDispatchingLocked();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003035 mStackSupervisor.getFocusedStack().resumeTopActivityLocked(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003036 return r;
3037 }
3038
Craig Mautneree36c772014-07-16 14:56:05 -07003039 void finishAllActivitiesLocked(boolean immediately) {
3040 boolean noActivitiesInStack = true;
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003041 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3042 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3043 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3044 final ActivityRecord r = activities.get(activityNdx);
Craig Mautneree36c772014-07-16 14:56:05 -07003045 noActivitiesInStack = false;
3046 if (r.finishing && !immediately) {
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003047 continue;
3048 }
Craig Mautneree36c772014-07-16 14:56:05 -07003049 Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003050 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3051 }
3052 }
Craig Mautneree36c772014-07-16 14:56:05 -07003053 if (noActivitiesInStack) {
3054 mActivityContainer.onTaskListEmptyLocked();
3055 }
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003056 }
3057
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003058 final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3059 // Basic case: for simple app-centric recents, we need to recreate
3060 // the task if the affinity has changed.
3061 if (srec == null || srec.task.affinity == null ||
3062 !srec.task.affinity.equals(destAffinity)) {
3063 return true;
3064 }
3065 // Document-centric case: an app may be split in to multiple documents;
3066 // they need to re-create their task if this current activity is the root
3067 // of a document, unless simply finishing it will return them to the the
3068 // correct app behind.
Dianne Hackbornf3eb8432014-09-19 17:21:46 -07003069 if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3070 && srec.task.getBaseIntent().isDocument()) {
Dianne Hackborn6f4d61f2014-08-21 17:50:42 -07003071 // Okay, this activity is at the root of its task. What to do, what to do...
3072 if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3073 // Finishing won't return to an application, so we need to recreate.
3074 return true;
3075 }
3076 // We now need to get the task below it to determine what to do.
3077 int taskIdx = mTaskHistory.indexOf(srec.task);
3078 if (taskIdx <= 0) {
3079 Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3080 return false;
3081 }
3082 if (taskIdx == 0) {
3083 // At the bottom of the stack, nothing to go back to.
3084 return true;
3085 }
3086 TaskRecord prevTask = mTaskHistory.get(taskIdx);
3087 if (!srec.task.affinity.equals(prevTask.affinity)) {
3088 // These are different apps, so need to recreate.
3089 return true;
3090 }
3091 }
3092 return false;
3093 }
3094
Wale Ogunwale7d701172015-03-11 15:36:30 -07003095 final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003096 Intent resultData) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003097 final TaskRecord task = srec.task;
3098 final ArrayList<ActivityRecord> activities = task.mActivities;
3099 final int start = activities.indexOf(srec);
3100 if (!mTaskHistory.contains(task) || (start < 0)) {
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003101 return false;
3102 }
3103 int finishTo = start - 1;
Craig Mautner0247fc82013-02-28 14:32:06 -08003104 ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003105 boolean foundParentInTask = false;
Craig Mautner0247fc82013-02-28 14:32:06 -08003106 final ComponentName dest = destIntent.getComponent();
3107 if (start > 0 && dest != null) {
3108 for (int i = finishTo; i >= 0; i--) {
3109 ActivityRecord r = activities.get(i);
3110 if (r.info.packageName.equals(dest.getPackageName()) &&
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003111 r.info.name.equals(dest.getClassName())) {
3112 finishTo = i;
3113 parent = r;
3114 foundParentInTask = true;
3115 break;
3116 }
3117 }
3118 }
3119
3120 IActivityController controller = mService.mController;
3121 if (controller != null) {
3122 ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3123 if (next != null) {
3124 // ask watcher if this is allowed
3125 boolean resumeOK = true;
3126 try {
3127 resumeOK = controller.activityResuming(next.packageName);
3128 } catch (RemoteException e) {
3129 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003130 Watchdog.getInstance().setActivityController(null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003131 }
3132
3133 if (!resumeOK) {
3134 return false;
3135 }
3136 }
3137 }
3138 final long origId = Binder.clearCallingIdentity();
3139 for (int i = start; i > finishTo; i--) {
Craig Mautner0247fc82013-02-28 14:32:06 -08003140 ActivityRecord r = activities.get(i);
3141 requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003142 // Only return the supplied result for the first activity finished
3143 resultCode = Activity.RESULT_CANCELED;
3144 resultData = null;
3145 }
3146
3147 if (parent != null && foundParentInTask) {
3148 final int parentLaunchMode = parent.info.launchMode;
3149 final int destIntentFlags = destIntent.getFlags();
3150 if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3151 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3152 parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3153 (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003154 parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3155 srec.packageName);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003156 } else {
3157 try {
3158 ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3159 destIntent.getComponent(), 0, srec.userId);
Craig Mautner6170f732013-04-02 13:05:23 -07003160 int res = mStackSupervisor.startActivityLocked(srec.app.thread, destIntent,
Dianne Hackborn91097de2014-04-04 18:02:06 -07003161 null, aInfo, null, null, parent.appToken, null,
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003162 0, -1, parent.launchedFromUid, parent.launchedFromPackage,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07003163 -1, parent.launchedFromUid, 0, null, false, true, null, null, null);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003164 foundParentInTask = res == ActivityManager.START_SUCCESS;
3165 } catch (RemoteException e) {
3166 foundParentInTask = false;
3167 }
3168 requestFinishActivityLocked(parent.appToken, resultCode,
Todd Kennedy539db512014-12-15 09:57:55 -08003169 resultData, "navigate-top", true);
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003170 }
3171 }
3172 Binder.restoreCallingIdentity(origId);
3173 return foundParentInTask;
3174 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003175 /**
3176 * Perform the common clean-up of an activity record. This is called both
3177 * as part of destroyActivityLocked() (when destroying the client-side
3178 * representation) and cleaning things up as a result of its hosting
3179 * processing going away, in which case there is no remaining client-side
3180 * state to destroy so only the cleanup here is needed.
Craig Mautneracebdc82015-02-24 10:53:03 -08003181 *
3182 * Note: Call before #removeActivityFromHistoryLocked.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003183 */
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003184 final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3185 boolean setState) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003186 if (mResumedActivity == r) {
3187 mResumedActivity = null;
3188 }
Craig Mautner1872ce32014-03-28 23:05:42 +00003189 if (mPausingActivity == r) {
3190 mPausingActivity = null;
3191 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07003192 mService.clearFocusedActivity(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003193
3194 r.configDestroy = false;
3195 r.frozenBeforeDestroy = false;
3196
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003197 if (setState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003198 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003199 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003200 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003201 r.app = null;
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003202 }
3203
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003204 // Make sure this record is no longer in the pending finishes list.
3205 // This could happen, for example, if we are trimming activities
3206 // down to the max limit while they are still waiting to finish.
Craig Mautnerf3333272013-04-22 10:55:53 -07003207 mStackSupervisor.mFinishingActivities.remove(r);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003208 mStackSupervisor.mWaitingVisibleActivities.remove(r);
Craig Mautner2420ead2013-04-01 17:13:20 -07003209
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003210 // Remove any pending results.
3211 if (r.finishing && r.pendingResults != null) {
3212 for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3213 PendingIntentRecord rec = apr.get();
3214 if (rec != null) {
3215 mService.cancelIntentSenderLocked(rec, false);
3216 }
3217 }
3218 r.pendingResults = null;
3219 }
3220
3221 if (cleanServices) {
Craig Mautner2420ead2013-04-01 17:13:20 -07003222 cleanUpActivityServicesLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003223 }
3224
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003225 // Get rid of any pending idle timeouts.
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003226 removeTimeoutsForActivityLocked(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003227 if (getVisibleBehindActivity() == r) {
3228 mStackSupervisor.requestVisibleBehindLocked(r, false);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003229 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003230 }
3231
3232 private void removeTimeoutsForActivityLocked(ActivityRecord r) {
Craig Mautnerf3333272013-04-22 10:55:53 -07003233 mStackSupervisor.removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003234 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
Dianne Hackborn162bc0e2012-04-09 14:06:16 -07003235 mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
Dianne Hackborn0c5001d2011-04-12 18:16:08 -07003236 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07003237 r.finishLaunchTickingLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003238 }
3239
Craig Mautner299f9602015-01-26 09:47:33 -08003240 private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
Craig Mautner34b73df2014-01-12 21:11:08 -08003241 mStackSupervisor.removeChildActivityContainers(r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003242 finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
Wale Ogunwale7d701172015-03-11 15:36:30 -07003243 r.makeFinishingLocked();
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003244 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3245 "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3246
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003247 r.takeFromHistory();
3248 removeTimeoutsForActivityLocked(r);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003249 if (DEBUG_STATES) Slog.v(TAG_STATES,
3250 "Moving to DESTROYED: " + r + " (removed from history)");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003251 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003252 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003253 r.app = null;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003254 mWindowManager.removeAppToken(r.appToken);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003255 if (VALIDATE_TOKENS) {
3256 validateAppTokensLocked();
3257 }
Craig Mautner312ba862014-02-10 17:55:01 -08003258 final TaskRecord task = r.task;
3259 if (task != null && task.removeActivity(r)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003260 if (DEBUG_STACK) Slog.i(TAG_STACK,
Craig Mautner312ba862014-02-10 17:55:01 -08003261 "removeActivityFromHistoryLocked: last activity removed from " + this);
Craig Mautner84984fa2014-06-19 11:19:20 -07003262 if (mStackSupervisor.isFrontStack(this) && task == topTask() &&
3263 task.isOverHomeStack()) {
Craig Mautner299f9602015-01-26 09:47:33 -08003264 mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003265 }
Craig Mautner299f9602015-01-26 09:47:33 -08003266 removeTask(task, reason);
Craig Mautner312ba862014-02-10 17:55:01 -08003267 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003268 cleanUpActivityServicesLocked(r);
3269 r.removeUriPermissionsLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003270 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003271
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003272 /**
3273 * Perform clean-up of service connections in an activity record.
3274 */
3275 final void cleanUpActivityServicesLocked(ActivityRecord r) {
3276 // Throw away any services that have been bound by this activity.
3277 if (r.connections != null) {
3278 Iterator<ConnectionRecord> it = r.connections.iterator();
3279 while (it.hasNext()) {
3280 ConnectionRecord c = it.next();
Dianne Hackborn599db5c2012-08-03 19:28:48 -07003281 mService.mServices.removeConnectionLocked(c, null, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003282 }
3283 r.connections = null;
3284 }
3285 }
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003286
Craig Mautneree2e45a2014-06-27 12:10:03 -07003287 final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003288 Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003289 msg.obj = new ScheduleDestroyArgs(owner, reason);
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003290 mHandler.sendMessage(msg);
3291 }
3292
Craig Mautneree2e45a2014-06-27 12:10:03 -07003293 final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
Dianne Hackborn755c8bf2012-05-07 15:06:09 -07003294 boolean lastIsOpaque = false;
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003295 boolean activityRemoved = false;
Craig Mautnerd44711d2013-02-23 11:24:36 -08003296 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3297 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3298 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3299 final ActivityRecord r = activities.get(activityNdx);
3300 if (r.finishing) {
3301 continue;
3302 }
3303 if (r.fullscreen) {
3304 lastIsOpaque = true;
3305 }
3306 if (owner != null && r.app != owner) {
3307 continue;
3308 }
3309 if (!lastIsOpaque) {
3310 continue;
3311 }
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003312 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003313 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
Craig Mautnerd44711d2013-02-23 11:24:36 -08003314 + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003315 + " pausing=" + mPausingActivity + " for reason " + reason);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003316 if (destroyActivityLocked(r, true, reason)) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08003317 activityRemoved = true;
3318 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003319 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003320 }
3321 }
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003322 if (activityRemoved) {
Craig Mautner05d29032013-05-03 13:40:13 -07003323 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003324 }
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003325 }
3326
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003327 final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3328 if (r.isDestroyable()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003329 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3330 "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003331 + " pausing=" + mPausingActivity + " for reason " + reason);
3332 return destroyActivityLocked(r, true, reason);
3333 }
3334 return false;
3335 }
3336
3337 final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3338 String reason) {
3339 // Iterate over tasks starting at the back (oldest) first.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003340 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003341 int maxTasks = tasks.size() / 4;
3342 if (maxTasks < 1) {
3343 maxTasks = 1;
3344 }
3345 int numReleased = 0;
3346 for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3347 final TaskRecord task = mTaskHistory.get(taskNdx);
3348 if (!tasks.contains(task)) {
3349 continue;
3350 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003351 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003352 int curNum = 0;
3353 final ArrayList<ActivityRecord> activities = task.mActivities;
3354 for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3355 final ActivityRecord activity = activities.get(actNdx);
3356 if (activity.app == app && activity.isDestroyable()) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003357 if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003358 + " in state " + activity.state + " resumed=" + mResumedActivity
3359 + " pausing=" + mPausingActivity + " for reason " + reason);
3360 destroyActivityLocked(activity, true, reason);
3361 if (activities.get(actNdx) != activity) {
3362 // Was removed from list, back up so we don't miss the next one.
3363 actNdx--;
3364 }
3365 curNum++;
3366 }
3367 }
3368 if (curNum > 0) {
3369 numReleased += curNum;
3370 maxTasks--;
3371 if (mTaskHistory.get(taskNdx) != task) {
3372 // The entire task got removed, back up so we don't miss the next one.
3373 taskNdx--;
3374 }
3375 }
3376 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003377 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3378 "Done releasing: did " + numReleased + " activities");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003379 return numReleased;
3380 }
3381
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003382 /**
3383 * Destroy the current CLIENT SIDE instance of an activity. This may be
3384 * called both when actually finishing an activity, or when performing
3385 * a configuration switch where we destroy the current client-side object
3386 * but then create a new client-side object for this same HistoryRecord.
3387 */
Craig Mautneree2e45a2014-06-27 12:10:03 -07003388 final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003389 if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3390 "Removing activity from " + reason + ": token=" + r
3391 + ", app=" + (r.app != null ? r.app.processName : "(null)"));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003392 EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003393 r.userId, System.identityHashCode(r),
Dianne Hackborn28695e02011-11-02 21:59:51 -07003394 r.task.taskId, r.shortComponentName, reason);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003395
3396 boolean removedFromHistory = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003397
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003398 cleanUpActivityLocked(r, false, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003399
3400 final boolean hadApp = r.app != null;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003401
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003402 if (hadApp) {
3403 if (removeFromApp) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003404 r.app.activities.remove(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003405 if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3406 mService.mHeavyWeightProcess = null;
3407 mService.mHandler.sendEmptyMessage(
3408 ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3409 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003410 if (r.app.activities.isEmpty()) {
Dianne Hackborn465fa392014-09-14 14:21:18 -07003411 // Update any services we are bound to that might care about whether
3412 // their client may have activities.
3413 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07003414 // No longer have activities, so update LRU list and oom adj.
Dianne Hackborndb926082013-10-31 16:32:44 -07003415 mService.updateLruProcessLocked(r.app, false, null);
Dianne Hackborn2d1b3782012-09-09 17:49:39 -07003416 mService.updateOomAdjLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003417 }
3418 }
3419
3420 boolean skipDestroy = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003421
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003422 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003423 if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
Dianne Hackbornbe707852011-11-11 14:32:10 -08003424 r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003425 r.configChangeFlags);
3426 } catch (Exception e) {
3427 // We can just ignore exceptions here... if the process
3428 // has crashed, our death notification will clean things
3429 // up.
3430 //Slog.w(TAG, "Exception thrown during finish", e);
3431 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003432 removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003433 removedFromHistory = true;
3434 skipDestroy = true;
3435 }
3436 }
3437
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003438 r.nowVisible = false;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003439
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003440 // If the activity is finishing, we need to wait on removing it
3441 // from the list to give it a chance to do its cleanup. During
3442 // that time it may make calls back with its token so we need to
3443 // be able to find it on the list and so we don't want to remove
3444 // it from the list yet. Otherwise, we can just immediately put
3445 // it in the destroyed state since we are not removing it from the
3446 // list.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003447 if (r.finishing && !skipDestroy) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003448 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
Dianne Hackbornce86ba82011-07-13 19:33:41 -07003449 + " (destroy requested)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003450 r.state = ActivityState.DESTROYING;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -07003451 Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003452 mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3453 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003454 if (DEBUG_STATES) Slog.v(TAG_STATES,
3455 "Moving to DESTROYED: " + r + " (destroy skipped)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003456 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003457 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003458 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003459 }
3460 } else {
3461 // remove this record from the history.
3462 if (r.finishing) {
Craig Mautner299f9602015-01-26 09:47:33 -08003463 removeActivityFromHistoryLocked(r, reason + " hadNoApp");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003464 removedFromHistory = true;
3465 } else {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003466 if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003467 r.state = ActivityState.DESTROYED;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003468 if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003469 r.app = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003470 }
3471 }
3472
3473 r.configChangeFlags = 0;
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003474
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003475 if (!mLRUActivities.remove(r) && hadApp) {
3476 Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3477 }
Craig Mautnerdbcb31f2013-04-02 12:32:53 -07003478
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003479 return removedFromHistory;
3480 }
3481
Craig Mautner299f9602015-01-26 09:47:33 -08003482 final void activityDestroyedLocked(IBinder token, String reason) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003483 final long origId = Binder.clearCallingIdentity();
3484 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -07003485 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08003486 if (r != null) {
3487 mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003488 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003489 if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
Craig Mautnerd2328952013-03-05 12:46:26 -08003490
Wale Ogunwale60454db2015-01-23 16:05:07 -08003491 if (isInStackLocked(r) != null) {
Craig Mautnerd2328952013-03-05 12:46:26 -08003492 if (r.state == ActivityState.DESTROYING) {
3493 cleanUpActivityLocked(r, true, false);
Craig Mautner299f9602015-01-26 09:47:33 -08003494 removeActivityFromHistoryLocked(r, reason);
Craig Mautnerd2328952013-03-05 12:46:26 -08003495 }
3496 }
Craig Mautner05d29032013-05-03 13:40:13 -07003497 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautnerd2328952013-03-05 12:46:26 -08003498 } finally {
3499 Binder.restoreCallingIdentity(origId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003500 }
3501 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003502
Todd Kennedyaab56db2015-01-30 09:39:53 -08003503 void releaseBackgroundResources(ActivityRecord r) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003504 if (hasVisibleBehindActivity() &&
3505 !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
Craig Mautner64ccb702014-10-01 09:38:40 -07003506 if (r == topRunningActivityLocked(null)) {
3507 // Don't release the top activity if it has requested to run behind the next
3508 // activity.
3509 return;
3510 }
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003511 if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
Jose Lima4b6c6692014-08-12 17:41:12 -07003512 mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
Craig Mautneree2e45a2014-06-27 12:10:03 -07003513 " thread=" + r.app.thread);
3514 if (r != null && r.app != null && r.app.thread != null) {
3515 try {
Jose Lima4b6c6692014-08-12 17:41:12 -07003516 r.app.thread.scheduleCancelVisibleBehind(r.appToken);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003517 } catch (RemoteException e) {
3518 }
Jose Lima4b6c6692014-08-12 17:41:12 -07003519 mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003520 } else {
Jose Lima4b6c6692014-08-12 17:41:12 -07003521 Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003522 backgroundResourcesReleased();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003523 }
3524 }
3525 }
3526
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003527 final void backgroundResourcesReleased() {
Jose Lima4b6c6692014-08-12 17:41:12 -07003528 mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
3529 final ActivityRecord r = getVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003530 if (r != null) {
3531 mStackSupervisor.mStoppingActivities.add(r);
Jose Lima4b6c6692014-08-12 17:41:12 -07003532 setVisibleBehindActivity(null);
Wale Ogunwale1f4c02b2014-11-13 14:22:32 -08003533 mStackSupervisor.scheduleIdleTimeoutLocked(null);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003534 }
3535 mStackSupervisor.resumeTopActivitiesLocked();
3536 }
3537
Jose Lima4b6c6692014-08-12 17:41:12 -07003538 boolean hasVisibleBehindActivity() {
3539 return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
Craig Mautneree2e45a2014-06-27 12:10:03 -07003540 }
3541
Jose Lima4b6c6692014-08-12 17:41:12 -07003542 void setVisibleBehindActivity(ActivityRecord r) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07003543 if (isAttached()) {
Jose Lima4b6c6692014-08-12 17:41:12 -07003544 mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003545 }
3546 }
3547
Jose Lima4b6c6692014-08-12 17:41:12 -07003548 ActivityRecord getVisibleBehindActivity() {
3549 return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
Craig Mautneree2e45a2014-06-27 12:10:03 -07003550 }
3551
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003552 private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
3553 ProcessRecord app, String listName) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003554 int i = list.size();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003555 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3556 "Removing app " + app + " from list " + listName + " with " + i + " entries");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003557 while (i > 0) {
3558 i--;
Craig Mautner05d6272ba2013-02-11 09:39:27 -08003559 ActivityRecord r = list.get(i);
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003560 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003561 if (r.app == app) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003562 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003563 list.remove(i);
Dianne Hackborn42e620c2012-06-24 13:20:51 -07003564 removeTimeoutsForActivityLocked(r);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003565 }
3566 }
3567 }
3568
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003569 boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
3570 removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003571 removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
3572 "mStoppingActivities");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003573 removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
3574 "mGoingToSleepActivities");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003575 removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003576 "mWaitingVisibleActivities");
Craig Mautnerf3333272013-04-22 10:55:53 -07003577 removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
3578 "mFinishingActivities");
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003579
3580 boolean hasVisibleActivities = false;
3581
3582 // Clean out the history list.
Craig Mautner0247fc82013-02-28 14:32:06 -08003583 int i = numActivities();
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003584 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3585 "Removing app " + app + " from history with " + i + " entries");
Craig Mautner0247fc82013-02-28 14:32:06 -08003586 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3587 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3588 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3589 final ActivityRecord r = activities.get(activityNdx);
3590 --i;
Wale Ogunwalee23149f2015-03-06 15:39:44 -08003591 if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
3592 "Record #" + i + " " + r + ": app=" + r.app);
Craig Mautner0247fc82013-02-28 14:32:06 -08003593 if (r.app == app) {
riddle_hsu558e8492015-04-02 16:43:13 +08003594 if (r.visible) {
3595 hasVisibleActivities = true;
3596 }
Craig Mautneracebdc82015-02-24 10:53:03 -08003597 final boolean remove;
Craig Mautner0247fc82013-02-28 14:32:06 -08003598 if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
3599 // Don't currently have state for the activity, or
3600 // it is finishing -- always remove it.
3601 remove = true;
3602 } else if (r.launchCount > 2 &&
3603 r.lastLaunchTime > (SystemClock.uptimeMillis()-60000)) {
3604 // We have launched this activity too many times since it was
3605 // able to run, so give up and remove it.
3606 remove = true;
3607 } else {
3608 // The process may be gone, but the activity lives on!
3609 remove = false;
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003610 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003611 if (remove) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003612 if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
3613 "Removing activity " + r + " from stack at " + i
3614 + ": haveState=" + r.haveState
3615 + " stateNotNeeded=" + r.stateNotNeeded
3616 + " finishing=" + r.finishing
3617 + " state=" + r.state + " callers=" + Debug.getCallers(5));
Craig Mautner0247fc82013-02-28 14:32:06 -08003618 if (!r.finishing) {
3619 Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
3620 EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3621 r.userId, System.identityHashCode(r),
3622 r.task.taskId, r.shortComponentName,
3623 "proc died without state saved");
Jeff Sharkey5782da72013-04-25 14:32:30 -07003624 if (r.state == ActivityState.RESUMED) {
3625 mService.updateUsageStats(r, false);
3626 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003627 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003628 } else {
3629 // We have the current state for this activity, so
3630 // it can be restarted later when needed.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003631 if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
3632 if (DEBUG_APP) Slog.v(TAG_APP,
3633 "Clearing app during removeHistory for activity " + r);
Craig Mautner0247fc82013-02-28 14:32:06 -08003634 r.app = null;
3635 r.nowVisible = false;
3636 if (!r.haveState) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003637 if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
Craig Mautner0247fc82013-02-28 14:32:06 -08003638 "App died, clearing saved state of " + r);
3639 r.icicle = null;
3640 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003641 }
Craig Mautnerd2328952013-03-05 12:46:26 -08003642 cleanUpActivityLocked(r, true, true);
Craig Mautneracebdc82015-02-24 10:53:03 -08003643 if (remove) {
3644 removeActivityFromHistoryLocked(r, "appDied");
3645 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003646 }
Dianne Hackborncc5a0552012-10-01 16:32:39 -07003647 }
3648 }
3649
3650 return hasVisibleActivities;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003651 }
Craig Mautner0247fc82013-02-28 14:32:06 -08003652
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003653 final void updateTransitLocked(int transit, Bundle options) {
3654 if (options != null) {
3655 ActivityRecord r = topRunningActivityLocked(null);
3656 if (r != null && r.state != ActivityState.RESUMED) {
3657 r.updateOptionsLocked(options);
3658 } else {
3659 ActivityOptions.abort(options);
3660 }
3661 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003662 mWindowManager.prepareAppTransition(transit, false);
Dianne Hackborn7f58b952012-04-18 12:59:29 -07003663 }
Dianne Hackborn621e17d2010-11-22 15:59:56 -08003664
Craig Mautner21d24a22014-04-23 11:45:37 -07003665 void updateTaskMovement(TaskRecord task, boolean toFront) {
3666 if (task.isPersistable) {
3667 task.mLastTimeMoved = System.currentTimeMillis();
3668 // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
3669 // recently will be most negative, tasks sent to the bottom before that will be less
3670 // negative. Similarly for recent tasks moved to the top which will be most positive.
3671 if (!toFront) {
3672 task.mLastTimeMoved *= -1;
3673 }
3674 }
3675 }
3676
Craig Mautner84984fa2014-06-19 11:19:20 -07003677 void moveHomeStackTaskToTop(int homeStackTaskType) {
Craig Mautnera82aa092013-09-13 15:34:08 -07003678 final int top = mTaskHistory.size() - 1;
3679 for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
3680 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003681 if (task.taskType == homeStackTaskType) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003682 if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
3683 "moveHomeStackTaskToTop: moving " + task);
Craig Mautnera82aa092013-09-13 15:34:08 -07003684 mTaskHistory.remove(taskNdx);
3685 mTaskHistory.add(top, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07003686 updateTaskMovement(task, true);
Craig Mautnera82aa092013-09-13 15:34:08 -07003687 return;
3688 }
3689 }
3690 }
3691
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003692 final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, Bundle options,
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003693 AppTimeTracker timeTracker, String reason) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003694 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003695
Craig Mautner11bf9a52013-02-19 14:08:51 -08003696 final int numTasks = mTaskHistory.size();
3697 final int index = mTaskHistory.indexOf(tr);
Craig Mautner86d67a42013-05-14 10:34:38 -07003698 if (numTasks == 0 || index < 0) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003699 // nothing to do!
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003700 if (noAnimation) {
Craig Mautner11bf9a52013-02-19 14:08:51 -08003701 ActivityOptions.abort(options);
3702 } else {
3703 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
3704 }
3705 return;
3706 }
3707
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003708 if (timeTracker != null) {
3709 // The caller wants a time tracker associated with this task.
3710 for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
3711 tr.mActivities.get(i).appTimeTracker = timeTracker;
3712 }
3713 }
3714
Craig Mautner11bf9a52013-02-19 14:08:51 -08003715 // Shift all activities with this task up to the top
3716 // of the stack, keeping them in the same internal order.
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07003717 insertTaskAtTop(tr, null);
Wale Ogunwaled80c2632015-03-13 10:26:26 -07003718
3719 // Set focus to the top running activity of this stack.
3720 ActivityRecord r = topRunningActivityLocked(null);
3721 mService.setFocusedActivityLocked(r, reason);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003722
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003723 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
Craig Mautner8f5f7e92015-01-26 18:03:13 -08003724 if (noAnimation) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003725 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_NONE, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003726 if (r != null) {
3727 mNoAnimActivities.add(r);
3728 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -07003729 ActivityOptions.abort(options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003730 } else {
Craig Mautner4b71aa12012-12-27 17:20:01 -08003731 updateTransitLocked(AppTransition.TRANSIT_TASK_TO_FRONT, options);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003732 }
Craig Mautner30e2d722013-02-12 11:30:16 -08003733
Craig Mautner05d29032013-05-03 13:40:13 -07003734 mStackSupervisor.resumeTopActivitiesLocked();
Craig Mautner58547802013-03-05 08:23:53 -08003735 EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
Craig Mautner11bf9a52013-02-19 14:08:51 -08003736
3737 if (VALIDATE_TOKENS) {
3738 validateAppTokensLocked();
3739 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003740 }
3741
3742 /**
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003743 * Worker method for rearranging history stack. Implements the function of moving all
3744 * activities for a specific task (gathering them if disjoint) into a single group at the
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003745 * bottom of the stack.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003746 *
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003747 * If a watcher is installed, the action is preflighted and the watcher has an opportunity
3748 * to premeptively cancel the move.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003749 *
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003750 * @param taskId The taskId to collect and move to the bottom.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003751 * @return Returns true if the move completed, false if not.
3752 */
Craig Mautner299f9602015-01-26 09:47:33 -08003753 final boolean moveTaskToBackLocked(int taskId) {
Craig Mautneraea74a52014-03-08 14:23:10 -08003754 final TaskRecord tr = taskForIdLocked(taskId);
3755 if (tr == null) {
3756 Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
3757 return false;
3758 }
3759
3760 Slog.i(TAG, "moveTaskToBack: " + tr);
Craig Mautner15df08a2015-04-01 12:17:18 -07003761 mStackSupervisor.removeLockedTaskLocked(tr);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003762
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003763 // If we have a watcher, preflight the move before committing to it. First check
3764 // for *other* available tasks, but if none are available, then try again allowing the
3765 // current task to be selected.
Craig Mautnerde4ef022013-04-07 19:01:33 -07003766 if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003767 ActivityRecord next = topRunningActivityLocked(null, taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003768 if (next == null) {
3769 next = topRunningActivityLocked(null, 0);
3770 }
3771 if (next != null) {
3772 // ask watcher if this is allowed
3773 boolean moveOK = true;
3774 try {
3775 moveOK = mService.mController.activityResuming(next.packageName);
3776 } catch (RemoteException e) {
3777 mService.mController = null;
Kenny Rootadd58212013-05-07 09:47:34 -07003778 Watchdog.getInstance().setActivityController(null);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003779 }
3780 if (!moveOK) {
3781 return false;
3782 }
3783 }
3784 }
3785
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003786 if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003787
riddle_hsuc215a4f2014-12-27 12:10:45 +08003788 boolean prevIsHome = false;
3789 if (tr.isOverHomeStack()) {
3790 final TaskRecord nextTask = getNextTask(tr);
3791 if (nextTask != null) {
3792 nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
3793 } else {
3794 prevIsHome = true;
3795 }
3796 }
Craig Mautner11bf9a52013-02-19 14:08:51 -08003797 mTaskHistory.remove(tr);
3798 mTaskHistory.add(0, tr);
Craig Mautner21d24a22014-04-23 11:45:37 -07003799 updateTaskMovement(tr, false);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003800
Craig Mautnerc8143c62013-09-03 12:15:57 -07003801 // There is an assumption that moving a task to the back moves it behind the home activity.
3802 // We make sure here that some activity in the stack will launch home.
Craig Mautnerc8143c62013-09-03 12:15:57 -07003803 int numTasks = mTaskHistory.size();
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003804 for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
3805 final TaskRecord task = mTaskHistory.get(taskNdx);
Craig Mautner84984fa2014-06-19 11:19:20 -07003806 if (task.isOverHomeStack()) {
Craig Mautnerc8143c62013-09-03 12:15:57 -07003807 break;
3808 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003809 if (taskNdx == 1) {
3810 // Set the last task before tr to go to home.
Craig Mautner84984fa2014-06-19 11:19:20 -07003811 task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003812 }
Craig Mautnerc8143c62013-09-03 12:15:57 -07003813 }
3814
Craig Mautner299f9602015-01-26 09:47:33 -08003815 mWindowManager.prepareAppTransition(AppTransition.TRANSIT_TASK_TO_BACK, false);
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003816 mWindowManager.moveTaskToBottom(taskId);
Craig Mautnerb44de0d2013-02-21 20:00:58 -08003817
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003818 if (VALIDATE_TOKENS) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08003819 validateAppTokensLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003820 }
3821
Craig Mautnerae7ecab2013-09-18 11:48:14 -07003822 final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
riddle_hsuc215a4f2014-12-27 12:10:45 +08003823 if (prevIsHome || task == tr && tr.isOverHomeStack()
3824 || numTasks <= 1 && isOnHomeDisplay()) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07003825 if (!mService.mBooting && !mService.mBooted) {
3826 // Not ready yet!
3827 return false;
3828 }
Craig Mautner84984fa2014-06-19 11:19:20 -07003829 final int taskToReturnTo = tr.getTaskToReturnTo();
3830 tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
Craig Mautner299f9602015-01-26 09:47:33 -08003831 return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
Craig Mautnerde4ef022013-04-07 19:01:33 -07003832 }
3833
Craig Mautner05d29032013-05-03 13:40:13 -07003834 mStackSupervisor.resumeTopActivitiesLocked();
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003835 return true;
3836 }
Dianne Hackborn15491c62012-09-19 10:59:14 -07003837
Craig Mautner8849a5e2013-04-02 16:41:03 -07003838 static final void logStartActivity(int tag, ActivityRecord r,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003839 TaskRecord task) {
Santos Cordon73ff7d82013-03-06 17:24:11 -08003840 final Uri data = r.intent.getData();
3841 final String strData = data != null ? data.toSafeString() : null;
3842
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003843 EventLog.writeEvent(tag,
Dianne Hackbornb12e1352012-09-26 11:39:20 -07003844 r.userId, System.identityHashCode(r), task.taskId,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003845 r.shortComponentName, r.intent.getAction(),
Santos Cordon73ff7d82013-03-06 17:24:11 -08003846 r.intent.getType(), strData, r.intent.getFlags());
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003847 }
3848
3849 /**
3850 * Make sure the given activity matches the current configuration. Returns
3851 * false if the activity had to be destroyed. Returns true if the
3852 * configuration is the same, or the activity will remain running as-is
3853 * for whatever reason. Ensures the HistoryRecord is updated with the
3854 * correct configuration and all other bookkeeping is handled.
3855 */
3856 final boolean ensureActivityConfigurationLocked(ActivityRecord r,
3857 int globalChanges) {
3858 if (mConfigWillChange) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003859 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003860 "Skipping config check (will change): " + r);
3861 return true;
3862 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003863
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003864 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003865 "Ensuring correct configuration: " + r);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07003866
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003867 // Short circuit: if the two configurations are the exact same
3868 // object (the common case), then there is nothing to do.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003869 final Configuration newConfig = mService.mConfiguration;
3870 final Configuration taskConfig = r.task.mOverrideConfig;
Wale Ogunwale60454db2015-01-23 16:05:07 -08003871 if (r.configuration == newConfig
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003872 && r.taskConfigOverride == taskConfig
Wale Ogunwale60454db2015-01-23 16:05:07 -08003873 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003874 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003875 "Configuration unchanged in " + r);
3876 return true;
3877 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003878
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003879 // We don't worry about activities that are finishing.
3880 if (r.finishing) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003881 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003882 "Configuration doesn't matter in finishing " + r);
3883 r.stopFreezingScreenLocked(false);
3884 return true;
3885 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003886
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003887 // Okay we now are going to make this activity have the new config.
3888 // But then we need to figure out how it needs to deal with that.
Wale Ogunwale60454db2015-01-23 16:05:07 -08003889 final Configuration oldConfig = r.configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003890 final Configuration oldTaskOverride = r.taskConfigOverride;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003891 r.configuration = newConfig;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003892 r.taskConfigOverride = taskConfig;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003893
3894 // Determine what has changed. May be nothing, if this is a config
3895 // that has come back from the app after going idle. In that case
3896 // we just want to leave the official config object now in the
3897 // activity and do nothing else.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003898 int taskChanges = oldTaskOverride.diff(taskConfig);
3899 if (taskChanges == 0) {
Wale Ogunwalea9281272015-02-07 14:04:19 -08003900 // {@link Configuration#diff} doesn't catch changes from unset values.
3901 // Check for changes we care about.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003902 if (oldTaskOverride.orientation != taskConfig.orientation) {
3903 taskChanges |= ActivityInfo.CONFIG_ORIENTATION;
Wale Ogunwalea9281272015-02-07 14:04:19 -08003904 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003905 if (oldTaskOverride.screenHeightDp != taskConfig.screenHeightDp
3906 || oldTaskOverride.screenWidthDp != taskConfig.screenWidthDp) {
3907 taskChanges |= ActivityInfo.CONFIG_SCREEN_SIZE;
Wale Ogunwalea9281272015-02-07 14:04:19 -08003908 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003909 if (oldTaskOverride.smallestScreenWidthDp != taskConfig.smallestScreenWidthDp) {
3910 taskChanges |= ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
Wale Ogunwalea9281272015-02-07 14:04:19 -08003911 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08003912 }
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003913 final int changes = oldConfig.diff(newConfig) | taskChanges;
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003914 if (changes == 0 && !r.forceNewConfig) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003915 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003916 "Configuration no differences in " + r);
3917 return true;
3918 }
3919
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003920 // If the activity isn't currently running, just leave the new
3921 // configuration and it will pick that up next time it starts.
3922 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003923 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003924 "Configuration doesn't matter not running " + r);
3925 r.stopFreezingScreenLocked(false);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003926 r.forceNewConfig = false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003927 return true;
3928 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003929
Dianne Hackborn58f42a52011-10-10 13:46:34 -07003930 // Figure out how to handle the changes between the configurations.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003931 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
3932 "Checking to restart " + r.info.name + ": changed=0x"
3933 + Integer.toHexString(changes) + ", handles=0x"
3934 + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig);
3935
Dianne Hackborne6676352011-06-01 16:51:20 -07003936 if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003937 // Aha, the activity isn't handling the change, so DIE DIE DIE.
3938 r.configChangeFlags |= changes;
3939 r.startFreezingScreenLocked(r.app, globalChanges);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04003940 r.forceNewConfig = false;
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003941 if (r.app == null || r.app.thread == null) {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003942 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003943 "Config is destroying non-running " + r);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003944 destroyActivityLocked(r, true, "config");
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003945 } else if (r.state == ActivityState.PAUSING) {
3946 // A little annoying: we are waiting for this activity to
3947 // finish pausing. Let's not do anything now, but just
3948 // flag that it needs to be restarted when done pausing.
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003949 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003950 "Config is skipping already pausing " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003951 r.configDestroy = true;
3952 return true;
3953 } else if (r.state == ActivityState.RESUMED) {
3954 // Try to optimize this case: the configuration is changing
3955 // and we need to restart the top, resumed activity.
3956 // Instead of doing the normal handshaking, just say
3957 // "restart!".
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003958 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003959 "Config is relaunching resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003960 relaunchActivityLocked(r, r.configChangeFlags, true);
3961 r.configChangeFlags = 0;
3962 } else {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003963 if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
Dianne Hackbornb61a0262012-05-14 17:19:18 -07003964 "Config is relaunching non-resumed " + r);
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003965 relaunchActivityLocked(r, r.configChangeFlags, false);
3966 r.configChangeFlags = 0;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003967 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003968
Dianne Hackborn3c4c2b72010-10-05 18:07:54 -07003969 // All done... tell the caller we weren't able to keep this
3970 // activity around.
3971 return false;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003972 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003973
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003974 // Default case: the activity can handle this new configuration, so hand it over.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003975 // NOTE: We only forward the task override configuration as the system level configuration
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003976 // changes is always sent to all processes when they happen so it can just use whatever
3977 // system level configuration it last got.
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003978 if (r.app != null && r.app.thread != null) {
3979 try {
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07003980 if (DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION, "Sending new config to " + r);
Wale Ogunwalec2607b42015-02-07 16:16:59 -08003981 r.app.thread.scheduleActivityConfigurationChanged(
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07003982 r.appToken, new Configuration(taskConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003983 } catch (RemoteException e) {
3984 // If process died, whatever.
3985 }
3986 }
3987 r.stopFreezingScreenLocked(false);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003988
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003989 return true;
3990 }
3991
Craig Mautner2568c3a2015-03-26 14:22:34 -07003992 private boolean relaunchActivityLocked(ActivityRecord r, int changes, boolean andResume) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003993 List<ResultInfo> results = null;
Dianne Hackborn85d558c2014-11-04 10:31:54 -08003994 List<ReferrerIntent> newIntents = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07003995 if (andResume) {
3996 results = r.results;
3997 newIntents = r.newIntents;
3998 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003999 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4000 "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004001 + " andResume=" + andResume);
4002 EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
Dianne Hackbornb12e1352012-09-26 11:39:20 -07004003 : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004004 r.task.taskId, r.shortComponentName);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004005
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004006 r.startFreezingScreenLocked(r.app, 0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07004007
Craig Mautner34b73df2014-01-12 21:11:08 -08004008 mStackSupervisor.removeChildActivityContainers(r);
4009
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004010 try {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004011 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
4012 "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r);
Dianne Hackborne2515ee2011-04-27 18:52:56 -04004013 r.forceNewConfig = false;
Wale Ogunwale60454db2015-01-23 16:05:07 -08004014 r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4015 !andResume, new Configuration(mService.mConfiguration),
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004016 new Configuration(r.task.mOverrideConfig));
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004017 // Note: don't need to call pauseIfSleepingLocked() here, because
4018 // the caller will only pass in 'andResume' if this activity is
4019 // currently resumed, which implies we aren't sleeping.
4020 } catch (RemoteException e) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004021 if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004022 }
4023
4024 if (andResume) {
4025 r.results = null;
4026 r.newIntents = null;
Dianne Hackbornb61a0262012-05-14 17:19:18 -07004027 r.state = ActivityState.RESUMED;
4028 } else {
4029 mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4030 r.state = ActivityState.PAUSED;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004031 }
4032
4033 return true;
4034 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004035
4036 boolean willActivityBeVisibleLocked(IBinder token) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004037 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4038 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4039 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4040 final ActivityRecord r = activities.get(activityNdx);
4041 if (r.appToken == token) {
Craig Mautner34b73df2014-01-12 21:11:08 -08004042 return true;
Craig Mautnerd44711d2013-02-23 11:24:36 -08004043 }
4044 if (r.fullscreen && !r.finishing) {
4045 return false;
4046 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004047 }
4048 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07004049 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautner34b73df2014-01-12 21:11:08 -08004050 if (r == null) {
4051 return false;
4052 }
4053 if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4054 + " would have returned true for r=" + r);
4055 return !r.finishing;
Craig Mautnercae015f2013-02-08 14:31:27 -08004056 }
4057
4058 void closeSystemDialogsLocked() {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004059 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4060 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4061 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4062 final ActivityRecord r = activities.get(activityNdx);
4063 if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -08004064 finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004065 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004066 }
4067 }
4068 }
4069
Wale Ogunwale540e1232015-05-01 15:35:39 -07004070 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4071 boolean doit, boolean evenPersistent, int userId) {
Craig Mautnercae015f2013-02-08 14:31:27 -08004072 boolean didSomething = false;
4073 TaskRecord lastTask = null;
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004074 ComponentName homeActivity = null;
Craig Mautner56f52db2013-02-25 10:03:01 -08004075 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4076 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4077 int numActivities = activities.size();
4078 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4079 ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004080 final boolean sameComponent =
4081 (r.packageName.equals(packageName) && (filterByClasses == null
4082 || filterByClasses.contains(r.realActivity.getClassName())))
4083 || (packageName == null && r.userId == userId);
Craig Mautner56f52db2013-02-25 10:03:01 -08004084 if ((userId == UserHandle.USER_ALL || r.userId == userId)
Wale Ogunwale540e1232015-05-01 15:35:39 -07004085 && (sameComponent || r.task == lastTask)
Craig Mautner56f52db2013-02-25 10:03:01 -08004086 && (r.app == null || evenPersistent || !r.app.persistent)) {
4087 if (!doit) {
4088 if (r.finishing) {
4089 // If this activity is just finishing, then it is not
4090 // interesting as far as something to stop.
4091 continue;
4092 }
4093 return true;
Craig Mautnercae015f2013-02-08 14:31:27 -08004094 }
Craig Mautner9d8a30d2014-07-07 17:26:20 +00004095 if (r.isHomeActivity()) {
4096 if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4097 Slog.i(TAG, "Skip force-stop again " + r);
4098 continue;
4099 } else {
4100 homeActivity = r.realActivity;
4101 }
4102 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004103 didSomething = true;
4104 Slog.i(TAG, " Force finishing activity " + r);
Wale Ogunwale540e1232015-05-01 15:35:39 -07004105 if (sameComponent) {
Craig Mautner56f52db2013-02-25 10:03:01 -08004106 if (r.app != null) {
4107 r.app.removed = true;
4108 }
4109 r.app = null;
Craig Mautnercae015f2013-02-08 14:31:27 -08004110 }
Craig Mautner56f52db2013-02-25 10:03:01 -08004111 lastTask = r.task;
Craig Mautnerd94b1b42013-05-01 11:58:03 -07004112 if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4113 true)) {
4114 // r has been deleted from mActivities, accommodate.
4115 --numActivities;
4116 --activityNdx;
4117 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004118 }
4119 }
4120 }
4121 return didSomething;
4122 }
4123
Dianne Hackborn09233282014-04-30 11:33:59 -07004124 void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
riddle_hsuddc74152015-04-07 11:30:09 +08004125 boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4126 boolean topTask = true;
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004127 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004128 final TaskRecord task = mTaskHistory.get(taskNdx);
riddle_hsuddc74152015-04-07 11:30:09 +08004129 if (task.getTopActivity() == null) {
4130 continue;
4131 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004132 ActivityRecord r = null;
4133 ActivityRecord top = null;
Wale Ogunwale6035e012015-04-14 15:54:10 -07004134 ActivityRecord tmp;
Craig Mautneraab647e2013-02-28 16:31:36 -08004135 int numActivities = 0;
4136 int numRunning = 0;
4137 final ArrayList<ActivityRecord> activities = task.mActivities;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07004138 if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
Dianne Hackborn09233282014-04-30 11:33:59 -07004139 continue;
4140 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004141 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale6035e012015-04-14 15:54:10 -07004142 tmp = activities.get(activityNdx);
4143 if (tmp.finishing) {
4144 continue;
4145 }
4146 r = tmp;
Craig Mautnercae015f2013-02-08 14:31:27 -08004147
Craig Mautneraab647e2013-02-28 16:31:36 -08004148 // Initialize state for next task if needed.
4149 if (top == null || (top.state == ActivityState.INITIALIZING)) {
4150 top = r;
4151 numActivities = numRunning = 0;
Craig Mautnercae015f2013-02-08 14:31:27 -08004152 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004153
4154 // Add 'r' into the current task.
4155 numActivities++;
4156 if (r.app != null && r.app.thread != null) {
4157 numRunning++;
4158 }
4159
Wale Ogunwalee23149f2015-03-06 15:39:44 -08004160 if (DEBUG_ALL) Slog.v(
Craig Mautneraab647e2013-02-28 16:31:36 -08004161 TAG, r.intent.getComponent().flattenToShortString()
4162 + ": task=" + r.task);
4163 }
4164
4165 RunningTaskInfo ci = new RunningTaskInfo();
4166 ci.id = task.taskId;
4167 ci.baseActivity = r.intent.getComponent();
4168 ci.topActivity = top.intent.getComponent();
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004169 ci.lastActiveTime = task.lastActiveTime;
riddle_hsuddc74152015-04-07 11:30:09 +08004170 if (focusedStack && topTask) {
4171 // Give the latest time to ensure foreground task can be sorted
4172 // at the first, because lastActiveTime of creating task is 0.
4173 ci.lastActiveTime = System.currentTimeMillis();
4174 topTask = false;
4175 }
Craig Mautnerc0fd8052013-09-19 11:20:17 -07004176
Craig Mautnerc0ffce52014-07-01 12:38:52 -07004177 if (top.task != null) {
4178 ci.description = top.task.lastDescription;
Craig Mautneraab647e2013-02-28 16:31:36 -08004179 }
4180 ci.numActivities = numActivities;
4181 ci.numRunning = numRunning;
Craig Mautneraab647e2013-02-28 16:31:36 -08004182 list.add(ci);
Craig Mautnercae015f2013-02-08 14:31:27 -08004183 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004184 }
4185
4186 public void unhandledBackLocked() {
Craig Mautneraab647e2013-02-28 16:31:36 -08004187 final int top = mTaskHistory.size() - 1;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004188 if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
Craig Mautneraab647e2013-02-28 16:31:36 -08004189 if (top >= 0) {
4190 final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4191 int activityTop = activities.size() - 1;
4192 if (activityTop > 0) {
4193 finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4194 "unhandled-back", true);
4195 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004196 }
4197 }
4198
Craig Mautner6b74cb52013-09-27 17:02:21 -07004199 /**
4200 * Reset local parameters because an app's activity died.
4201 * @param app The app of the activity that died.
Craig Mautner19091252013-10-05 00:03:53 -07004202 * @return result from removeHistoryRecordsForAppLocked.
Craig Mautner6b74cb52013-09-27 17:02:21 -07004203 */
4204 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautnere79d42682013-04-01 19:01:53 -07004205 if (mPausingActivity != null && mPausingActivity.app == app) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004206 if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
Craig Mautnere79d42682013-04-01 19:01:53 -07004207 "App died while pausing: " + mPausingActivity);
4208 mPausingActivity = null;
4209 }
4210 if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4211 mLastPausedActivity = null;
Craig Mautner0f922742013-08-06 08:44:42 -07004212 mLastNoHistoryActivity = null;
Craig Mautnere79d42682013-04-01 19:01:53 -07004213 }
4214
Craig Mautner19091252013-10-05 00:03:53 -07004215 return removeHistoryRecordsForAppLocked(app);
Craig Mautnere79d42682013-04-01 19:01:53 -07004216 }
4217
Craig Mautnercae015f2013-02-08 14:31:27 -08004218 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnerd44711d2013-02-23 11:24:36 -08004219 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4220 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4221 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4222 final ActivityRecord r = activities.get(activityNdx);
4223 if (r.app == app) {
4224 Slog.w(TAG, " Force finishing activity "
4225 + r.intent.getComponent().flattenToShortString());
Craig Mautner8e5b1332014-07-24 13:32:37 -07004226 // Force the destroy to skip right to removal.
4227 r.app = null;
4228 finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
Craig Mautnerd44711d2013-02-23 11:24:36 -08004229 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004230 }
4231 }
4232 }
4233
Dianne Hackborn390517b2013-05-30 15:03:32 -07004234 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004235 boolean dumpClient, String dumpPackage, boolean needSep, String header) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07004236 boolean printed = false;
Craig Mautneraab647e2013-02-28 16:31:36 -08004237 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4238 final TaskRecord task = mTaskHistory.get(taskNdx);
Dianne Hackborn390517b2013-05-30 15:03:32 -07004239 printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4240 mTaskHistory.get(taskNdx).mActivities, " ", "Hist", true, !dumpAll,
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004241 dumpClient, dumpPackage, needSep, header,
Craig Mautnerac6f8432013-07-17 13:24:59 -07004242 " Task id #" + task.taskId);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07004243 if (printed) {
4244 header = null;
4245 }
Craig Mautneraab647e2013-02-28 16:31:36 -08004246 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07004247 return printed;
Craig Mautnercae015f2013-02-08 14:31:27 -08004248 }
4249
4250 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4251 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4252
4253 if ("all".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004254 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4255 activities.addAll(mTaskHistory.get(taskNdx).mActivities);
Craig Mautnercae015f2013-02-08 14:31:27 -08004256 }
4257 } else if ("top".equals(name)) {
Craig Mautneraab647e2013-02-28 16:31:36 -08004258 final int top = mTaskHistory.size() - 1;
4259 if (top >= 0) {
4260 final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4261 int listTop = list.size() - 1;
4262 if (listTop >= 0) {
4263 activities.add(list.get(listTop));
4264 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004265 }
4266 } else {
4267 ItemMatcher matcher = new ItemMatcher();
4268 matcher.build(name);
4269
Craig Mautneraab647e2013-02-28 16:31:36 -08004270 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4271 for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4272 if (matcher.match(r1, r1.intent.getComponent())) {
4273 activities.add(r1);
4274 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004275 }
4276 }
4277 }
4278
4279 return activities;
4280 }
4281
4282 ActivityRecord restartPackage(String packageName) {
4283 ActivityRecord starting = topRunningActivityLocked(null);
4284
4285 // All activities that came from the package must be
4286 // restarted as if there was a config change.
Craig Mautneraab647e2013-02-28 16:31:36 -08004287 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4288 final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4289 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4290 final ActivityRecord a = activities.get(activityNdx);
4291 if (a.info.packageName.equals(packageName)) {
4292 a.forceNewConfig = true;
4293 if (starting != null && a == starting && a.visible) {
4294 a.startFreezingScreenLocked(starting.app,
4295 ActivityInfo.CONFIG_SCREEN_LAYOUT);
4296 }
Craig Mautnercae015f2013-02-08 14:31:27 -08004297 }
4298 }
4299 }
4300
4301 return starting;
4302 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004303
Craig Mautner299f9602015-01-26 09:47:33 -08004304 void removeTask(TaskRecord task, String reason) {
Wale Ogunwale000957c2015-04-03 08:19:12 -07004305 removeTask(task, reason, true /* notMoving */);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004306 }
4307
Wale Ogunwale000957c2015-04-03 08:19:12 -07004308 /**
4309 * Removes the input task from this stack.
4310 * @param task to remove.
4311 * @param reason for removal.
4312 * @param notMoving task to another stack. In the case we are moving we don't want to perform
4313 * some operations on the task like removing it from window manager or recents.
4314 */
4315 void removeTask(TaskRecord task, String reason, boolean notMoving) {
4316 if (notMoving) {
Craig Mautner15df08a2015-04-01 12:17:18 -07004317 mStackSupervisor.removeLockedTaskLocked(task);
Wale Ogunwale53a29a92015-02-23 15:42:52 -08004318 mWindowManager.removeTask(task.taskId);
4319 }
Wale Ogunwale000957c2015-04-03 08:19:12 -07004320
Craig Mautner04a0ea62014-01-13 12:51:26 -08004321 final ActivityRecord r = mResumedActivity;
4322 if (r != null && r.task == task) {
4323 mResumedActivity = null;
4324 }
4325
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004326 final int taskNdx = mTaskHistory.indexOf(task);
4327 final int topTaskNdx = mTaskHistory.size() - 1;
Craig Mautner84984fa2014-06-19 11:19:20 -07004328 if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
4329 final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
4330 if (!nextTask.isOverHomeStack()) {
4331 nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4332 }
Craig Mautnerae7ecab2013-09-18 11:48:14 -07004333 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004334 mTaskHistory.remove(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004335 updateTaskMovement(task, true);
Craig Mautner41db4a72014-05-07 17:20:56 -07004336
Wale Ogunwale000957c2015-04-03 08:19:12 -07004337 if (notMoving && task.mActivities.isEmpty()) {
Craig Mautner41db4a72014-05-07 17:20:56 -07004338 final boolean isVoiceSession = task.voiceSession != null;
4339 if (isVoiceSession) {
4340 try {
4341 task.voiceSession.taskFinished(task.intent, task.taskId);
4342 } catch (RemoteException e) {
4343 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004344 }
Craig Mautner41db4a72014-05-07 17:20:56 -07004345 if (task.autoRemoveFromRecents() || isVoiceSession) {
4346 // Task creator asked to remove this when done, or this task was a voice
4347 // interaction, so it should not remain on the recent tasks list.
Wale Ogunwalec82f2f52014-12-09 09:32:50 -08004348 mRecentTasks.remove(task);
Winson Chung740c3ac2014-11-12 16:14:38 -08004349 task.removedFromRecents();
Craig Mautner41db4a72014-05-07 17:20:56 -07004350 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07004351 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004352
4353 if (mTaskHistory.isEmpty()) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07004354 if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004355 final boolean notHomeStack = !isHomeStack();
Craig Mautner04a0ea62014-01-13 12:51:26 -08004356 if (isOnHomeDisplay()) {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08004357 String myReason = reason + " leftTaskHistoryEmpty";
4358 if (mFullscreen || !adjustFocusToNextVisibleStackLocked(null, myReason)) {
4359 mStackSupervisor.moveHomeStack(notHomeStack, myReason);
4360 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004361 }
Craig Mautner593a4e62014-01-15 17:55:51 -08004362 if (mStacks != null) {
4363 mStacks.remove(this);
4364 mStacks.add(0, this);
4365 }
Wale Ogunwale49853bf2015-02-23 09:24:42 -08004366 if (notHomeStack) {
4367 mActivityContainer.onTaskListEmptyLocked();
4368 }
Craig Mautner04a0ea62014-01-13 12:51:26 -08004369 }
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -07004370
4371 task.stack = null;
Craig Mautner0247fc82013-02-28 14:32:06 -08004372 }
4373
Dianne Hackborn91097de2014-04-04 18:02:06 -07004374 TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
4375 IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
4376 boolean toTop) {
Craig Mautner21d24a22014-04-23 11:45:37 -07004377 TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
4378 voiceInteractor);
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004379 addTask(task, toTop, false);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08004380 return task;
4381 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004382
4383 ArrayList<TaskRecord> getAllTasks() {
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08004384 return new ArrayList<>(mTaskHistory);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004385 }
4386
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004387 void addTask(final TaskRecord task, final boolean toTop, boolean moving) {
Craig Mautnerc00204b2013-03-05 15:02:14 -08004388 task.stack = this;
4389 if (toTop) {
Wale Ogunwale3fcb4a82015-04-06 14:00:13 -07004390 insertTaskAtTop(task, null);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004391 } else {
4392 mTaskHistory.add(0, task);
Craig Mautner21d24a22014-04-23 11:45:37 -07004393 updateTaskMovement(task, false);
Craig Mautnerc00204b2013-03-05 15:02:14 -08004394 }
Dianne Hackbornc03c9162014-05-02 10:45:59 -07004395 if (!moving && task.voiceSession != null) {
4396 try {
4397 task.voiceSession.taskStarted(task.intent, task.taskId);
4398 } catch (RemoteException e) {
4399 }
4400 }
Craig Mautnerc00204b2013-03-05 15:02:14 -08004401 }
4402
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07004403 void positionTask(final TaskRecord task, int position, boolean moving) {
4404 task.stack = this;
4405 insertTaskAtPosition(task, position);
4406 if (!moving && task.voiceSession != null) {
4407 try {
4408 task.voiceSession.taskStarted(task.intent, task.taskId);
4409 } catch (RemoteException e) {
4410 }
4411 }
4412 }
4413
Wale Ogunwale706ed792015-08-02 10:29:44 -07004414 void addAppToken(ActivityRecord r, TaskRecord task) {
4415 final Rect bounds = task.getLaunchBounds();
4416 final Configuration config =
4417 mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
4418 r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
4419 (r.info.flags & ActivityInfo.FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId,
4420 r.info.configChanges, task.voiceSession != null, r.mLaunchTaskBehind,
4421 bounds);
4422 if (config != null) {
4423 task.updateOverrideConfiguration(config, bounds);
4424 }
4425 r.taskConfigOverride = task.mOverrideConfig;
4426 }
4427
4428 private void setAppTask(ActivityRecord r, TaskRecord task) {
4429 final Rect bounds = task.getLaunchBounds();
4430 final Configuration config =
4431 mWindowManager.setAppTask(r.appToken, task.taskId, task.getLaunchBounds());
4432 if (config != null) {
4433 task.updateOverrideConfiguration(config, bounds);
4434 }
4435 r.taskConfigOverride = task.mOverrideConfig;
4436 }
4437
Craig Mautnerc00204b2013-03-05 15:02:14 -08004438 public int getStackId() {
4439 return mStackId;
4440 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07004441
4442 @Override
4443 public String toString() {
Dianne Hackborn2a272d42013-10-16 13:34:33 -07004444 return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
4445 + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
Craig Mautnerde4ef022013-04-07 19:01:33 -07004446 }
Wale Ogunwale60454db2015-01-23 16:05:07 -08004447
Craig Mautner15df08a2015-04-01 12:17:18 -07004448 void onLockTaskPackagesUpdatedLocked() {
4449 for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4450 mTaskHistory.get(taskNdx).setLockTaskAuth();
4451 }
4452 }
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07004453}