blob: 5525cdb380b71393281076cd54777ba301c0cc92 [file] [log] [blame]
Craig Mautner27084302013-03-25 08:05:25 -07001/*
2 * Copyright (C) 2013 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
Andrii Kulian3c9ad072017-08-01 11:45:22 -070019import static android.Manifest.permission.ACTIVITY_EMBEDDING;
Andrii Kulian3a95edc2017-06-28 16:21:07 -070020import static android.Manifest.permission.INTERNAL_SYSTEM_WINDOW;
Jorim Jaggife762342016-10-13 14:33:27 +020021import static android.Manifest.permission.START_ANY_ACTIVITY;
22import static android.Manifest.permission.START_TASKS_FROM_RECENTS;
Charles Heff9b4dff2017-09-22 10:18:37 +010023import static android.app.ActivityManager.LOCK_TASK_MODE_LOCKED;
Jorim Jaggife762342016-10-13 14:33:27 +020024import static android.app.ActivityManager.START_TASK_TO_FRONT;
Jorim Jaggife762342016-10-13 14:33:27 +020025import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Andrii Kulian036e3ad2017-04-19 10:55:10 -070026import static android.app.ITaskStackListener.FORCED_RESIZEABLE_REASON_SECONDARY_DISPLAY;
27import static android.app.ITaskStackListener.FORCED_RESIZEABLE_REASON_SPLIT_SCREEN;
Wale Ogunwale68278562017-09-23 17:13:55 -070028import static android.app.WindowConfiguration.ACTIVITY_TYPE_ASSISTANT;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070029import static android.app.WindowConfiguration.ACTIVITY_TYPE_HOME;
Wale Ogunwale0568aed2017-09-08 13:29:37 -070030import static android.app.WindowConfiguration.ACTIVITY_TYPE_RECENTS;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070031import static android.app.WindowConfiguration.ACTIVITY_TYPE_STANDARD;
32import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale0568aed2017-09-08 13:29:37 -070033import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Wale Ogunwale926aade2017-08-29 11:24:37 -070034import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070035import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY;
Wale Ogunwale0568aed2017-09-08 13:29:37 -070036import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
37import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwale926aade2017-08-29 11:24:37 -070038import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
Wale Ogunwale0568aed2017-09-08 13:29:37 -070039import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070040import static android.app.WindowConfiguration.activityTypeToString;
41import static android.app.WindowConfiguration.windowingModeToString;
Andrii Kulian3c9ad072017-08-01 11:45:22 -070042import static android.content.pm.PackageManager.PERMISSION_DENIED;
Jorim Jaggife762342016-10-13 14:33:27 +020043import static android.content.pm.PackageManager.PERMISSION_GRANTED;
chaviw59b98852017-06-13 12:05:44 -070044import static android.os.PowerManager.PARTIAL_WAKE_LOCK;
Benjamin Franza83859f2017-07-03 16:34:14 +010045import static android.os.Process.SYSTEM_UID;
Jorim Jaggife762342016-10-13 14:33:27 +020046import static android.os.Trace.TRACE_TAG_ACTIVITY_MANAGER;
47import static android.view.Display.DEFAULT_DISPLAY;
Andrii Kulian16802aa2016-11-02 12:21:33 -070048import static android.view.Display.INVALID_DISPLAY;
Andrii Kulian1cba31c2017-06-28 09:42:48 -070049import static android.view.Display.TYPE_VIRTUAL;
Winson Chung1dbc8112017-09-28 18:05:31 -070050
Winson Chung47900652017-04-06 18:44:25 -070051import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN;
Jorim Jaggife762342016-10-13 14:33:27 +020052import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ALL;
Jorim Jaggife762342016-10-13 14:33:27 +020053import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_FOCUS;
54import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_IDLE;
Jorim Jaggife762342016-10-13 14:33:27 +020055import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_PAUSE;
56import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RECENTS;
57import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RELEASE;
58import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STACK;
59import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STATES;
60import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
61import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
Jorim Jaggife762342016-10-13 14:33:27 +020062import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_FOCUS;
63import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_IDLE;
Jorim Jaggife762342016-10-13 14:33:27 +020064import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_PAUSE;
65import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RECENTS;
66import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RELEASE;
67import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STACK;
68import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
69import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
70import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
Jorim Jaggife762342016-10-13 14:33:27 +020071import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
72import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
73import static com.android.server.am.ActivityManagerService.ANIMATE;
74import static com.android.server.am.ActivityManagerService.FIRST_SUPERVISOR_STACK_MSG;
Jorim Jaggife762342016-10-13 14:33:27 +020075import static com.android.server.am.ActivityStack.ActivityState.DESTROYED;
76import static com.android.server.am.ActivityStack.ActivityState.DESTROYING;
77import static com.android.server.am.ActivityStack.ActivityState.INITIALIZING;
78import static com.android.server.am.ActivityStack.ActivityState.PAUSED;
79import static com.android.server.am.ActivityStack.ActivityState.PAUSING;
80import static com.android.server.am.ActivityStack.ActivityState.RESUMED;
81import static com.android.server.am.ActivityStack.ActivityState.STOPPED;
82import static com.android.server.am.ActivityStack.ActivityState.STOPPING;
83import static com.android.server.am.ActivityStack.REMOVE_TASK_MODE_MOVING;
Wale Ogunwale0568aed2017-09-08 13:29:37 -070084import static com.android.server.am.TaskRecord.INVALID_TASK_ID;
Jorim Jaggife762342016-10-13 14:33:27 +020085import static com.android.server.am.TaskRecord.LOCK_TASK_AUTH_LAUNCHABLE;
86import static com.android.server.am.TaskRecord.LOCK_TASK_AUTH_LAUNCHABLE_PRIV;
Charles Heff9b4dff2017-09-22 10:18:37 +010087import static com.android.server.am.TaskRecord.LOCK_TASK_AUTH_WHITELISTED;
Winson Chung74666102017-02-22 17:49:24 -080088import static com.android.server.am.TaskRecord.REPARENT_KEEP_STACK_AT_FRONT;
89import static com.android.server.am.TaskRecord.REPARENT_LEAVE_STACK_IN_PLACE;
90import static com.android.server.am.TaskRecord.REPARENT_MOVE_STACK_TO_FRONT;
Winson Chung1dbc8112017-09-28 18:05:31 -070091import static com.android.server.am.proto.ActivityStackSupervisorProto.CONFIGURATION_CONTAINER;
Steven Timotius4346f0a2017-09-12 11:07:21 -070092import static com.android.server.am.proto.ActivityStackSupervisorProto.DISPLAYS;
93import static com.android.server.am.proto.ActivityStackSupervisorProto.FOCUSED_STACK_ID;
94import static com.android.server.am.proto.ActivityStackSupervisorProto.KEYGUARD_CONTROLLER;
95import static com.android.server.am.proto.ActivityStackSupervisorProto.RESUMED_ACTIVITY;
Jorim Jaggife762342016-10-13 14:33:27 +020096import static com.android.server.wm.AppTransition.TRANSIT_DOCK_TASK_FROM_RECENTS;
Winson Chung1dbc8112017-09-28 18:05:31 -070097
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080098import static java.lang.Integer.MAX_VALUE;
Jorim Jaggife762342016-10-13 14:33:27 +020099
Svetoslav7008b512015-06-24 18:47:07 -0700100import android.Manifest;
Winson Chung7900bee2017-03-10 08:59:25 -0800101import android.annotation.IntDef;
Andrii Kulian16802aa2016-11-02 12:21:33 -0700102import android.annotation.NonNull;
Wale Ogunwale0568aed2017-09-08 13:29:37 -0700103import android.annotation.Nullable;
Tony Mak853304c2016-04-18 15:17:41 +0100104import android.annotation.UserIdInt;
Craig Mautner2420ead2013-04-01 17:13:20 -0700105import android.app.Activity;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700106import android.app.ActivityManager;
Filip Gruszczynski80e29f12015-12-14 14:58:30 -0800107import android.app.ActivityManager.RunningTaskInfo;
Craig Mautnered6649f2013-12-02 14:08:25 -0800108import android.app.ActivityManager.StackInfo;
David Stevens9440dc82017-03-16 19:00:20 -0700109import android.app.ActivityManagerInternal.SleepToken;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700110import android.app.ActivityOptions;
Svetoslav7008b512015-06-24 18:47:07 -0700111import android.app.AppOpsManager;
Jeff Hao1b012d32014-08-20 10:35:34 -0700112import android.app.ProfilerInfo;
Craig Mautner2420ead2013-04-01 17:13:20 -0700113import android.app.ResultInfo;
Sudheer Shankafc46e9b2016-10-21 17:55:27 -0700114import android.app.WaitResult;
Winson Chung61c9e5a2017-10-11 10:39:32 -0700115import android.app.WindowConfiguration.ActivityType;
116import android.app.WindowConfiguration.WindowingMode;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700117import android.content.ComponentName;
Craig Mautner2219a1b2013-03-25 09:44:30 -0700118import android.content.Context;
119import android.content.Intent;
120import android.content.pm.ActivityInfo;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700121import android.content.pm.ApplicationInfo;
Svetoslav7008b512015-06-24 18:47:07 -0700122import android.content.pm.PackageInfo;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700123import android.content.pm.PackageManager;
124import android.content.pm.ResolveInfo;
Clara Bayarrif7fea162015-10-22 16:09:52 +0100125import android.content.pm.UserInfo;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700126import android.content.res.Configuration;
Wale Ogunwale60454db2015-01-23 16:05:07 -0800127import android.graphics.Rect;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800128import android.hardware.display.DisplayManager;
129import android.hardware.display.DisplayManager.DisplayListener;
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800130import android.hardware.display.DisplayManagerInternal;
Jeff Brownca9bc702014-02-11 14:32:56 -0800131import android.hardware.input.InputManagerInternal;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700132import android.os.Binder;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100133import android.os.Bundle;
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700134import android.os.Debug;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700135import android.os.Handler;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700136import android.os.IBinder;
Craig Mautner2219a1b2013-03-25 09:44:30 -0700137import android.os.Looper;
Craig Mautner2420ead2013-04-01 17:13:20 -0700138import android.os.Message;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700139import android.os.PowerManager;
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700140import android.os.Process;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700141import android.os.RemoteException;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700142import android.os.SystemClock;
Wale Ogunwalecad05a02015-09-25 10:41:44 -0700143import android.os.Trace;
Craig Mautner6170f732013-04-02 13:05:23 -0700144import android.os.UserHandle;
Clara Bayarrif7fea162015-10-22 16:09:52 +0100145import android.os.UserManager;
Dianne Hackborn3d07c942015-03-13 18:02:54 -0700146import android.os.WorkSource;
Svetoslav7008b512015-06-24 18:47:07 -0700147import android.provider.MediaStore;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700148import android.service.voice.IVoiceInteractionSession;
Svetoslav7008b512015-06-24 18:47:07 -0700149import android.util.ArrayMap;
Dianne Hackborn89ad4562014-08-24 16:45:38 -0700150import android.util.ArraySet;
Craig Mautner2420ead2013-04-01 17:13:20 -0700151import android.util.EventLog;
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800152import android.util.IntArray;
Wale Ogunwalee610d3d2017-04-25 10:23:48 -0700153import android.util.MergedConfiguration;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700154import android.util.Slog;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800155import android.util.SparseArray;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800156import android.util.SparseIntArray;
David Stevens9440dc82017-03-16 19:00:20 -0700157import android.util.TimeUtils;
Steven Timotius4346f0a2017-09-12 11:07:21 -0700158import android.util.proto.ProtoOutputStream;
Craig Mautnered6649f2013-12-02 14:08:25 -0800159import android.view.Display;
Chong Zhangb15758a2015-11-17 12:12:03 -0800160
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700161import com.android.internal.annotations.VisibleForTesting;
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800162import com.android.internal.content.ReferrerIntent;
Winson Chung14fbe142016-12-19 16:18:24 -0800163import com.android.internal.logging.MetricsLogger;
Dianne Hackborncbfd23e2013-06-11 14:26:53 -0700164import com.android.internal.os.TransferPipe;
Svetoslav7008b512015-06-24 18:47:07 -0700165import com.android.internal.util.ArrayUtils;
Jeff Brownca9bc702014-02-11 14:32:56 -0800166import com.android.server.LocalServices;
Craig Mautner2420ead2013-04-01 17:13:20 -0700167import com.android.server.am.ActivityStack.ActivityState;
Wale Ogunwale98d62312017-07-12 09:24:56 -0700168import com.android.server.wm.ConfigurationContainer;
Winson Chung19953ca2017-04-11 11:19:23 -0700169import com.android.server.wm.PinnedStackWindowController;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700170import com.android.server.wm.WindowManagerService;
Craig Mautner23ac33b2013-04-01 16:26:35 -0700171
Craig Mautner8d341ef2013-03-26 09:03:27 -0700172import java.io.FileDescriptor;
173import java.io.IOException;
Craig Mautner27084302013-03-25 08:05:25 -0700174import java.io.PrintWriter;
Winson Chung7900bee2017-03-10 08:59:25 -0800175import java.lang.annotation.Retention;
176import java.lang.annotation.RetentionPolicy;
Craig Mautner2219a1b2013-03-25 09:44:30 -0700177import java.util.ArrayList;
David Stevens9440dc82017-03-16 19:00:20 -0700178import java.util.Iterator;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700179import java.util.List;
Wale Ogunwale540e1232015-05-01 15:35:39 -0700180import java.util.Set;
Craig Mautner27084302013-03-25 08:05:25 -0700181
Winson Chung1dbc8112017-09-28 18:05:31 -0700182public class ActivityStackSupervisor extends ConfigurationContainer implements DisplayListener,
183 RecentTasks.Callbacks {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800184 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStackSupervisor" : TAG_AM;
Chong Zhang6cda19c2016-06-14 19:07:56 -0700185 private static final String TAG_FOCUS = TAG + POSTFIX_FOCUS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700186 private static final String TAG_IDLE = TAG + POSTFIX_IDLE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700187 private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700188 private static final String TAG_RECENTS = TAG + POSTFIX_RECENTS;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700189 private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700190 private static final String TAG_STACK = TAG + POSTFIX_STACK;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700191 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700192 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
Filip Gruszczynski07a0e492015-12-17 14:16:38 -0800193 static final String TAG_TASKS = TAG + POSTFIX_TASKS;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800194
Craig Mautnerf3333272013-04-22 10:55:53 -0700195 /** How long we wait until giving up on the last activity telling us it is idle. */
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700196 static final int IDLE_TIMEOUT = 10 * 1000;
Craig Mautnerf3333272013-04-22 10:55:53 -0700197
Craig Mautner0eea92c2013-05-16 13:35:39 -0700198 /** How long we can hold the sleep wake lock before giving up. */
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700199 static final int SLEEP_TIMEOUT = 5 * 1000;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700200
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700201 // How long we can hold the launch wake lock before giving up.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700202 static final int LAUNCH_TIMEOUT = 10 * 1000;
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700203
Craig Mautner05d29032013-05-03 13:40:13 -0700204 static final int IDLE_TIMEOUT_MSG = FIRST_SUPERVISOR_STACK_MSG;
205 static final int IDLE_NOW_MSG = FIRST_SUPERVISOR_STACK_MSG + 1;
206 static final int RESUME_TOP_ACTIVITY_MSG = FIRST_SUPERVISOR_STACK_MSG + 2;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700207 static final int SLEEP_TIMEOUT_MSG = FIRST_SUPERVISOR_STACK_MSG + 3;
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700208 static final int LAUNCH_TIMEOUT_MSG = FIRST_SUPERVISOR_STACK_MSG + 4;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800209 static final int HANDLE_DISPLAY_ADDED = FIRST_SUPERVISOR_STACK_MSG + 5;
210 static final int HANDLE_DISPLAY_CHANGED = FIRST_SUPERVISOR_STACK_MSG + 6;
211 static final int HANDLE_DISPLAY_REMOVED = FIRST_SUPERVISOR_STACK_MSG + 7;
Wale Ogunwale73eba742015-04-07 14:23:14 -0700212 static final int LAUNCH_TASK_BEHIND_COMPLETE = FIRST_SUPERVISOR_STACK_MSG + 12;
Wale Ogunwale22e25262016-02-01 10:32:02 -0800213 static final int REPORT_MULTI_WINDOW_MODE_CHANGED_MSG = FIRST_SUPERVISOR_STACK_MSG + 14;
214 static final int REPORT_PIP_MODE_CHANGED_MSG = FIRST_SUPERVISOR_STACK_MSG + 15;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800215
Wale Ogunwale040b4702015-08-06 18:10:50 -0700216 private static final String VIRTUAL_DISPLAY_BASE_NAME = "ActivityViewVirtualDisplay";
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700217
Wale Ogunwale040b4702015-08-06 18:10:50 -0700218 // Used to indicate if an object (e.g. stack) that we are trying to get
219 // should be created if it doesn't exist already.
Filip Gruszczynski07a0e492015-12-17 14:16:38 -0800220 static final boolean CREATE_IF_NEEDED = true;
Wale Ogunwale040b4702015-08-06 18:10:50 -0700221
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -0700222 // Used to indicate that windows of activities should be preserved during the resize.
223 static final boolean PRESERVE_WINDOWS = true;
224
Wale Ogunwale040b4702015-08-06 18:10:50 -0700225 // Used to indicate if an object (e.g. task) should be moved/created
226 // at the top of its container (e.g. stack).
Wale Ogunwaleb30daaa2015-08-07 21:50:49 -0700227 static final boolean ON_TOP = true;
Wale Ogunwale040b4702015-08-06 18:10:50 -0700228
Wale Ogunwalec8da41e2016-04-16 13:27:23 -0700229 // Don't execute any calls to resume.
230 static final boolean DEFER_RESUME = true;
231
Winson Chung010927a2016-12-15 16:12:35 -0800232 // Used to indicate that a task is removed it should also be removed from recents.
233 static final boolean REMOVE_FROM_RECENTS = true;
234
Winson Chung6954fc92017-03-24 16:22:12 -0700235 // Used to indicate that pausing an activity should occur immediately without waiting for
236 // the activity callback indicating that it has completed pausing
237 static final boolean PAUSE_IMMEDIATELY = true;
238
Winson Chung7900bee2017-03-10 08:59:25 -0800239 /**
240 * The modes which affect which tasks are returned when calling
241 * {@link ActivityStackSupervisor#anyTaskForIdLocked(int)}.
242 */
243 @Retention(RetentionPolicy.SOURCE)
244 @IntDef({
245 MATCH_TASK_IN_STACKS_ONLY,
246 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS,
247 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE
248 })
249 public @interface AnyTaskForIdMatchTaskMode {}
250 // Match only tasks in the current stacks
251 static final int MATCH_TASK_IN_STACKS_ONLY = 0;
252 // Match either tasks in the current stacks, or in the recent tasks if not found in the stacks
253 static final int MATCH_TASK_IN_STACKS_OR_RECENT_TASKS = 1;
254 // Match either tasks in the current stacks, or in the recent tasks, restoring it to the
255 // provided stack id
256 static final int MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE = 2;
257
Svetoslav7008b512015-06-24 18:47:07 -0700258 // Activity actions an app cannot start if it uses a permission which is not granted.
259 private static final ArrayMap<String, String> ACTION_TO_RUNTIME_PERMISSION =
260 new ArrayMap<>();
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -0700261
Svetoslav7008b512015-06-24 18:47:07 -0700262 static {
263 ACTION_TO_RUNTIME_PERMISSION.put(MediaStore.ACTION_IMAGE_CAPTURE,
264 Manifest.permission.CAMERA);
265 ACTION_TO_RUNTIME_PERMISSION.put(MediaStore.ACTION_VIDEO_CAPTURE,
266 Manifest.permission.CAMERA);
267 ACTION_TO_RUNTIME_PERMISSION.put(Intent.ACTION_CALL,
268 Manifest.permission.CALL_PHONE);
269 }
270
Svet Ganov99b60432015-06-27 13:15:22 -0700271 /** Action restriction: launching the activity is not restricted. */
272 private static final int ACTIVITY_RESTRICTION_NONE = 0;
273 /** Action restriction: launching the activity is restricted by a permission. */
274 private static final int ACTIVITY_RESTRICTION_PERMISSION = 1;
275 /** Action restriction: launching the activity is restricted by an app op. */
276 private static final int ACTIVITY_RESTRICTION_APPOP = 2;
Svetoslav7008b512015-06-24 18:47:07 -0700277
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700278 // For debugging to make sure the caller when acquiring/releasing our
279 // wake lock is the system process.
280 static final boolean VALIDATE_WAKE_LOCK_CALLER = false;
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800281 /** The number of distinct task ids that can be assigned to the tasks of a single user */
282 private static final int MAX_TASK_IDS_PER_USER = UserHandle.PER_USER_RANGE;
Craig Mautnerf3333272013-04-22 10:55:53 -0700283
Craig Mautner27084302013-03-25 08:05:25 -0700284 final ActivityManagerService mService;
285
Winson Chung61c9e5a2017-10-11 10:39:32 -0700286 /** The historial list of recent tasks including inactive tasks */
Winson Chung1dbc8112017-09-28 18:05:31 -0700287 RecentTasks mRecentTasks;
Wale Ogunwalec82f2f52014-12-09 09:32:50 -0800288
Winson Chung61c9e5a2017-10-11 10:39:32 -0700289 /** Helper class to abstract out logic for fetching the set of currently running tasks */
Winson Chung3f0e59a2017-10-25 10:19:05 -0700290 private RunningTasks mRunningTasks;
Winson Chung61c9e5a2017-10-11 10:39:32 -0700291
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700292 final ActivityStackSupervisorHandler mHandler;
293
294 /** Short cut */
295 WindowManagerService mWindowManager;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800296 DisplayManager mDisplayManager;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700297
Bryce Lee2a3cc462017-10-27 10:57:35 -0700298 private LaunchingBoundsController mLaunchingBoundsController;
Bryce Lee9ad3eb32017-10-10 10:10:31 -0700299
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -0700300 /** Counter for next free stack ID to use for dynamic activity stacks. */
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700301 private int mNextFreeStackId = 0;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700302
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800303 /**
304 * Maps the task identifier that activities are currently being started in to the userId of the
305 * task. Each time a new task is created, the entry for the userId of the task is incremented
306 */
307 private final SparseIntArray mCurTaskIdForUser = new SparseIntArray(20);
Craig Mautner8d341ef2013-03-26 09:03:27 -0700308
Craig Mautner2420ead2013-04-01 17:13:20 -0700309 /** The current user */
Filip Gruszczynski07a0e492015-12-17 14:16:38 -0800310 int mCurrentUser;
Craig Mautner2420ead2013-04-01 17:13:20 -0700311
Craig Mautnere0a38842013-12-16 16:14:02 -0800312 /** The stack containing the launcher app. Assumed to always be attached to
313 * Display.DEFAULT_DISPLAY. */
Filip Gruszczynski07a0e492015-12-17 14:16:38 -0800314 ActivityStack mHomeStack;
Craig Mautner20e72272013-04-01 13:45:53 -0700315
Craig Mautnere0a38842013-12-16 16:14:02 -0800316 /** The stack currently receiving input or launching the next activity. */
Filip Gruszczynski07a0e492015-12-17 14:16:38 -0800317 ActivityStack mFocusedStack;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700318
Craig Mautner4a1cb222013-12-04 16:14:06 -0800319 /** If this is the same as mFocusedStack then the activity on the top of the focused stack has
320 * been resumed. If stacks are changing position this will hold the old stack until the new
Craig Mautnere0a38842013-12-16 16:14:02 -0800321 * stack becomes resumed after which it will be set to mFocusedStack. */
Craig Mautner4a1cb222013-12-04 16:14:06 -0800322 private ActivityStack mLastFocusedStack;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700323
324 /** List of activities that are waiting for a new activity to become visible before completing
325 * whatever operation they are supposed to do. */
Bryce Lee4a194382017-04-04 14:32:48 -0700326 // TODO: Remove mActivitiesWaitingForVisibleActivity list and just remove activity from
327 // mStoppingActivities when something else comes up.
328 final ArrayList<ActivityRecord> mActivitiesWaitingForVisibleActivity = new ArrayList<>();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700329
Bryce Lee4a194382017-04-04 14:32:48 -0700330 /** List of processes waiting to find out when a specific activity becomes visible. */
331 private final ArrayList<WaitInfo> mWaitingForActivityVisible = new ArrayList<>();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700332
333 /** List of processes waiting to find out about the next launched activity. */
Sudheer Shankafc46e9b2016-10-21 17:55:27 -0700334 final ArrayList<WaitResult> mWaitingActivityLaunched = new ArrayList<>();
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700335
Craig Mautnerde4ef022013-04-07 19:01:33 -0700336 /** List of activities that are ready to be stopped, but waiting for the next activity to
337 * settle down before doing so. */
Craig Mautner8c14c152015-01-15 17:32:07 -0800338 final ArrayList<ActivityRecord> mStoppingActivities = new ArrayList<>();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700339
Craig Mautnerf3333272013-04-22 10:55:53 -0700340 /** List of activities that are ready to be finished, but waiting for the previous activity to
341 * settle down before doing so. It contains ActivityRecord objects. */
Craig Mautner8c14c152015-01-15 17:32:07 -0800342 final ArrayList<ActivityRecord> mFinishingActivities = new ArrayList<>();
Craig Mautnerf3333272013-04-22 10:55:53 -0700343
Craig Mautner0eea92c2013-05-16 13:35:39 -0700344 /** List of activities that are in the process of going to sleep. */
Craig Mautner8c14c152015-01-15 17:32:07 -0800345 final ArrayList<ActivityRecord> mGoingToSleepActivities = new ArrayList<>();
Craig Mautner0eea92c2013-05-16 13:35:39 -0700346
Wale Ogunwale22e25262016-02-01 10:32:02 -0800347 /** List of activities whose multi-window mode changed that we need to report to the
348 * application */
349 final ArrayList<ActivityRecord> mMultiWindowModeChangedActivities = new ArrayList<>();
350
351 /** List of activities whose picture-in-picture mode changed that we need to report to the
352 * application */
353 final ArrayList<ActivityRecord> mPipModeChangedActivities = new ArrayList<>();
354
Winson Chung5af42fc2017-03-24 17:11:33 -0700355 /** The target stack bounds for the picture-in-picture mode changed that we need to report to
356 * the application */
357 Rect mPipModeChangedTargetStackBounds;
358
Craig Mautnerf3333272013-04-22 10:55:53 -0700359 /** Used on user changes */
Amith Yamasani37a40c22015-06-17 13:25:42 -0700360 final ArrayList<UserState> mStartingUsers = new ArrayList<>();
Craig Mautnerf3333272013-04-22 10:55:53 -0700361
Craig Mautnerde4ef022013-04-07 19:01:33 -0700362 /** Set to indicate whether to issue an onUserLeaving callback when a newly launched activity
363 * is being brought in front of us. */
364 boolean mUserLeaving = false;
365
Craig Mautner0eea92c2013-05-16 13:35:39 -0700366 /**
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700367 * We don't want to allow the device to go to sleep while in the process
368 * of launching an activity. This is primarily to allow alarm intent
369 * receivers to launch an activity and get that to run before the device
370 * goes back to sleep.
371 */
Jeff Brown2c43c332014-06-12 22:38:59 -0700372 PowerManager.WakeLock mLaunchingActivity;
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700373
374 /**
Craig Mautner0eea92c2013-05-16 13:35:39 -0700375 * Set when the system is going to sleep, until we have
376 * successfully paused the current activity and released our wake lock.
377 * At that point the system is allowed to actually sleep.
378 */
Jeff Brown2c43c332014-06-12 22:38:59 -0700379 PowerManager.WakeLock mGoingToSleep;
Craig Mautner0eea92c2013-05-16 13:35:39 -0700380
David Stevens9440dc82017-03-16 19:00:20 -0700381 /**
382 * A list of tokens that cause the top activity to be put to sleep.
383 * They are used by components that may hide and block interaction with underlying
384 * activities.
385 */
Wale Ogunwale9dcf9462017-09-19 15:13:01 -0700386 final ArrayList<SleepToken> mSleepTokens = new ArrayList<>();
David Stevens9440dc82017-03-16 19:00:20 -0700387
Craig Mautner4f1df4f2013-10-15 15:44:14 -0700388 /** Stack id of the front stack when user switched, indexed by userId. */
389 SparseIntArray mUserStackInFront = new SparseIntArray(2);
Craig Mautner93529a42013-10-04 15:03:13 -0700390
Bryce Leeaf3a4002017-03-20 10:37:12 -0700391 // TODO: There should be an ActivityDisplayController coordinating am/wm interaction.
Craig Mautner4a1cb222013-12-04 16:14:06 -0800392 /** Mapping from displayId to display current state */
Craig Mautner15df08a2015-04-01 12:17:18 -0700393 private final SparseArray<ActivityDisplay> mActivityDisplays = new SparseArray<>();
Craig Mautner4a1cb222013-12-04 16:14:06 -0800394
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800395 private final SparseArray<IntArray> mDisplayAccessUIDs = new SparseArray<>();
396
397 private DisplayManagerInternal mDisplayManagerInternal;
Jeff Brownca9bc702014-02-11 14:32:56 -0800398
Wale Ogunwaled046a012015-12-24 13:05:59 -0800399 /** Used to keep resumeTopActivityUncheckedLocked() from being entered recursively */
Craig Mautner42d04db2014-11-06 12:13:23 -0800400 boolean inResumeTopActivity;
401
Andrii Kulian1e32e022016-09-16 15:29:34 -0700402 /**
403 * Temporary rect used during docked stack resize calculation so we don't need to create a new
404 * object each time.
405 */
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -0700406 private final Rect tempRect = new Rect();
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -0700407 private final ActivityOptions mTmpOptions = ActivityOptions.makeBasic();
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -0700408
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -0700409 // The default minimal size that will be used if the activity doesn't specify its minimal size.
410 // It will be calculated when the default display gets added.
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700411 int mDefaultMinSizeOfResizeableTask = -1;
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -0700412
Chong Zhangfdcc4d42015-10-14 16:50:12 -0700413 // Whether tasks have moved and we need to rank the tasks before next OOM scoring
414 private boolean mTaskLayersChanged = true;
415
Bryce Lee2a3cc462017-10-27 10:57:35 -0700416 private ActivityMetricsLogger mActivityMetricsLogger;
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800417
Jorim Jaggiea039a82017-08-02 14:37:49 +0200418 private final ArrayList<ActivityRecord> mTmpActivityList = new ArrayList<>();
419
Andrii Kulian1779e612016-10-12 21:58:25 -0700420 @Override
421 protected int getChildCount() {
422 return mActivityDisplays.size();
423 }
424
425 @Override
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700426 protected ActivityDisplay getChildAt(int index) {
Andrii Kulian1779e612016-10-12 21:58:25 -0700427 return mActivityDisplays.valueAt(index);
428 }
429
430 @Override
431 protected ConfigurationContainer getParent() {
432 return null;
433 }
434
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700435 Configuration getDisplayOverrideConfiguration(int displayId) {
Andrii Kulian62e6f252017-05-30 22:46:53 -0700436 final ActivityDisplay activityDisplay = getActivityDisplayOrCreateLocked(displayId);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700437 if (activityDisplay == null) {
438 throw new IllegalArgumentException("No display found with id: " + displayId);
439 }
440
441 return activityDisplay.getOverrideConfiguration();
442 }
443
444 void setDisplayOverrideConfiguration(Configuration overrideConfiguration, int displayId) {
Andrii Kulian62e6f252017-05-30 22:46:53 -0700445 final ActivityDisplay activityDisplay = getActivityDisplayOrCreateLocked(displayId);
Andrii Kulian5406e7a2016-10-21 11:55:23 -0700446 if (activityDisplay == null) {
447 throw new IllegalArgumentException("No display found with id: " + displayId);
448 }
449
450 activityDisplay.onOverrideConfigurationChanged(overrideConfiguration);
451 }
452
Andrii Kulian036e3ad2017-04-19 10:55:10 -0700453 /** Check if placing task or activity on specified display is allowed. */
Andrii Kulian02689a72017-07-06 14:28:59 -0700454 boolean canPlaceEntityOnDisplay(int displayId, boolean resizeable, int callingPid,
455 int callingUid, ActivityInfo activityInfo) {
456 if (displayId == DEFAULT_DISPLAY) {
457 // No restrictions for the default display.
458 return true;
459 }
460 if (!mService.mSupportsMultiDisplay) {
461 // Can't launch on secondary displays if feature is not supported.
462 return false;
463 }
464 if (!resizeable && !displayConfigMatchesGlobal(displayId)) {
465 // Can't apply wrong configuration to non-resizeable activities.
466 return false;
467 }
468 if (!isCallerAllowedToLaunchOnDisplay(callingPid, callingUid, displayId, activityInfo)) {
469 // Can't place activities to a display that has restricted launch rules.
470 // In this case the request should be made by explicitly adding target display id and
471 // by caller with corresponding permissions. See #isCallerAllowedToLaunchOnDisplay().
472 return false;
473 }
474 return true;
Andrii Kulian036e3ad2017-04-19 10:55:10 -0700475 }
476
477 /**
478 * Check if configuration of specified display matches current global config.
479 * Used to check if we can put a non-resizeable activity on a secondary display and it will get
480 * the same config as on the default display.
481 * @param displayId Id of the display to check.
482 * @return {@code true} if configuration matches.
483 */
484 private boolean displayConfigMatchesGlobal(int displayId) {
485 if (displayId == DEFAULT_DISPLAY) {
486 return true;
487 }
488 if (displayId == INVALID_DISPLAY) {
489 return false;
490 }
Andrii Kulian62e6f252017-05-30 22:46:53 -0700491 final ActivityDisplay targetDisplay = getActivityDisplayOrCreateLocked(displayId);
Andrii Kulian036e3ad2017-04-19 10:55:10 -0700492 if (targetDisplay == null) {
493 throw new IllegalArgumentException("No display found with id: " + displayId);
494 }
495 return getConfiguration().equals(targetDisplay.getConfiguration());
496 }
497
Wale Ogunwale39381972015-12-17 17:15:29 -0800498 static class FindTaskResult {
499 ActivityRecord r;
500 boolean matchedByRootAffinity;
501 }
502 private final FindTaskResult mTmpFindTaskResult = new FindTaskResult();
503
Craig Mautneree36c772014-07-16 14:56:05 -0700504 /**
Andrii Kulian7fc22812016-12-28 13:04:11 -0800505 * Temp storage for display ids sorted in focus order.
506 * Maps position to id. Using {@link SparseIntArray} instead of {@link ArrayList} because
507 * it's more efficient, as the number of displays is usually small.
508 */
509 private SparseIntArray mTmpOrderedDisplayIds = new SparseIntArray();
510
511 /**
Jorim Jaggia0fdeec2016-01-07 14:42:28 +0100512 * Used to keep track whether app visibilities got changed since the last pause. Useful to
513 * determine whether to invoke the task stack change listener after pausing.
514 */
515 boolean mAppVisibilitiesChangedSinceLastPause;
516
517 /**
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100518 * Set of tasks that are in resizing mode during an app transition to fill the "void".
519 */
520 private final ArraySet<Integer> mResizingTasksDuringAnimation = new ArraySet<>();
521
Wale Ogunwalec8da41e2016-04-16 13:27:23 -0700522
523 /**
524 * If set to {@code false} all calls to resize the docked stack {@link #resizeDockedStackLocked}
525 * will be ignored. Useful for the case where the caller is handling resizing of other stack and
526 * moving tasks around and doesn't want dock stack to be resized due to an automatic trigger
527 * like the docked stack going empty.
528 */
529 private boolean mAllowDockedStackResize = true;
530
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +0100531 /**
Tony Mak853304c2016-04-18 15:17:41 +0100532 * Is dock currently minimized.
533 */
534 boolean mIsDockMinimized;
535
Bryce Lee2a3cc462017-10-27 10:57:35 -0700536 private KeyguardController mKeyguardController;
Jorim Jaggife762342016-10-13 14:33:27 +0200537
chaviw59b98852017-06-13 12:05:44 -0700538 private PowerManager mPowerManager;
539 private int mDeferResumeCount;
540
Bryce Lee2a3cc462017-10-27 10:57:35 -0700541 private boolean mInitialized;
542
Tony Mak853304c2016-04-18 15:17:41 +0100543 /**
Craig Mautneree36c772014-07-16 14:56:05 -0700544 * Description of a request to start a new activity, which has been held
545 * due to app switches being disabled.
546 */
547 static class PendingActivityLaunch {
548 final ActivityRecord r;
549 final ActivityRecord sourceRecord;
550 final int startFlags;
551 final ActivityStack stack;
Robert Carr13997f52015-10-23 13:13:39 -0700552 final ProcessRecord callerApp;
Craig Mautneree36c772014-07-16 14:56:05 -0700553
554 PendingActivityLaunch(ActivityRecord _r, ActivityRecord _sourceRecord,
Robert Carr13997f52015-10-23 13:13:39 -0700555 int _startFlags, ActivityStack _stack, ProcessRecord _callerApp) {
Craig Mautneree36c772014-07-16 14:56:05 -0700556 r = _r;
557 sourceRecord = _sourceRecord;
558 startFlags = _startFlags;
559 stack = _stack;
Robert Carr13997f52015-10-23 13:13:39 -0700560 callerApp = _callerApp;
561 }
562
563 void sendErrorResult(String message) {
564 try {
565 if (callerApp.thread != null) {
566 callerApp.thread.scheduleCrash(message);
567 }
568 } catch (RemoteException e) {
569 Slog.e(TAG, "Exception scheduling crash of failed "
570 + "activity launcher sourceRecord=" + sourceRecord, e);
571 }
Craig Mautneree36c772014-07-16 14:56:05 -0700572 }
573 }
574
Bryce Leeaf691c02017-03-20 14:20:22 -0700575 public ActivityStackSupervisor(ActivityManagerService service, Looper looper) {
Craig Mautner27084302013-03-25 08:05:25 -0700576 mService = service;
Bryce Leeaf691c02017-03-20 14:20:22 -0700577 mHandler = new ActivityStackSupervisorHandler(looper);
Bryce Lee2a3cc462017-10-27 10:57:35 -0700578 }
579
580 public void initialize() {
581 if (mInitialized) {
582 return;
583 }
584
585 mInitialized = true;
Winson Chung3f0e59a2017-10-25 10:19:05 -0700586 mRunningTasks = createRunningTasks();
Bryce Lee2a3cc462017-10-27 10:57:35 -0700587 mActivityMetricsLogger = new ActivityMetricsLogger(this, mService.mContext,
588 mHandler.getLooper());
589 mKeyguardController = new KeyguardController(mService, this);
Bryce Leedacefc42017-10-10 12:56:02 -0700590
591 mLaunchingBoundsController = new LaunchingBoundsController();
592 mLaunchingBoundsController.registerDefaultPositioners(this);
Jeff Brown2c43c332014-06-12 22:38:59 -0700593 }
594
Bryce Lee2a3cc462017-10-27 10:57:35 -0700595
596 public ActivityMetricsLogger getActivityMetricsLogger() {
597 return mActivityMetricsLogger;
598 }
599
600 public KeyguardController getKeyguardController() {
601 return mKeyguardController;
602 }
603
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800604 void setRecentTasks(RecentTasks recentTasks) {
605 mRecentTasks = recentTasks;
Winson Chung1dbc8112017-09-28 18:05:31 -0700606 mRecentTasks.registerCallback(this);
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800607 }
608
Winson Chung3f0e59a2017-10-25 10:19:05 -0700609 @VisibleForTesting
610 RunningTasks createRunningTasks() {
611 return new RunningTasks();
612 }
613
Jeff Brown2c43c332014-06-12 22:38:59 -0700614 /**
615 * At the time when the constructor runs, the power manager has not yet been
616 * initialized. So we initialize our wakelocks afterwards.
617 */
618 void initPowerManagement() {
chaviw59b98852017-06-13 12:05:44 -0700619 mPowerManager = (PowerManager)mService.mContext.getSystemService(Context.POWER_SERVICE);
620 mGoingToSleep = mPowerManager
621 .newWakeLock(PARTIAL_WAKE_LOCK, "ActivityManager-Sleep");
622 mLaunchingActivity = mPowerManager.newWakeLock(PARTIAL_WAKE_LOCK, "*launch*");
Craig Mautner7ea5bd42013-07-05 15:27:08 -0700623 mLaunchingActivity.setReferenceCounted(false);
Craig Mautner2219a1b2013-03-25 09:44:30 -0700624 }
625
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700626 void setWindowManager(WindowManagerService wm) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800627 synchronized (mService) {
628 mWindowManager = wm;
Jorim Jaggife762342016-10-13 14:33:27 +0200629 mKeyguardController.setWindowManager(wm);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800630
631 mDisplayManager =
632 (DisplayManager)mService.mContext.getSystemService(Context.DISPLAY_SERVICE);
633 mDisplayManager.registerDisplayListener(this, null);
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800634 mDisplayManagerInternal = LocalServices.getService(DisplayManagerInternal.class);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800635
636 Display[] displays = mDisplayManager.getDisplays();
637 for (int displayNdx = displays.length - 1; displayNdx >= 0; --displayNdx) {
638 final int displayId = displays[displayNdx].getDisplayId();
Wale Ogunwale9dcf9462017-09-19 15:13:01 -0700639 ActivityDisplay activityDisplay = new ActivityDisplay(this, displayId);
Craig Mautnere0a38842013-12-16 16:14:02 -0800640 mActivityDisplays.put(displayId, activityDisplay);
Filip Gruszczynski7be9a8c2015-10-15 18:20:30 -0700641 calculateDefaultMinimalSizeOfResizeableTasks(activityDisplay);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800642 }
643
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700644 mHomeStack = mFocusedStack = mLastFocusedStack = getDefaultDisplay().getOrCreateStack(
645 WINDOWING_MODE_FULLSCREEN, ACTIVITY_TYPE_HOME, ON_TOP);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800646 }
Craig Mautner27084302013-03-25 08:05:25 -0700647 }
648
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700649 ActivityStack getFocusedStack() {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800650 return mFocusedStack;
Craig Mautner20e72272013-04-01 13:45:53 -0700651 }
652
Craig Mautnerde4ef022013-04-07 19:01:33 -0700653 ActivityStack getLastStack() {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800654 return mLastFocusedStack;
Craig Mautner2219a1b2013-03-25 09:44:30 -0700655 }
656
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700657 boolean isFocusedStack(ActivityStack stack) {
Andrii Kulian94e82d9b02017-07-13 15:33:06 -0700658 return stack != null && stack == mFocusedStack;
Craig Mautner20e72272013-04-01 13:45:53 -0700659 }
660
Wale Ogunwaled046a012015-12-24 13:05:59 -0800661 /** NOTE: Should only be called from {@link ActivityStack#moveToFront} */
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800662 void setFocusStackUnchecked(String reason, ActivityStack focusCandidate) {
663 if (!focusCandidate.isFocusable()) {
664 // The focus candidate isn't focusable. Move focus to the top stack that is focusable.
Andrii Kulian7fc22812016-12-28 13:04:11 -0800665 focusCandidate = getNextFocusableStackLocked(focusCandidate);
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800666 }
667
668 if (focusCandidate != mFocusedStack) {
Wale Ogunwaled046a012015-12-24 13:05:59 -0800669 mLastFocusedStack = mFocusedStack;
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800670 mFocusedStack = focusCandidate;
Wale Ogunwalecb82f302015-02-25 07:53:40 -0800671
Wale Ogunwaled046a012015-12-24 13:05:59 -0800672 EventLogTags.writeAmFocusedStack(
673 mCurrentUser, mFocusedStack == null ? -1 : mFocusedStack.getStackId(),
674 mLastFocusedStack == null ? -1 : mLastFocusedStack.getStackId(), reason);
675 }
676
677 final ActivityRecord r = topRunningActivityLocked();
Craig Mautnerf3ea23a2015-01-13 09:37:08 -0800678 if (mService.mBooting || !mService.mBooted) {
Craig Mautnerf3ea23a2015-01-13 09:37:08 -0800679 if (r != null && r.idle) {
680 checkFinishBootingLocked();
681 }
682 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700683 }
684
Wale Ogunwale925d0d12015-09-23 15:40:07 -0700685 void moveHomeStackToFront(String reason) {
686 mHomeStack.moveToFront(reason);
687 }
688
Matthew Ng330757d2017-02-28 14:19:17 -0800689 void moveRecentsStackToFront(String reason) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700690 final ActivityStack recentsStack = getDefaultDisplay().getStack(
691 WINDOWING_MODE_UNDEFINED, ACTIVITY_TYPE_RECENTS);
Matthew Ng330757d2017-02-28 14:19:17 -0800692 if (recentsStack != null) {
693 recentsStack.moveToFront(reason);
694 }
695 }
696
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700697 /** Returns true if the focus activity was adjusted to the home stack top activity. */
Matthew Ngae1ff4f2016-11-10 15:49:14 -0800698 boolean moveHomeStackTaskToTop(String reason) {
699 mHomeStack.moveHomeStackTaskToTop();
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700700
Wale Ogunwale2d0f39b2015-04-17 15:35:39 -0700701 final ActivityRecord top = getHomeActivity();
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700702 if (top == null) {
703 return false;
704 }
Chong Zhang6cda19c2016-06-14 19:07:56 -0700705 moveFocusableActivityStackToFrontLocked(top, reason);
Wale Ogunwaled80c2632015-03-13 10:26:26 -0700706 return true;
Craig Mautner8e569572013-10-11 17:36:59 -0700707 }
708
Matthew Ngae1ff4f2016-11-10 15:49:14 -0800709 boolean resumeHomeStackTask(ActivityRecord prev, String reason) {
Dianne Hackborn7622a0f2014-09-30 14:31:42 -0700710 if (!mService.mBooting && !mService.mBooted) {
711 // Not ready yet!
712 return false;
713 }
714
Matthew Ngae1ff4f2016-11-10 15:49:14 -0800715 mHomeStack.moveHomeStackTaskToTop();
Wale Ogunwale2d0f39b2015-04-17 15:35:39 -0700716 ActivityRecord r = getHomeActivity();
Wale Ogunwaled046a012015-12-24 13:05:59 -0800717 final String myReason = reason + " resumeHomeStackTask";
718
Mark Lua56ea122015-10-08 13:31:01 +0800719 // Only resume home activity if isn't finishing.
720 if (r != null && !r.finishing) {
Chong Zhang6cda19c2016-06-14 19:07:56 -0700721 moveFocusableActivityStackToFrontLocked(r, myReason);
Wale Ogunwaled046a012015-12-24 13:05:59 -0800722 return resumeFocusedStackTopActivityLocked(mHomeStack, prev, null);
Craig Mautner69ada552013-04-18 13:51:51 -0700723 }
Wale Ogunwaled046a012015-12-24 13:05:59 -0800724 return mService.startHomeActivityLocked(mCurrentUser, myReason);
Craig Mautner69ada552013-04-18 13:51:51 -0700725 }
726
Craig Mautner8d341ef2013-03-26 09:03:27 -0700727 TaskRecord anyTaskForIdLocked(int id) {
Wale Ogunwale0568aed2017-09-08 13:29:37 -0700728 return anyTaskForIdLocked(id, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE);
729 }
730
731 TaskRecord anyTaskForIdLocked(int id, @AnyTaskForIdMatchTaskMode int matchMode) {
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700732 return anyTaskForIdLocked(id, matchMode, null, !ON_TOP);
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -0700733 }
734
735 /**
Bryce Lee92b7b652017-04-03 08:33:11 -0700736 * Returns a {@link TaskRecord} for the input id if available. {@code null} otherwise.
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -0700737 * @param id Id of the task we would like returned.
Winson Chung7900bee2017-03-10 08:59:25 -0800738 * @param matchMode The mode to match the given task id in.
Wale Ogunwale0568aed2017-09-08 13:29:37 -0700739 * @param aOptions The activity options to use for restoration. Can be null.
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700740 * @param onTop If the stack for the task should be the topmost on the display.
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -0700741 */
Wale Ogunwale0568aed2017-09-08 13:29:37 -0700742 TaskRecord anyTaskForIdLocked(int id, @AnyTaskForIdMatchTaskMode int matchMode,
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700743 @Nullable ActivityOptions aOptions, boolean onTop) {
744 // If options are set, ensure that we are attempting to actually restore a task
Wale Ogunwale0568aed2017-09-08 13:29:37 -0700745 if (matchMode != MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE && aOptions != null) {
746 throw new IllegalArgumentException("Should not specify activity options for non-restore"
747 + " lookup");
Winson Chung7900bee2017-03-10 08:59:25 -0800748 }
749
Craig Mautnere0a38842013-12-16 16:14:02 -0800750 int numDisplays = mActivityDisplays.size();
Craig Mautner4a1cb222013-12-04 16:14:06 -0800751 for (int displayNdx = 0; displayNdx < numDisplays; ++displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700752 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
753 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
754 final ActivityStack stack = display.getChildAt(stackNdx);
Bryce Lee92b7b652017-04-03 08:33:11 -0700755 final TaskRecord task = stack.taskForIdLocked(id);
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700756 if (task == null) {
757 continue;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800758 }
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700759 if (aOptions != null) {
760 // Resolve the stack the task should be placed in now based on options
761 // and reparent if needed.
762 final ActivityStack launchStack = getLaunchStack(null, aOptions, task, onTop);
763 if (launchStack != null && stack != launchStack) {
764 final int reparentMode = onTop
765 ? REPARENT_MOVE_STACK_TO_FRONT : REPARENT_LEAVE_STACK_IN_PLACE;
766 task.reparent(launchStack, onTop, reparentMode, ANIMATE, DEFER_RESUME,
767 "anyTaskForIdLocked");
768 }
769 }
770 return task;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700771 }
772 }
Wale Ogunwale7de05352014-12-12 15:21:33 -0800773
Winson Chung7900bee2017-03-10 08:59:25 -0800774 // If we are matching stack tasks only, return now
775 if (matchMode == MATCH_TASK_IN_STACKS_ONLY) {
Wale Ogunwale7de05352014-12-12 15:21:33 -0800776 return null;
777 }
778
Winson Chung7900bee2017-03-10 08:59:25 -0800779 // Otherwise, check the recent tasks and return if we find it there and we are not restoring
780 // the task from recents
781 if (DEBUG_RECENTS) Slog.v(TAG_RECENTS, "Looking for task id=" + id + " in recents");
Winson Chung1dbc8112017-09-28 18:05:31 -0700782 final TaskRecord task = mRecentTasks.getTask(id);
Bryce Lee92b7b652017-04-03 08:33:11 -0700783
784 if (task == null) {
785 if (DEBUG_RECENTS) {
Winson Chung7900bee2017-03-10 08:59:25 -0800786 Slog.d(TAG_RECENTS, "\tDidn't find task id=" + id + " in recents");
787 }
Bryce Lee92b7b652017-04-03 08:33:11 -0700788
789 return null;
790 }
791
792 if (matchMode == MATCH_TASK_IN_STACKS_OR_RECENT_TASKS) {
Wale Ogunwale04f4d6b2015-03-11 09:23:25 -0700793 return task;
794 }
795
Winson Chung7900bee2017-03-10 08:59:25 -0800796 // Implicitly, this case is MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE
Wale Ogunwaleab5de372017-10-18 06:46:31 -0700797 if (!restoreRecentTaskLocked(task, aOptions, onTop)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700798 if (DEBUG_RECENTS) Slog.w(TAG_RECENTS,
799 "Couldn't restore task id=" + id + " found in recents");
Wale Ogunwale7de05352014-12-12 15:21:33 -0800800 return null;
801 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700802 if (DEBUG_RECENTS) Slog.w(TAG_RECENTS, "Restored task id=" + id + " from in recents");
Wale Ogunwale7de05352014-12-12 15:21:33 -0800803 return task;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700804 }
805
Craig Mautner6170f732013-04-02 13:05:23 -0700806 ActivityRecord isInAnyStackLocked(IBinder token) {
Craig Mautnere0a38842013-12-16 16:14:02 -0800807 int numDisplays = mActivityDisplays.size();
Craig Mautner4a1cb222013-12-04 16:14:06 -0800808 for (int displayNdx = 0; displayNdx < numDisplays; ++displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700809 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
810 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
811 final ActivityStack stack = display.getChildAt(stackNdx);
812 final ActivityRecord r = stack.isInStackLocked(token);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800813 if (r != null) {
814 return r;
815 }
Craig Mautner6170f732013-04-02 13:05:23 -0700816 }
817 }
818 return null;
819 }
820
Tony Mak853304c2016-04-18 15:17:41 +0100821 /**
Robin Lee3fef1f22016-12-20 14:50:13 +0000822 * Detects whether we should show a lock screen in front of this task for a locked user.
823 * <p>
824 * We'll do this if either of the following holds:
825 * <ul>
826 * <li>The top activity explicitly belongs to {@param userId}.</li>
827 * <li>The top activity returns a result to an activity belonging to {@param userId}.</li>
828 * </ul>
829 *
830 * @return {@code true} if the top activity looks like it belongs to {@param userId}.
Tony Mak853304c2016-04-18 15:17:41 +0100831 */
Robin Lee3fef1f22016-12-20 14:50:13 +0000832 private boolean taskTopActivityIsUser(TaskRecord task, @UserIdInt int userId) {
833 // To handle the case that work app is in the task but just is not the top one.
834 final ActivityRecord activityRecord = task.getTopActivity();
835 final ActivityRecord resultTo = (activityRecord != null ? activityRecord.resultTo : null);
836
837 return (activityRecord != null && activityRecord.userId == userId)
838 || (resultTo != null && resultTo.userId == userId);
839 }
840
841 /**
842 * Find all visible task stacks containing {@param userId} and intercept them with an activity
843 * to block out the contents and possibly start a credential-confirming intent.
844 *
845 * @param userId user handle for the locked managed profile.
846 */
847 void lockAllProfileTasks(@UserIdInt int userId) {
848 mWindowManager.deferSurfaceLayout();
849 try {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700850 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
851 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
852 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
853 final ActivityStack stack = display.getChildAt(stackNdx);
854 final List<TaskRecord> tasks = stack.getAllTasks();
855 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; taskNdx--) {
856 final TaskRecord task = tasks.get(taskNdx);
Robin Lee3fef1f22016-12-20 14:50:13 +0000857
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700858 // Check the task for a top activity belonging to userId, or returning a
859 // result to an activity belonging to userId. Example case: a document
860 // picker for personal files, opened by a work app, should still get locked.
861 if (taskTopActivityIsUser(task, userId)) {
862 mService.mTaskChangeNotificationController.notifyTaskProfileLocked(
863 task.taskId, userId);
864 }
Robin Lee3fef1f22016-12-20 14:50:13 +0000865 }
Tony Mak853304c2016-04-18 15:17:41 +0100866 }
867 }
Robin Lee3fef1f22016-12-20 14:50:13 +0000868 } finally {
869 mWindowManager.continueSurfaceLayout();
Tony Mak853304c2016-04-18 15:17:41 +0100870 }
Clara Bayarrif0649ce2016-01-14 12:30:42 +0000871 }
872
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800873 void setNextTaskIdForUserLocked(int taskId, int userId) {
874 final int currentTaskId = mCurTaskIdForUser.get(userId, -1);
875 if (taskId > currentTaskId) {
876 mCurTaskIdForUser.put(userId, taskId);
Craig Mautneref73ee12014-04-23 11:45:37 -0700877 }
878 }
879
Chong Zhangd9d35bd2016-08-04 17:55:21 -0700880 static int nextTaskIdForUser(int taskId, int userId) {
881 int nextTaskId = taskId + 1;
882 if (nextTaskId == (userId + 1) * MAX_TASK_IDS_PER_USER) {
883 // Wrap around as there will be smaller task ids that are available now.
884 nextTaskId -= MAX_TASK_IDS_PER_USER;
885 }
886 return nextTaskId;
887 }
888
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800889 int getNextTaskIdForUserLocked(int userId) {
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800890 final int currentTaskId = mCurTaskIdForUser.get(userId, userId * MAX_TASK_IDS_PER_USER);
891 // for a userId u, a taskId can only be in the range
892 // [u*MAX_TASK_IDS_PER_USER, (u+1)*MAX_TASK_IDS_PER_USER-1], so if MAX_TASK_IDS_PER_USER
893 // was 10, user 0 could only have taskIds 0 to 9, user 1: 10 to 19, user 2: 20 to 29, so on.
Chong Zhangd9d35bd2016-08-04 17:55:21 -0700894 int candidateTaskId = nextTaskIdForUser(currentTaskId, userId);
Winson Chung1dbc8112017-09-28 18:05:31 -0700895 while (mRecentTasks.containsTaskId(candidateTaskId, userId)
Wale Ogunwale0568aed2017-09-08 13:29:37 -0700896 || anyTaskForIdLocked(
897 candidateTaskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS) != null) {
Chong Zhangd9d35bd2016-08-04 17:55:21 -0700898 candidateTaskId = nextTaskIdForUser(candidateTaskId, userId);
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800899 if (candidateTaskId == currentTaskId) {
900 // Something wrong!
901 // All MAX_TASK_IDS_PER_USER task ids are taken up by running tasks for this user
902 throw new IllegalStateException("Cannot get an available task id."
903 + " Reached limit of " + MAX_TASK_IDS_PER_USER
904 + " running tasks per user.");
905 }
906 }
907 mCurTaskIdForUser.put(userId, candidateTaskId);
908 return candidateTaskId;
Craig Mautner8d341ef2013-03-26 09:03:27 -0700909 }
910
Chong Zhang6cda19c2016-06-14 19:07:56 -0700911 ActivityRecord getResumedActivityLocked() {
Wale Ogunwaled697cea2015-02-20 17:19:49 -0800912 ActivityStack stack = mFocusedStack;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700913 if (stack == null) {
914 return null;
915 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700916 ActivityRecord resumedActivity = stack.mResumedActivity;
917 if (resumedActivity == null || resumedActivity.app == null) {
918 resumedActivity = stack.mPausingActivity;
919 if (resumedActivity == null || resumedActivity.app == null) {
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700920 resumedActivity = stack.topRunningActivityLocked();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700921 }
922 }
923 return resumedActivity;
924 }
925
Dianne Hackbornff072722014-09-24 10:56:28 -0700926 boolean attachApplicationLocked(ProcessRecord app) throws RemoteException {
Craig Mautner20e72272013-04-01 13:45:53 -0700927 final String processName = app.processName;
Craig Mautner4a1cb222013-12-04 16:14:06 -0800928 boolean didSomething = false;
Craig Mautnere0a38842013-12-16 16:14:02 -0800929 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700930 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
931 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
932 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700933 if (!isFocusedStack(stack)) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800934 continue;
935 }
Jorim Jaggiea039a82017-08-02 14:37:49 +0200936 stack.getAllRunningVisibleActivitiesLocked(mTmpActivityList);
937 final ActivityRecord top = stack.topRunningActivityLocked();
938 final int size = mTmpActivityList.size();
939 for (int i = 0; i < size; i++) {
940 final ActivityRecord activity = mTmpActivityList.get(i);
941 if (activity.app == null && app.uid == activity.info.applicationInfo.uid
942 && processName.equals(activity.processName)) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800943 try {
Jorim Jaggiea039a82017-08-02 14:37:49 +0200944 if (realStartActivityLocked(activity, app,
945 top == activity /* andResume */, true /* checkConfig */)) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800946 didSomething = true;
947 }
Dianne Hackbornff072722014-09-24 10:56:28 -0700948 } catch (RemoteException e) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800949 Slog.w(TAG, "Exception in new application when starting activity "
Jorim Jaggiea039a82017-08-02 14:37:49 +0200950 + top.intent.getComponent().flattenToShortString(), e);
Craig Mautner4a1cb222013-12-04 16:14:06 -0800951 throw e;
Craig Mautner20e72272013-04-01 13:45:53 -0700952 }
Craig Mautner20e72272013-04-01 13:45:53 -0700953 }
Craig Mautner20e72272013-04-01 13:45:53 -0700954 }
955 }
956 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700957 if (!didSomething) {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -0700958 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700959 }
Craig Mautner20e72272013-04-01 13:45:53 -0700960 return didSomething;
961 }
962
963 boolean allResumedActivitiesIdle() {
Craig Mautnere0a38842013-12-16 16:14:02 -0800964 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700965 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
966 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
967 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700968 if (!isFocusedStack(stack) || stack.numActivities() == 0) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800969 continue;
970 }
971 final ActivityRecord resumedActivity = stack.mResumedActivity;
972 if (resumedActivity == null || !resumedActivity.idle) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700973 if (DEBUG_STATES) Slog.d(TAG_STATES, "allResumedActivitiesIdle: stack="
Craig Mautner34b73df2014-01-12 21:11:08 -0800974 + stack.mStackId + " " + resumedActivity + " not idle");
Craig Mautner4a1cb222013-12-04 16:14:06 -0800975 return false;
976 }
Craig Mautner20e72272013-04-01 13:45:53 -0700977 }
978 }
Wei Wang65c7a152016-06-02 18:51:22 -0700979 // Send launch end powerhint when idle
980 mService.mActivityStarter.sendPowerHintForLaunchEndIfNeeded();
Craig Mautner20e72272013-04-01 13:45:53 -0700981 return true;
982 }
983
Craig Mautnerde4ef022013-04-07 19:01:33 -0700984 boolean allResumedActivitiesComplete() {
Craig Mautnere0a38842013-12-16 16:14:02 -0800985 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -0700986 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
987 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
988 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -0700989 if (isFocusedStack(stack)) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800990 final ActivityRecord r = stack.mResumedActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700991 if (r != null && r.state != RESUMED) {
Craig Mautner4a1cb222013-12-04 16:14:06 -0800992 return false;
993 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700994 }
995 }
996 }
997 // TODO: Not sure if this should check if all Paused are complete too.
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700998 if (DEBUG_STACK) Slog.d(TAG_STACK,
Craig Mautner4a1cb222013-12-04 16:14:06 -0800999 "allResumedActivitiesComplete: mLastFocusedStack changing from=" +
1000 mLastFocusedStack + " to=" + mFocusedStack);
1001 mLastFocusedStack = mFocusedStack;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001002 return true;
1003 }
1004
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001005 private boolean allResumedActivitiesVisible() {
riddle_hsudb46d6b2015-04-01 18:58:07 +08001006 boolean foundResumed = false;
Craig Mautnere0a38842013-12-16 16:14:02 -08001007 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001008 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
1009 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1010 final ActivityStack stack = display.getChildAt(stackNdx);
Craig Mautner4a1cb222013-12-04 16:14:06 -08001011 final ActivityRecord r = stack.mResumedActivity;
riddle_hsudb46d6b2015-04-01 18:58:07 +08001012 if (r != null) {
Bryce Lee4a194382017-04-04 14:32:48 -07001013 if (!r.nowVisible || mActivitiesWaitingForVisibleActivity.contains(r)) {
riddle_hsudb46d6b2015-04-01 18:58:07 +08001014 return false;
1015 }
1016 foundResumed = true;
Craig Mautner4a1cb222013-12-04 16:14:06 -08001017 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001018 }
1019 }
riddle_hsudb46d6b2015-04-01 18:58:07 +08001020 return foundResumed;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001021 }
1022
Craig Mautner2acc3892013-09-23 10:28:14 -07001023 /**
1024 * Pause all activities in either all of the stacks or just the back stacks.
1025 * @param userLeaving Passed to pauseActivity() to indicate whether to call onUserLeaving().
Wale Ogunwale950faff2016-08-08 09:51:04 -07001026 * @param resuming The resuming activity.
1027 * @param dontWait The resuming activity isn't going to wait for all activities to be paused
1028 * before resuming.
Craig Mautner2acc3892013-09-23 10:28:14 -07001029 * @return true if any activity was paused as a result of this call.
1030 */
Wale Ogunwale950faff2016-08-08 09:51:04 -07001031 boolean pauseBackStacks(boolean userLeaving, ActivityRecord resuming, boolean dontWait) {
Craig Mautnercf910b02013-04-23 11:23:27 -07001032 boolean someActivityPaused = false;
Craig Mautnere0a38842013-12-16 16:14:02 -08001033 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001034 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
1035 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1036 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001037 if (!isFocusedStack(stack) && stack.mResumedActivity != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001038 if (DEBUG_STATES) Slog.d(TAG_STATES, "pauseBackStacks: stack=" + stack +
Craig Mautner4a1cb222013-12-04 16:14:06 -08001039 " mResumedActivity=" + stack.mResumedActivity);
Dianne Hackborna4e102e2014-09-04 22:52:27 -07001040 someActivityPaused |= stack.startPausingLocked(userLeaving, false, resuming,
1041 dontWait);
Craig Mautner4a1cb222013-12-04 16:14:06 -08001042 }
Craig Mautnercf910b02013-04-23 11:23:27 -07001043 }
1044 }
1045 return someActivityPaused;
1046 }
1047
Craig Mautnerde4ef022013-04-07 19:01:33 -07001048 boolean allPausedActivitiesComplete() {
Craig Mautnerac6f8432013-07-17 13:24:59 -07001049 boolean pausing = true;
Craig Mautnere0a38842013-12-16 16:14:02 -08001050 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001051 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
1052 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1053 final ActivityStack stack = display.getChildAt(stackNdx);
Craig Mautner4a1cb222013-12-04 16:14:06 -08001054 final ActivityRecord r = stack.mPausingActivity;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001055 if (r != null && r.state != PAUSED && r.state != STOPPED && r.state != STOPPING) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08001056 if (DEBUG_STATES) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001057 Slog.d(TAG_STATES,
1058 "allPausedActivitiesComplete: r=" + r + " state=" + r.state);
Craig Mautner4a1cb222013-12-04 16:14:06 -08001059 pausing = false;
1060 } else {
1061 return false;
1062 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001063 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001064 }
1065 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07001066 return pausing;
Craig Mautnerde4ef022013-04-07 19:01:33 -07001067 }
1068
Wale Ogunwale2be760d2016-02-17 11:16:10 -08001069 void cancelInitializingActivities() {
1070 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001071 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
1072 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1073 final ActivityStack stack = display.getChildAt(stackNdx);
1074 stack.cancelInitializingActivities();
Wale Ogunwale2be760d2016-02-17 11:16:10 -08001075 }
1076 }
1077 }
1078
Bryce Lee4a194382017-04-04 14:32:48 -07001079 void waitActivityVisible(ComponentName name, WaitResult result) {
1080 final WaitInfo waitInfo = new WaitInfo(name, result);
1081 mWaitingForActivityVisible.add(waitInfo);
1082 }
1083
1084 void cleanupActivity(ActivityRecord r) {
1085 // Make sure this record is no longer in the pending finishes list.
1086 // This could happen, for example, if we are trimming activities
1087 // down to the max limit while they are still waiting to finish.
1088 mFinishingActivities.remove(r);
1089 mActivitiesWaitingForVisibleActivity.remove(r);
1090
1091 for (int i = mWaitingForActivityVisible.size() - 1; i >= 0; --i) {
Wale Ogunwale3270f172017-04-26 07:29:42 -07001092 if (mWaitingForActivityVisible.get(i).matches(r.realActivity)) {
Bryce Lee4a194382017-04-04 14:32:48 -07001093 mWaitingForActivityVisible.remove(i);
1094 }
1095 }
1096 }
1097
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001098 void reportActivityVisibleLocked(ActivityRecord r) {
Dianne Hackborn6cfbb712014-09-17 12:47:35 -07001099 sendWaitingVisibleReportLocked(r);
Dianne Hackborn6cfbb712014-09-17 12:47:35 -07001100 }
1101
1102 void sendWaitingVisibleReportLocked(ActivityRecord r) {
1103 boolean changed = false;
Bryce Lee4a194382017-04-04 14:32:48 -07001104 for (int i = mWaitingForActivityVisible.size() - 1; i >= 0; --i) {
1105 final WaitInfo w = mWaitingForActivityVisible.get(i);
Wale Ogunwale3270f172017-04-26 07:29:42 -07001106 if (w.matches(r.realActivity)) {
Bryce Lee4a194382017-04-04 14:32:48 -07001107 final WaitResult result = w.getResult();
Dianne Hackborn6cfbb712014-09-17 12:47:35 -07001108 changed = true;
Bryce Lee4a194382017-04-04 14:32:48 -07001109 result.timeout = false;
1110 result.who = w.getComponent();
1111 result.totalTime = SystemClock.uptimeMillis() - result.thisTime;
1112 result.thisTime = result.totalTime;
1113 mWaitingForActivityVisible.remove(w);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001114 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001115 }
Dianne Hackborn6cfbb712014-09-17 12:47:35 -07001116 if (changed) {
1117 mService.notifyAll();
1118 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001119 }
1120
Chong Zhang5022da32016-06-21 16:31:37 -07001121 void reportTaskToFrontNoLaunch(ActivityRecord r) {
1122 boolean changed = false;
1123 for (int i = mWaitingActivityLaunched.size() - 1; i >= 0; i--) {
1124 WaitResult w = mWaitingActivityLaunched.remove(i);
1125 if (w.who == null) {
1126 changed = true;
1127 // Set result to START_TASK_TO_FRONT so that startActivityMayWait() knows that
1128 // the starting activity ends up moving another activity to front, and it should
1129 // wait for this new activity to become visible instead.
1130 // Do not modify other fields.
1131 w.result = START_TASK_TO_FRONT;
1132 }
1133 }
1134 if (changed) {
1135 mService.notifyAll();
1136 }
1137 }
1138
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001139 void reportActivityLaunchedLocked(boolean timeout, ActivityRecord r,
1140 long thisTime, long totalTime) {
Dianne Hackborn6cfbb712014-09-17 12:47:35 -07001141 boolean changed = false;
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001142 for (int i = mWaitingActivityLaunched.size() - 1; i >= 0; i--) {
Craig Mautnerc64f73e2013-04-24 16:44:56 -07001143 WaitResult w = mWaitingActivityLaunched.remove(i);
Dianne Hackborn6cfbb712014-09-17 12:47:35 -07001144 if (w.who == null) {
1145 changed = true;
1146 w.timeout = timeout;
1147 if (r != null) {
1148 w.who = new ComponentName(r.info.packageName, r.info.name);
1149 }
1150 w.thisTime = thisTime;
1151 w.totalTime = totalTime;
Chong Zhang5022da32016-06-21 16:31:37 -07001152 // Do not modify w.result.
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001153 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001154 }
Dianne Hackborn6cfbb712014-09-17 12:47:35 -07001155 if (changed) {
1156 mService.notifyAll();
1157 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07001158 }
1159
Craig Mautner29219d92013-04-16 20:19:12 -07001160 ActivityRecord topRunningActivityLocked() {
Wale Ogunwaled697cea2015-02-20 17:19:49 -08001161 final ActivityStack focusedStack = mFocusedStack;
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001162 ActivityRecord r = focusedStack.topRunningActivityLocked();
Craig Mautner1602ec22013-05-12 10:24:27 -07001163 if (r != null) {
1164 return r;
Craig Mautner29219d92013-04-16 20:19:12 -07001165 }
Craig Mautner1602ec22013-05-12 10:24:27 -07001166
Andrii Kulian7318d632016-07-20 18:59:28 -07001167 // Look in other non-focused and non-home stacks.
Andrii Kulian7d95df42017-02-15 10:11:48 -08001168 mWindowManager.getDisplaysInFocusOrder(mTmpOrderedDisplayIds);
1169
1170 for (int i = mTmpOrderedDisplayIds.size() - 1; i >= 0; --i) {
1171 final int displayId = mTmpOrderedDisplayIds.get(i);
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001172 final ActivityDisplay display = mActivityDisplays.get(displayId);
1173 for (int j = display.getChildCount() - 1; j >= 0; --j) {
1174 final ActivityStack stack = display.getChildAt(j);
1175 if (stack != focusedStack && stack.isTopStackOnDisplay() && stack.isFocusable()) {
Andrii Kulian7d95df42017-02-15 10:11:48 -08001176 r = stack.topRunningActivityLocked();
1177 if (r != null) {
1178 return r;
1179 }
Craig Mautner29219d92013-04-16 20:19:12 -07001180 }
1181 }
1182 }
1183 return null;
1184 }
1185
Winson Chung61c9e5a2017-10-11 10:39:32 -07001186 @VisibleForTesting
1187 void getRunningTasks(int maxNum, List<RunningTaskInfo> list,
1188 @ActivityType int ignoreActivityType, @WindowingMode int ignoreWindowingMode,
1189 int callingUid, boolean allowed) {
1190 mRunningTasks.getTasks(maxNum, list, ignoreActivityType, ignoreWindowingMode,
1191 mActivityDisplays, callingUid, allowed);
Craig Mautner20e72272013-04-01 13:45:53 -07001192 }
1193
Todd Kennedy7440f172015-12-09 14:31:22 -08001194 ActivityInfo resolveActivity(Intent intent, ResolveInfo rInfo, int startFlags,
1195 ProfilerInfo profilerInfo) {
1196 final ActivityInfo aInfo = rInfo != null ? rInfo.activityInfo : null;
Craig Mautner23ac33b2013-04-01 16:26:35 -07001197 if (aInfo != null) {
1198 // Store the found target back into the intent, because now that
1199 // we have it we never want to do this again. For example, if the
1200 // user navigates back to this point in the history, we should
1201 // always restart the exact same activity.
1202 intent.setComponent(new ComponentName(
1203 aInfo.applicationInfo.packageName, aInfo.name));
1204
1205 // Don't debug things in the system process
Man Caocfa78b22015-06-11 20:14:34 -07001206 if (!aInfo.processName.equals("system")) {
1207 if ((startFlags & ActivityManager.START_FLAG_DEBUG) != 0) {
Chong Zhangd25944e2016-06-09 16:15:27 -07001208 mService.setDebugApp(aInfo.processName, true, false);
Craig Mautner23ac33b2013-04-01 16:26:35 -07001209 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07001210
Tamas Berghammerdf6cb282016-01-29 12:07:00 +00001211 if ((startFlags & ActivityManager.START_FLAG_NATIVE_DEBUGGING) != 0) {
1212 mService.setNativeDebuggingAppLocked(aInfo.applicationInfo, aInfo.processName);
1213 }
1214
Man Caocfa78b22015-06-11 20:14:34 -07001215 if ((startFlags & ActivityManager.START_FLAG_TRACK_ALLOCATION) != 0) {
1216 mService.setTrackAllocationApp(aInfo.applicationInfo, aInfo.processName);
1217 }
1218
1219 if (profilerInfo != null) {
Jeff Hao1b012d32014-08-20 10:35:34 -07001220 mService.setProfileApp(aInfo.applicationInfo, aInfo.processName, profilerInfo);
Craig Mautner23ac33b2013-04-01 16:26:35 -07001221 }
1222 }
Todd Kennedyb3b431302017-03-20 16:05:48 -07001223 final String intentLaunchToken = intent.getLaunchToken();
1224 if (aInfo.launchToken == null && intentLaunchToken != null) {
1225 aInfo.launchToken = intentLaunchToken;
1226 }
Craig Mautner23ac33b2013-04-01 16:26:35 -07001227 }
1228 return aInfo;
1229 }
1230
Todd Kennedy7440f172015-12-09 14:31:22 -08001231 ResolveInfo resolveIntent(Intent intent, String resolvedType, int userId) {
Kenny Guyb1b30262016-02-09 16:02:35 +00001232 return resolveIntent(intent, resolvedType, userId, 0);
1233 }
1234
1235 ResolveInfo resolveIntent(Intent intent, String resolvedType, int userId, int flags) {
Todd Kennedy4d1de7d2017-02-23 10:32:18 -08001236 synchronized (mService) {
1237 return mService.getPackageManagerInternalLocked().resolveIntent(intent, resolvedType,
Todd Kennedybe0b8892017-02-15 14:13:52 -08001238 PackageManager.MATCH_INSTANT | PackageManager.MATCH_DEFAULT_ONLY | flags
Todd Kennedy82b08422017-09-28 13:32:05 -07001239 | ActivityManagerService.STOCK_PM_FLAGS, userId, true);
Todd Kennedy7440f172015-12-09 14:31:22 -08001240 }
Todd Kennedy7440f172015-12-09 14:31:22 -08001241 }
1242
1243 ActivityInfo resolveActivity(Intent intent, String resolvedType, int startFlags,
1244 ProfilerInfo profilerInfo, int userId) {
1245 final ResolveInfo rInfo = resolveIntent(intent, resolvedType, userId);
1246 return resolveActivity(intent, rInfo, startFlags, profilerInfo);
1247 }
1248
Wale Ogunwale5658e4b2016-02-12 12:22:19 -08001249 final boolean realStartActivityLocked(ActivityRecord r, ProcessRecord app,
1250 boolean andResume, boolean checkConfig) throws RemoteException {
1251
1252 if (!allPausedActivitiesComplete()) {
1253 // While there are activities pausing we skipping starting any new activities until
1254 // pauses are complete. NOTE: that we also do this for activities that are starting in
1255 // the paused state because they will first be resumed then paused on the client side.
1256 if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
1257 "realStartActivityLocked: Skipping start of r=" + r
1258 + " some activities pausing...");
1259 return false;
1260 }
Craig Mautner2420ead2013-04-01 17:13:20 -07001261
Bryce Leeaf691c02017-03-20 14:20:22 -07001262 final TaskRecord task = r.getTask();
Andrii Kulian02b7a832016-10-06 23:11:56 -07001263 final ActivityStack stack = task.getStack();
chaviw59b98852017-06-13 12:05:44 -07001264
1265 beginDeferResume();
1266
Craig Mautner2420ead2013-04-01 17:13:20 -07001267 try {
chaviw59b98852017-06-13 12:05:44 -07001268 r.startFreezingScreenLocked(app, 0);
1269
1270 // schedule launch ticks to collect information about slow apps.
1271 r.startLaunchTickingLocked();
1272
Dianne Hackborn68a06332017-11-15 17:54:18 -08001273 r.setProcess(app);
chaviw59b98852017-06-13 12:05:44 -07001274
Jorim Jaggi838c2452017-08-28 15:44:43 +02001275 if (mKeyguardController.isKeyguardLocked()) {
1276 r.notifyUnknownVisibilityLaunched();
1277 }
1278
chaviw59b98852017-06-13 12:05:44 -07001279 // Have the window manager re-evaluate the orientation of the screen based on the new
1280 // activity order. Note that as a result of this, it can call back into the activity
1281 // manager with a new orientation. We don't care about that, because the activity is
1282 // not currently running so we are just restarting it anyway.
1283 if (checkConfig) {
1284 final int displayId = r.getDisplayId();
1285 final Configuration config = mWindowManager.updateOrientationFromAppTokens(
1286 getDisplayOverrideConfiguration(displayId),
1287 r.mayFreezeScreenLocked(app) ? r.appToken : null, displayId);
1288 // Deferring resume here because we're going to launch new activity shortly.
1289 // We don't want to perform a redundant launch of the same record while ensuring
1290 // configurations and trying to resume top activity of focused stack.
1291 mService.updateDisplayOverrideConfigurationLocked(config, r, true /* deferResume */,
1292 displayId);
Craig Mautner2420ead2013-04-01 17:13:20 -07001293 }
chaviw59b98852017-06-13 12:05:44 -07001294
1295 if (r.getStack().checkKeyguardVisibility(r, true /* shouldBeVisible */,
1296 true /* isTop */)) {
1297 // We only set the visibility to true if the activity is allowed to be visible
1298 // based on
1299 // keyguard state. This avoids setting this into motion in window manager that is
1300 // later cancelled due to later calls to ensure visible activities that set
1301 // visibility back to false.
1302 r.setVisibility(true);
Craig Mautner2420ead2013-04-01 17:13:20 -07001303 }
chaviw59b98852017-06-13 12:05:44 -07001304
chaviw59b98852017-06-13 12:05:44 -07001305 final int applicationInfoUid =
1306 (r.info.applicationInfo != null) ? r.info.applicationInfo.uid : -1;
1307 if ((r.userId != app.userId) || (r.appInfo.uid != applicationInfoUid)) {
1308 Slog.wtf(TAG,
1309 "User ID for activity changing for " + r
1310 + " appInfo.uid=" + r.appInfo.uid
1311 + " info.ai.uid=" + applicationInfoUid
1312 + " old=" + r.app + " new=" + app);
1313 }
1314
1315 app.waitingToKill = null;
1316 r.launchCount++;
1317 r.lastLaunchTime = SystemClock.uptimeMillis();
1318
1319 if (DEBUG_ALL) Slog.v(TAG, "Launching: " + r);
1320
1321 int idx = app.activities.indexOf(r);
1322 if (idx < 0) {
1323 app.activities.add(r);
1324 }
1325 mService.updateLruProcessLocked(app, true, null);
1326 mService.updateOomAdjLocked();
1327
Charles Heff9b4dff2017-09-22 10:18:37 +01001328 if (task.mLockTaskAuth == LOCK_TASK_AUTH_LAUNCHABLE
1329 || task.mLockTaskAuth == LOCK_TASK_AUTH_LAUNCHABLE_PRIV
1330 || (task.mLockTaskAuth == LOCK_TASK_AUTH_WHITELISTED
1331 && mService.mLockTaskController.getLockTaskModeState()
1332 == LOCK_TASK_MODE_LOCKED)) {
Benjamin Franza83859f2017-07-03 16:34:14 +01001333 mService.mLockTaskController.startLockTaskMode(task, false, 0 /* blank UID */);
chaviw59b98852017-06-13 12:05:44 -07001334 }
1335
1336 try {
1337 if (app.thread == null) {
1338 throw new RemoteException();
1339 }
1340 List<ResultInfo> results = null;
1341 List<ReferrerIntent> newIntents = null;
1342 if (andResume) {
1343 // We don't need to deliver new intents and/or set results if activity is going
1344 // to pause immediately after launch.
1345 results = r.results;
1346 newIntents = r.newIntents;
1347 }
1348 if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
1349 "Launching: " + r + " icicle=" + r.icicle + " with results=" + results
1350 + " newIntents=" + newIntents + " andResume=" + andResume);
1351 EventLog.writeEvent(EventLogTags.AM_RESTART_ACTIVITY, r.userId,
1352 System.identityHashCode(r), task.taskId, r.shortComponentName);
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001353 if (r.isActivityTypeHome()) {
chaviw59b98852017-06-13 12:05:44 -07001354 // Home process is the root process of the task.
1355 mService.mHomeProcess = task.mActivities.get(0).app;
1356 }
1357 mService.notifyPackageUse(r.intent.getComponent().getPackageName(),
1358 PackageManager.NOTIFY_PACKAGE_USE_ACTIVITY);
1359 r.sleeping = false;
1360 r.forceNewConfig = false;
Alan Viveretteb6a25732017-11-21 14:49:24 -05001361 mService.getAppWarningsLocked().onStartActivity(r);
chaviw59b98852017-06-13 12:05:44 -07001362 mService.showAskCompatModeDialogLocked(r);
1363 r.compat = mService.compatibilityInfoForPackageLocked(r.info.applicationInfo);
1364 ProfilerInfo profilerInfo = null;
1365 if (mService.mProfileApp != null && mService.mProfileApp.equals(app.processName)) {
1366 if (mService.mProfileProc == null || mService.mProfileProc == app) {
1367 mService.mProfileProc = app;
Andreas Gampe2b073a02017-06-22 17:28:57 -07001368 ProfilerInfo profilerInfoSvc = mService.mProfilerInfo;
1369 if (profilerInfoSvc != null && profilerInfoSvc.profileFile != null) {
1370 if (profilerInfoSvc.profileFd != null) {
chaviw59b98852017-06-13 12:05:44 -07001371 try {
Andreas Gampe2b073a02017-06-22 17:28:57 -07001372 profilerInfoSvc.profileFd = profilerInfoSvc.profileFd.dup();
chaviw59b98852017-06-13 12:05:44 -07001373 } catch (IOException e) {
Andreas Gampe2b073a02017-06-22 17:28:57 -07001374 profilerInfoSvc.closeFd();
Craig Mautner2568c3a2015-03-26 14:22:34 -07001375 }
1376 }
chaviw59b98852017-06-13 12:05:44 -07001377
Andreas Gampe2b073a02017-06-22 17:28:57 -07001378 profilerInfo = new ProfilerInfo(profilerInfoSvc);
Craig Mautner2420ead2013-04-01 17:13:20 -07001379 }
Craig Mautner2420ead2013-04-01 17:13:20 -07001380 }
1381 }
Adam Powellcfbe9be2013-11-06 14:58:58 -08001382
chaviw59b98852017-06-13 12:05:44 -07001383 app.hasShownUi = true;
1384 app.pendingUiClean = true;
1385 app.forceProcessStateUpTo(mService.mTopProcessState);
1386 // Because we could be starting an Activity in the system process this may not go
1387 // across a Binder interface which would create a new Configuration. Consequently
1388 // we have to always create a new Configuration here.
Bryce Leea163b762017-01-24 11:05:01 -08001389
chaviw59b98852017-06-13 12:05:44 -07001390 final MergedConfiguration mergedConfiguration = new MergedConfiguration(
1391 mService.getGlobalConfiguration(), r.getMergedOverrideConfiguration());
1392 r.setLastReportedConfiguration(mergedConfiguration);
Bryce Leea163b762017-01-24 11:05:01 -08001393
chaviw59b98852017-06-13 12:05:44 -07001394 logIfTransactionTooLarge(r.intent, r.icicle);
1395 app.thread.scheduleLaunchActivity(new Intent(r.intent), r.appToken,
1396 System.identityHashCode(r), r.info,
1397 // TODO: Have this take the merged configuration instead of separate global
1398 // and override configs.
1399 mergedConfiguration.getGlobalConfiguration(),
1400 mergedConfiguration.getOverrideConfiguration(), r.compat,
1401 r.launchedFromPackage, task.voiceInteractor, app.repProcState, r.icicle,
1402 r.persistentState, results, newIntents, !andResume,
1403 mService.isNextTransitionForward(), profilerInfo);
Craig Mautner2420ead2013-04-01 17:13:20 -07001404
chaviw59b98852017-06-13 12:05:44 -07001405 if ((app.info.privateFlags & ApplicationInfo.PRIVATE_FLAG_CANT_SAVE_STATE) != 0) {
1406 // This may be a heavy-weight process! Note that the package
1407 // manager will ensure that only activity can run in the main
1408 // process of the .apk, which is the only thing that will be
1409 // considered heavy-weight.
1410 if (app.processName.equals(app.info.packageName)) {
1411 if (mService.mHeavyWeightProcess != null
1412 && mService.mHeavyWeightProcess != app) {
1413 Slog.w(TAG, "Starting new heavy weight process " + app
1414 + " when already running "
1415 + mService.mHeavyWeightProcess);
1416 }
1417 mService.mHeavyWeightProcess = app;
1418 Message msg = mService.mHandler.obtainMessage(
1419 ActivityManagerService.POST_HEAVY_NOTIFICATION_MSG);
1420 msg.obj = r;
1421 mService.mHandler.sendMessage(msg);
Craig Mautner2420ead2013-04-01 17:13:20 -07001422 }
Craig Mautner2420ead2013-04-01 17:13:20 -07001423 }
Craig Mautner2420ead2013-04-01 17:13:20 -07001424
chaviw59b98852017-06-13 12:05:44 -07001425 } catch (RemoteException e) {
1426 if (r.launchFailed) {
1427 // This is the second time we failed -- finish activity
1428 // and give up.
1429 Slog.e(TAG, "Second failure launching "
1430 + r.intent.getComponent().flattenToShortString()
1431 + ", giving up", e);
1432 mService.appDiedLocked(app);
1433 stack.requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
1434 "2nd-crash", false);
1435 return false;
1436 }
Craig Mautner2420ead2013-04-01 17:13:20 -07001437
chaviw59b98852017-06-13 12:05:44 -07001438 // This is the first time we failed -- restart process and
1439 // retry.
1440 r.launchFailed = true;
1441 app.activities.remove(r);
1442 throw e;
1443 }
1444 } finally {
1445 endDeferResume();
Craig Mautner2420ead2013-04-01 17:13:20 -07001446 }
1447
1448 r.launchFailed = false;
1449 if (stack.updateLRUListLocked(r)) {
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07001450 Slog.w(TAG, "Activity " + r + " being launched, but already in LRU list");
Craig Mautner2420ead2013-04-01 17:13:20 -07001451 }
1452
chaviw59b98852017-06-13 12:05:44 -07001453 if (andResume && readyToResume()) {
Craig Mautner2420ead2013-04-01 17:13:20 -07001454 // As part of the process of launching, ActivityThread also performs
1455 // a resume.
1456 stack.minimalResumeActivityLocked(r);
1457 } else {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001458 // This activity is not starting in the resumed state... which should look like we asked
Wale Ogunwale919a05d2017-04-13 00:36:34 +00001459 // it to pause+stop (but remain visible), and it has done so and reported back the
Wale Ogunwaled046a012015-12-24 13:05:59 -08001460 // current icicle and other state.
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001461 if (DEBUG_STATES) Slog.v(TAG_STATES,
Wale Ogunwaled046a012015-12-24 13:05:59 -08001462 "Moving to PAUSED: " + r + " (starting in paused state)");
1463 r.state = PAUSED;
Craig Mautner2420ead2013-04-01 17:13:20 -07001464 }
1465
1466 // Launch the new version setup screen if needed. We do this -after-
1467 // launching the initial activity (that is, home), so that it can have
1468 // a chance to initialize itself while in the background, making the
1469 // switch back to it faster and look better.
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07001470 if (isFocusedStack(stack)) {
Craig Mautner2420ead2013-04-01 17:13:20 -07001471 mService.startSetupActivityLocked();
1472 }
1473
Dianne Hackborn465fa392014-09-14 14:21:18 -07001474 // Update any services we are bound to that might care about whether
1475 // their client may have activities.
Wale Ogunwaled6ac7622016-05-26 09:02:25 -07001476 if (r.app != null) {
1477 mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
1478 }
Dianne Hackborn465fa392014-09-14 14:21:18 -07001479
Craig Mautner2420ead2013-04-01 17:13:20 -07001480 return true;
1481 }
1482
Sudheer Shankafab200f2017-05-17 20:41:53 -07001483 private void logIfTransactionTooLarge(Intent intent, Bundle icicle) {
1484 int extrasSize = 0;
1485 if (intent != null) {
1486 final Bundle extras = intent.getExtras();
1487 if (extras != null) {
1488 extrasSize = extras.getSize();
1489 }
1490 }
1491 int icicleSize = (icicle == null ? 0 : icicle.getSize());
1492 if (extrasSize + icicleSize > 200000) {
1493 Slog.e(TAG, "Transaction too large, intent: " + intent + ", extras size: " + extrasSize
1494 + ", icicle size: " + icicleSize);
1495 }
1496 }
1497
Craig Mautnere79d42682013-04-01 19:01:53 -07001498 void startSpecificActivityLocked(ActivityRecord r,
George Mount2c92c972014-03-20 09:38:23 -07001499 boolean andResume, boolean checkConfig) {
Craig Mautnere79d42682013-04-01 19:01:53 -07001500 // Is this activity's application already running?
1501 ProcessRecord app = mService.getProcessRecordLocked(r.processName,
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07001502 r.info.applicationInfo.uid, true);
Craig Mautnere79d42682013-04-01 19:01:53 -07001503
Andrii Kulian02b7a832016-10-06 23:11:56 -07001504 r.getStack().setLaunchTime(r);
Craig Mautnere79d42682013-04-01 19:01:53 -07001505
1506 if (app != null && app.thread != null) {
1507 try {
Dianne Hackborn237cefb2013-10-22 18:45:27 -07001508 if ((r.info.flags&ActivityInfo.FLAG_MULTIPROCESS) == 0
1509 || !"android".equals(r.info.packageName)) {
1510 // Don't add this if it is a platform component that is marked
1511 // to run in multiple processes, because this is actually
1512 // part of the framework so doesn't make sense to track as a
1513 // separate apk in the process.
Dianne Hackbornf7097a52014-05-13 09:56:14 -07001514 app.addPackage(r.info.packageName, r.info.applicationInfo.versionCode,
1515 mService.mProcessStats);
Dianne Hackborn237cefb2013-10-22 18:45:27 -07001516 }
George Mount2c92c972014-03-20 09:38:23 -07001517 realStartActivityLocked(r, app, andResume, checkConfig);
Craig Mautnere79d42682013-04-01 19:01:53 -07001518 return;
1519 } catch (RemoteException e) {
1520 Slog.w(TAG, "Exception when starting activity "
1521 + r.intent.getComponent().flattenToShortString(), e);
1522 }
1523
1524 // If a dead object exception was thrown -- fall through to
1525 // restart the application.
1526 }
1527
1528 mService.startProcessLocked(r.processName, r.info.applicationInfo, true, 0,
Dianne Hackborn3bc8f78d2013-09-19 13:34:35 -07001529 "activity", r.intent.getComponent(), false, false, true);
Craig Mautnere79d42682013-04-01 19:01:53 -07001530 }
1531
Filip Gruszczynski07a0e492015-12-17 14:16:38 -08001532 boolean checkStartAnyActivityPermission(Intent intent, ActivityInfo aInfo,
Filip Gruszczynskidc394902015-12-14 10:20:22 -08001533 String resultWho, int requestCode, int callingPid, int callingUid,
1534 String callingPackage, boolean ignoreTargetSecurity, ProcessRecord callerApp,
Jorim Jaggi2adba072016-03-03 13:43:39 +01001535 ActivityRecord resultRecord, ActivityStack resultStack, ActivityOptions options) {
Filip Gruszczynskidc394902015-12-14 10:20:22 -08001536 final int startAnyPerm = mService.checkPermission(START_ANY_ACTIVITY, callingPid,
1537 callingUid);
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001538 if (startAnyPerm == PERMISSION_GRANTED) {
Filip Gruszczynskidc394902015-12-14 10:20:22 -08001539 return true;
1540 }
1541 final int componentRestriction = getComponentRestrictionForCallingPackage(
1542 aInfo, callingPackage, callingPid, callingUid, ignoreTargetSecurity);
1543 final int actionRestriction = getActionRestrictionForCallingPackage(
1544 intent.getAction(), callingPackage, callingPid, callingUid);
1545 if (componentRestriction == ACTIVITY_RESTRICTION_PERMISSION
1546 || actionRestriction == ACTIVITY_RESTRICTION_PERMISSION) {
1547 if (resultRecord != null) {
1548 resultStack.sendActivityResultLocked(-1,
1549 resultRecord, resultWho, requestCode,
1550 Activity.RESULT_CANCELED, null);
1551 }
1552 final String msg;
1553 if (actionRestriction == ACTIVITY_RESTRICTION_PERMISSION) {
1554 msg = "Permission Denial: starting " + intent.toString()
1555 + " from " + callerApp + " (pid=" + callingPid
1556 + ", uid=" + callingUid + ")" + " with revoked permission "
1557 + ACTION_TO_RUNTIME_PERMISSION.get(intent.getAction());
1558 } else if (!aInfo.exported) {
1559 msg = "Permission Denial: starting " + intent.toString()
1560 + " from " + callerApp + " (pid=" + callingPid
1561 + ", uid=" + callingUid + ")"
1562 + " not exported from uid " + aInfo.applicationInfo.uid;
1563 } else {
1564 msg = "Permission Denial: starting " + intent.toString()
1565 + " from " + callerApp + " (pid=" + callingPid
1566 + ", uid=" + callingUid + ")"
1567 + " requires " + aInfo.permission;
1568 }
1569 Slog.w(TAG, msg);
1570 throw new SecurityException(msg);
1571 }
1572
1573 if (actionRestriction == ACTIVITY_RESTRICTION_APPOP) {
1574 final String message = "Appop Denial: starting " + intent.toString()
1575 + " from " + callerApp + " (pid=" + callingPid
1576 + ", uid=" + callingUid + ")"
1577 + " requires " + AppOpsManager.permissionToOp(
1578 ACTION_TO_RUNTIME_PERMISSION.get(intent.getAction()));
1579 Slog.w(TAG, message);
1580 return false;
1581 } else if (componentRestriction == ACTIVITY_RESTRICTION_APPOP) {
1582 final String message = "Appop Denial: starting " + intent.toString()
1583 + " from " + callerApp + " (pid=" + callingPid
1584 + ", uid=" + callingUid + ")"
1585 + " requires appop " + AppOpsManager.permissionToOp(aInfo.permission);
1586 Slog.w(TAG, message);
1587 return false;
1588 }
Andrii Kulian16802aa2016-11-02 12:21:33 -07001589 if (options != null) {
Winson Chung3f0e59a2017-10-25 10:19:05 -07001590 // If a launch task id is specified, then ensure that the caller is the recents
1591 // component or has the START_TASKS_FROM_RECENTS permission
1592 if (options.getLaunchTaskId() != INVALID_TASK_ID
1593 && !mRecentTasks.isCallerRecents(callingUid)) {
Andrii Kulian16802aa2016-11-02 12:21:33 -07001594 final int startInTaskPerm = mService.checkPermission(START_TASKS_FROM_RECENTS,
1595 callingPid, callingUid);
Andrii Kulian3c9ad072017-08-01 11:45:22 -07001596 if (startInTaskPerm == PERMISSION_DENIED) {
Andrii Kulian16802aa2016-11-02 12:21:33 -07001597 final String msg = "Permission Denial: starting " + intent.toString()
1598 + " from " + callerApp + " (pid=" + callingPid
1599 + ", uid=" + callingUid + ") with launchTaskId="
1600 + options.getLaunchTaskId();
1601 Slog.w(TAG, msg);
1602 throw new SecurityException(msg);
1603 }
1604 }
1605 // Check if someone tries to launch an activity on a private display with a different
1606 // owner.
1607 final int launchDisplayId = options.getLaunchDisplayId();
Andrii Kulian02689a72017-07-06 14:28:59 -07001608 if (launchDisplayId != INVALID_DISPLAY && !isCallerAllowedToLaunchOnDisplay(callingPid,
1609 callingUid, launchDisplayId, aInfo)) {
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001610 final String msg = "Permission Denial: starting " + intent.toString()
1611 + " from " + callerApp + " (pid=" + callingPid
1612 + ", uid=" + callingUid + ") with launchDisplayId="
1613 + launchDisplayId;
1614 Slog.w(TAG, msg);
1615 throw new SecurityException(msg);
Jorim Jaggi2adba072016-03-03 13:43:39 +01001616 }
Charles He2bf28322017-10-12 22:24:49 +01001617 // Check if someone tries to launch an unwhitelisted activity into LockTask mode.
1618 final boolean lockTaskMode = options.getLockTaskMode();
1619 if (lockTaskMode && !mService.mLockTaskController.isPackageWhitelisted(
1620 UserHandle.getUserId(callingUid), aInfo.packageName)) {
1621 final String msg = "Permission Denial: starting " + intent.toString()
1622 + " from " + callerApp + " (pid=" + callingPid
1623 + ", uid=" + callingUid + ") with lockTaskMode=true";
1624 Slog.w(TAG, msg);
1625 throw new SecurityException(msg);
1626 }
Jorim Jaggi2adba072016-03-03 13:43:39 +01001627 }
1628
Filip Gruszczynskidc394902015-12-14 10:20:22 -08001629 return true;
1630 }
1631
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001632 /** Check if caller is allowed to launch activities on specified display. */
Andrii Kulian02689a72017-07-06 14:28:59 -07001633 boolean isCallerAllowedToLaunchOnDisplay(int callingPid, int callingUid, int launchDisplayId,
1634 ActivityInfo aInfo) {
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001635 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check: displayId=" + launchDisplayId
1636 + " callingPid=" + callingPid + " callingUid=" + callingUid);
1637
Andrii Kulian02689a72017-07-06 14:28:59 -07001638 if (callingPid == -1 && callingUid == -1) {
1639 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check: no caller info, skip check");
1640 return true;
1641 }
1642
Andrii Kulian62e6f252017-05-30 22:46:53 -07001643 final ActivityDisplay activityDisplay = getActivityDisplayOrCreateLocked(launchDisplayId);
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001644 if (activityDisplay == null) {
1645 Slog.w(TAG, "Launch on display check: display not found");
1646 return false;
1647 }
1648
Andrii Kulian02689a72017-07-06 14:28:59 -07001649 // Check if the caller has enough privileges to embed activities and launch to private
1650 // displays.
Andrii Kulian3a95edc2017-06-28 16:21:07 -07001651 final int startAnyPerm = mService.checkPermission(INTERNAL_SYSTEM_WINDOW, callingPid,
Andrii Kulian1cba31c2017-06-28 09:42:48 -07001652 callingUid);
1653 if (startAnyPerm == PERMISSION_GRANTED) {
1654 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check:"
1655 + " allow launch any on display");
1656 return true;
1657 }
1658
Andrii Kulian8f070292017-09-12 22:56:49 -07001659 // Check if caller is already present on display
1660 final boolean uidPresentOnDisplay = activityDisplay.isUidPresent(callingUid);
1661
Andrii Kulian3c9ad072017-08-01 11:45:22 -07001662 final int displayOwnerUid = activityDisplay.mDisplay.getOwnerUid();
1663 if (activityDisplay.mDisplay.getType() == TYPE_VIRTUAL && displayOwnerUid != SYSTEM_UID
1664 && displayOwnerUid != aInfo.applicationInfo.uid) {
Andrii Kulian1cba31c2017-06-28 09:42:48 -07001665 // Limit launching on virtual displays, because their contents can be read from Surface
1666 // by apps that created them.
Andrii Kulian02689a72017-07-06 14:28:59 -07001667 if ((aInfo.flags & ActivityInfo.FLAG_ALLOW_EMBEDDED) == 0) {
1668 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check:"
1669 + " disallow launch on virtual display for not-embedded activity.");
1670 return false;
1671 }
Andrii Kulian3c9ad072017-08-01 11:45:22 -07001672 // Check if the caller is allowed to embed activities from other apps.
1673 if (mService.checkPermission(ACTIVITY_EMBEDDING, callingPid, callingUid)
Andrii Kulian8f070292017-09-12 22:56:49 -07001674 == PERMISSION_DENIED && !uidPresentOnDisplay) {
Andrii Kulian3c9ad072017-08-01 11:45:22 -07001675 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check:"
1676 + " disallow activity embedding without permission.");
1677 return false;
1678 }
Andrii Kulian1cba31c2017-06-28 09:42:48 -07001679 }
1680
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001681 if (!activityDisplay.isPrivate()) {
1682 // Anyone can launch on a public display.
1683 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check:"
1684 + " allow launch on public display");
1685 return true;
1686 }
1687
1688 // Check if the caller is the owner of the display.
Andrii Kulian3c9ad072017-08-01 11:45:22 -07001689 if (displayOwnerUid == callingUid) {
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001690 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check:"
1691 + " allow launch for owner of the display");
1692 return true;
1693 }
1694
Andrii Kulian8f070292017-09-12 22:56:49 -07001695 if (uidPresentOnDisplay) {
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001696 if (DEBUG_TASKS) Slog.d(TAG, "Launch on display check:"
1697 + " allow launch for caller present on the display");
1698 return true;
1699 }
1700
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001701 Slog.w(TAG, "Launch on display check: denied");
1702 return false;
1703 }
1704
1705 /** Update lists of UIDs that are present on displays and have access to them. */
1706 void updateUIDsPresentOnDisplay() {
1707 mDisplayAccessUIDs.clear();
1708 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
1709 final ActivityDisplay activityDisplay = mActivityDisplays.valueAt(displayNdx);
David Stevens82ea6cb2017-03-03 16:18:50 -08001710 // Only bother calculating the whitelist for private displays
1711 if (activityDisplay.isPrivate()) {
1712 mDisplayAccessUIDs.append(
1713 activityDisplay.mDisplayId, activityDisplay.getPresentUIDs());
1714 }
Andrii Kulianfb1bf692017-01-17 11:17:34 -08001715 }
1716 // Store updated lists in DisplayManager. Callers from outside of AM should get them there.
1717 mDisplayManagerInternal.setDisplayAccessUIDs(mDisplayAccessUIDs);
1718 }
1719
Filip Gruszczynski07a0e492015-12-17 14:16:38 -08001720 UserInfo getUserInfo(int userId) {
Clara Bayarrif7fea162015-10-22 16:09:52 +01001721 final long identity = Binder.clearCallingIdentity();
1722 try {
1723 return UserManager.get(mService.mContext).getUserInfo(userId);
1724 } finally {
1725 Binder.restoreCallingIdentity(identity);
1726 }
1727 }
1728
Svet Ganov99b60432015-06-27 13:15:22 -07001729 private int getComponentRestrictionForCallingPackage(ActivityInfo activityInfo,
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07001730 String callingPackage, int callingPid, int callingUid, boolean ignoreTargetSecurity) {
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07001731 if (!ignoreTargetSecurity && mService.checkComponentPermission(activityInfo.permission,
1732 callingPid, callingUid, activityInfo.applicationInfo.uid, activityInfo.exported)
Andrii Kulian3c9ad072017-08-01 11:45:22 -07001733 == PERMISSION_DENIED) {
Svet Ganov99b60432015-06-27 13:15:22 -07001734 return ACTIVITY_RESTRICTION_PERMISSION;
1735 }
1736
Christopher Tateff7add02015-08-17 10:23:22 -07001737 if (activityInfo.permission == null) {
1738 return ACTIVITY_RESTRICTION_NONE;
1739 }
1740
Svet Ganov99b60432015-06-27 13:15:22 -07001741 final int opCode = AppOpsManager.permissionToOpCode(activityInfo.permission);
1742 if (opCode == AppOpsManager.OP_NONE) {
1743 return ACTIVITY_RESTRICTION_NONE;
1744 }
1745
1746 if (mService.mAppOpsService.noteOperation(opCode, callingUid,
1747 callingPackage) != AppOpsManager.MODE_ALLOWED) {
Dianne Hackborna7cfbe02015-07-16 10:52:52 -07001748 if (!ignoreTargetSecurity) {
1749 return ACTIVITY_RESTRICTION_APPOP;
1750 }
Svet Ganov99b60432015-06-27 13:15:22 -07001751 }
1752
1753 return ACTIVITY_RESTRICTION_NONE;
1754 }
1755
Svetoslav7008b512015-06-24 18:47:07 -07001756 private int getActionRestrictionForCallingPackage(String action,
1757 String callingPackage, int callingPid, int callingUid) {
1758 if (action == null) {
Svet Ganov99b60432015-06-27 13:15:22 -07001759 return ACTIVITY_RESTRICTION_NONE;
Svetoslav7008b512015-06-24 18:47:07 -07001760 }
1761
1762 String permission = ACTION_TO_RUNTIME_PERMISSION.get(action);
1763 if (permission == null) {
Svet Ganov99b60432015-06-27 13:15:22 -07001764 return ACTIVITY_RESTRICTION_NONE;
Svetoslav7008b512015-06-24 18:47:07 -07001765 }
1766
1767 final PackageInfo packageInfo;
1768 try {
1769 packageInfo = mService.mContext.getPackageManager()
1770 .getPackageInfo(callingPackage, PackageManager.GET_PERMISSIONS);
1771 } catch (PackageManager.NameNotFoundException e) {
1772 Slog.i(TAG, "Cannot find package info for " + callingPackage);
Svet Ganov99b60432015-06-27 13:15:22 -07001773 return ACTIVITY_RESTRICTION_NONE;
Svetoslav7008b512015-06-24 18:47:07 -07001774 }
1775
1776 if (!ArrayUtils.contains(packageInfo.requestedPermissions, permission)) {
Svet Ganov99b60432015-06-27 13:15:22 -07001777 return ACTIVITY_RESTRICTION_NONE;
Svetoslav7008b512015-06-24 18:47:07 -07001778 }
1779
Andrii Kulian3c9ad072017-08-01 11:45:22 -07001780 if (mService.checkPermission(permission, callingPid, callingUid) == PERMISSION_DENIED) {
Svet Ganov99b60432015-06-27 13:15:22 -07001781 return ACTIVITY_RESTRICTION_PERMISSION;
Svetoslav7008b512015-06-24 18:47:07 -07001782 }
1783
1784 final int opCode = AppOpsManager.permissionToOpCode(permission);
1785 if (opCode == AppOpsManager.OP_NONE) {
Svet Ganov99b60432015-06-27 13:15:22 -07001786 return ACTIVITY_RESTRICTION_NONE;
Svetoslav7008b512015-06-24 18:47:07 -07001787 }
1788
1789 if (mService.mAppOpsService.noteOperation(opCode, callingUid,
1790 callingPackage) != AppOpsManager.MODE_ALLOWED) {
Svet Ganov99b60432015-06-27 13:15:22 -07001791 return ACTIVITY_RESTRICTION_APPOP;
Svetoslav7008b512015-06-24 18:47:07 -07001792 }
1793
Svet Ganov99b60432015-06-27 13:15:22 -07001794 return ACTIVITY_RESTRICTION_NONE;
Svetoslav7008b512015-06-24 18:47:07 -07001795 }
1796
Dianne Hackborn3d07c942015-03-13 18:02:54 -07001797 void setLaunchSource(int uid) {
1798 mLaunchingActivity.setWorkSource(new WorkSource(uid));
1799 }
1800
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001801 void acquireLaunchWakelock() {
1802 if (VALIDATE_WAKE_LOCK_CALLER && Binder.getCallingUid() != Process.myUid()) {
1803 throw new IllegalStateException("Calling must be system uid");
1804 }
1805 mLaunchingActivity.acquire();
1806 if (!mHandler.hasMessages(LAUNCH_TIMEOUT_MSG)) {
1807 // To be safe, don't allow the wake lock to be held for too long.
1808 mHandler.sendEmptyMessageDelayed(LAUNCH_TIMEOUT_MSG, LAUNCH_TIMEOUT);
1809 }
1810 }
1811
Craig Mautnerf3ea23a2015-01-13 09:37:08 -08001812 /**
1813 * Called when the frontmost task is idle.
1814 * @return the state of mService.mBooting before this was called.
1815 */
1816 private boolean checkFinishBootingLocked() {
1817 final boolean booting = mService.mBooting;
1818 boolean enableScreen = false;
1819 mService.mBooting = false;
1820 if (!mService.mBooted) {
1821 mService.mBooted = true;
1822 enableScreen = true;
1823 }
1824 if (booting || enableScreen) {
1825 mService.postFinishBooting(booting, enableScreen);
1826 }
1827 return booting;
1828 }
1829
Craig Mautnerf3333272013-04-22 10:55:53 -07001830 // Checked.
1831 final ActivityRecord activityIdleInternalLocked(final IBinder token, boolean fromTimeout,
Winson Chung4dabf232017-01-25 13:25:22 -08001832 boolean processPausingActivities, Configuration config) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001833 if (DEBUG_ALL) Slog.v(TAG, "Activity idle: " + token);
Craig Mautnerf3333272013-04-22 10:55:53 -07001834
Craig Mautnerf3333272013-04-22 10:55:53 -07001835 ArrayList<ActivityRecord> finishes = null;
Amith Yamasani37a40c22015-06-17 13:25:42 -07001836 ArrayList<UserState> startingUsers = null;
Craig Mautnerf3333272013-04-22 10:55:53 -07001837 int NS = 0;
1838 int NF = 0;
Craig Mautnerf3333272013-04-22 10:55:53 -07001839 boolean booting = false;
Craig Mautnerf3333272013-04-22 10:55:53 -07001840 boolean activityRemoved = false;
1841
Wale Ogunwale7d701172015-03-11 15:36:30 -07001842 ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerf3333272013-04-22 10:55:53 -07001843 if (r != null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001844 if (DEBUG_IDLE) Slog.d(TAG_IDLE, "activityIdleInternalLocked: Callers="
1845 + Debug.getCallers(4));
Craig Mautnerf3333272013-04-22 10:55:53 -07001846 mHandler.removeMessages(IDLE_TIMEOUT_MSG, r);
1847 r.finishLaunchTickingLocked();
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001848 if (fromTimeout) {
1849 reportActivityLaunchedLocked(fromTimeout, r, -1, -1);
Craig Mautnerf3333272013-04-22 10:55:53 -07001850 }
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001851
1852 // This is a hack to semi-deal with a race condition
1853 // in the client where it can be constructed with a
1854 // newer configuration from when we asked it to launch.
1855 // We'll update with whatever configuration it now says
1856 // it used to launch.
1857 if (config != null) {
Bryce Leea163b762017-01-24 11:05:01 -08001858 r.setLastReportedGlobalConfiguration(config);
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001859 }
1860
1861 // We are now idle. If someone is waiting for a thumbnail from
1862 // us, we can now deliver.
1863 r.idle = true;
1864
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001865 //Slog.i(TAG, "IDLE: mBooted=" + mBooted + ", fromTimeout=" + fromTimeout);
Andrii Kulian02b7a832016-10-06 23:11:56 -07001866 if (isFocusedStack(r.getStack()) || fromTimeout) {
Craig Mautnerf3ea23a2015-01-13 09:37:08 -08001867 booting = checkFinishBootingLocked();
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001868 }
1869 }
1870
1871 if (allResumedActivitiesIdle()) {
1872 if (r != null) {
1873 mService.scheduleAppGcsLocked();
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001874 }
1875
1876 if (mLaunchingActivity.isHeld()) {
1877 mHandler.removeMessages(LAUNCH_TIMEOUT_MSG);
1878 if (VALIDATE_WAKE_LOCK_CALLER &&
1879 Binder.getCallingUid() != Process.myUid()) {
1880 throw new IllegalStateException("Calling must be system uid");
1881 }
1882 mLaunchingActivity.release();
1883 }
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07001884 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerf3333272013-04-22 10:55:53 -07001885 }
1886
1887 // Atomically retrieve all of the other things to do.
Winson Chung4dabf232017-01-25 13:25:22 -08001888 final ArrayList<ActivityRecord> stops = processStoppingActivitiesLocked(r,
1889 true /* remove */, processPausingActivities);
Craig Mautnerf3333272013-04-22 10:55:53 -07001890 NS = stops != null ? stops.size() : 0;
Wale Ogunwale7d701172015-03-11 15:36:30 -07001891 if ((NF = mFinishingActivities.size()) > 0) {
1892 finishes = new ArrayList<>(mFinishingActivities);
Craig Mautnerf3333272013-04-22 10:55:53 -07001893 mFinishingActivities.clear();
1894 }
1895
Craig Mautnerf3333272013-04-22 10:55:53 -07001896 if (mStartingUsers.size() > 0) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001897 startingUsers = new ArrayList<>(mStartingUsers);
Craig Mautnerf3333272013-04-22 10:55:53 -07001898 mStartingUsers.clear();
1899 }
1900
Craig Mautnerf3333272013-04-22 10:55:53 -07001901 // Stop any activities that are scheduled to do so but have been
1902 // waiting for the next one to start.
1903 for (int i = 0; i < NS; i++) {
1904 r = stops.get(i);
Andrii Kulian02b7a832016-10-06 23:11:56 -07001905 final ActivityStack stack = r.getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001906 if (stack != null) {
1907 if (r.finishing) {
1908 stack.finishCurrentActivityLocked(r, ActivityStack.FINISH_IMMEDIATELY, false);
1909 } else {
1910 stack.stopActivityLocked(r);
1911 }
Craig Mautnerf3333272013-04-22 10:55:53 -07001912 }
1913 }
1914
1915 // Finish any activities that are scheduled to do so but have been
1916 // waiting for the next one to start.
1917 for (int i = 0; i < NF; i++) {
1918 r = finishes.get(i);
Andrii Kulian02b7a832016-10-06 23:11:56 -07001919 final ActivityStack stack = r.getStack();
Wale Ogunwale7d701172015-03-11 15:36:30 -07001920 if (stack != null) {
1921 activityRemoved |= stack.destroyActivityLocked(r, true, "finish-idle");
1922 }
Craig Mautnerf3333272013-04-22 10:55:53 -07001923 }
1924
Dianne Hackborn7622a0f2014-09-30 14:31:42 -07001925 if (!booting) {
Amith Yamasani1a7eaaa52014-05-07 10:22:15 -07001926 // Complete user switch
1927 if (startingUsers != null) {
1928 for (int i = 0; i < startingUsers.size(); i++) {
Fyodor Kupolov610acda2015-10-19 18:44:07 -07001929 mService.mUserController.finishUserSwitch(startingUsers.get(i));
Amith Yamasani1a7eaaa52014-05-07 10:22:15 -07001930 }
1931 }
Craig Mautnerf3333272013-04-22 10:55:53 -07001932 }
1933
1934 mService.trimApplications();
1935 //dump();
1936 //mWindowManager.dump();
1937
Craig Mautnerf3333272013-04-22 10:55:53 -07001938 if (activityRemoved) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08001939 resumeFocusedStackTopActivityLocked();
Craig Mautnerf3333272013-04-22 10:55:53 -07001940 }
1941
Craig Mautner7ea5bd42013-07-05 15:27:08 -07001942 return r;
Craig Mautnerf3333272013-04-22 10:55:53 -07001943 }
1944
Craig Mautner8e569572013-10-11 17:36:59 -07001945 boolean handleAppDiedLocked(ProcessRecord app) {
Craig Mautner19091252013-10-05 00:03:53 -07001946 boolean hasVisibleActivities = false;
Craig Mautnere0a38842013-12-16 16:14:02 -08001947 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001948 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
1949 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1950 final ActivityStack stack = display.getChildAt(stackNdx);
1951 hasVisibleActivities |= stack.handleAppDiedLocked(app);
Craig Mautner4a1cb222013-12-04 16:14:06 -08001952 }
Craig Mautner6b74cb52013-09-27 17:02:21 -07001953 }
Craig Mautner19091252013-10-05 00:03:53 -07001954 return hasVisibleActivities;
Craig Mautner8d341ef2013-03-26 09:03:27 -07001955 }
1956
1957 void closeSystemDialogsLocked() {
Craig Mautnere0a38842013-12-16 16:14:02 -08001958 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001959 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
1960 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1961 final ActivityStack stack = display.getChildAt(stackNdx);
1962 stack.closeSystemDialogsLocked();
Craig Mautner4a1cb222013-12-04 16:14:06 -08001963 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001964 }
1965 }
1966
Craig Mautner93529a42013-10-04 15:03:13 -07001967 void removeUserLocked(int userId) {
Craig Mautner4f1df4f2013-10-15 15:44:14 -07001968 mUserStackInFront.delete(userId);
Craig Mautner93529a42013-10-04 15:03:13 -07001969 }
1970
Craig Mautner8d341ef2013-03-26 09:03:27 -07001971 /**
Chong Zhang45c25ce2015-08-10 22:18:26 -07001972 * Update the last used stack id for non-current user (current user's last
1973 * used stack is the focused stack)
1974 */
1975 void updateUserStackLocked(int userId, ActivityStack stack) {
1976 if (userId != mCurrentUser) {
Wale Ogunwale68278562017-09-23 17:13:55 -07001977 mUserStackInFront.put(userId, stack != null ? stack.getStackId() : mHomeStack.mStackId);
Chong Zhang45c25ce2015-08-10 22:18:26 -07001978 }
1979 }
1980
1981 /**
Craig Mautner8d341ef2013-03-26 09:03:27 -07001982 * @return true if some activity was finished (or would have finished if doit were true).
1983 */
Wale Ogunwale540e1232015-05-01 15:35:39 -07001984 boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
1985 boolean doit, boolean evenPersistent, int userId) {
Craig Mautner8d341ef2013-03-26 09:03:27 -07001986 boolean didSomething = false;
Craig Mautnere0a38842013-12-16 16:14:02 -08001987 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07001988 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
1989 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
1990 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale540e1232015-05-01 15:35:39 -07001991 if (stack.finishDisabledPackageActivitiesLocked(
1992 packageName, filterByClasses, doit, evenPersistent, userId)) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08001993 didSomething = true;
1994 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07001995 }
1996 }
1997 return didSomething;
1998 }
1999
Dianne Hackborna413dc02013-07-12 12:02:55 -07002000 void updatePreviousProcessLocked(ActivityRecord r) {
2001 // Now that this process has stopped, we may want to consider
2002 // it to be the previous app to try to keep around in case
2003 // the user wants to return to it.
2004
2005 // First, found out what is currently the foreground app, so that
2006 // we don't blow away the previous app if this activity is being
2007 // hosted by the process that is actually still the foreground.
2008 ProcessRecord fgApp = null;
Craig Mautnere0a38842013-12-16 16:14:02 -08002009 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002010 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
2011 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2012 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07002013 if (isFocusedStack(stack)) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08002014 if (stack.mResumedActivity != null) {
2015 fgApp = stack.mResumedActivity.app;
2016 } else if (stack.mPausingActivity != null) {
2017 fgApp = stack.mPausingActivity.app;
2018 }
2019 break;
Dianne Hackborna413dc02013-07-12 12:02:55 -07002020 }
Dianne Hackborna413dc02013-07-12 12:02:55 -07002021 }
2022 }
2023
2024 // Now set this one as the previous process, only if that really
2025 // makes sense to.
2026 if (r.app != null && fgApp != null && r.app != fgApp
2027 && r.lastVisibleTime > mService.mPreviousProcessVisibleTime
Craig Mautner4ef26932013-09-18 15:15:52 -07002028 && r.app != mService.mHomeProcess) {
Dianne Hackborna413dc02013-07-12 12:02:55 -07002029 mService.mPreviousProcess = r.app;
2030 mService.mPreviousProcessVisibleTime = r.lastVisibleTime;
2031 }
2032 }
2033
Wale Ogunwaled046a012015-12-24 13:05:59 -08002034 boolean resumeFocusedStackTopActivityLocked() {
2035 return resumeFocusedStackTopActivityLocked(null, null, null);
Craig Mautner05d29032013-05-03 13:40:13 -07002036 }
2037
Wale Ogunwaled046a012015-12-24 13:05:59 -08002038 boolean resumeFocusedStackTopActivityLocked(
Chong Zhang280d3322015-11-03 17:27:26 -08002039 ActivityStack targetStack, ActivityRecord target, ActivityOptions targetOptions) {
chaviw59b98852017-06-13 12:05:44 -07002040
2041 if (!readyToResume()) {
2042 return false;
2043 }
2044
Wale Ogunwaled046a012015-12-24 13:05:59 -08002045 if (targetStack != null && isFocusedStack(targetStack)) {
2046 return targetStack.resumeTopActivityUncheckedLocked(target, targetOptions);
Craig Mautner05d29032013-05-03 13:40:13 -07002047 }
chaviw59b98852017-06-13 12:05:44 -07002048
Wale Ogunwale06579d62016-04-30 15:29:06 -07002049 final ActivityRecord r = mFocusedStack.topRunningActivityLocked();
2050 if (r == null || r.state != RESUMED) {
2051 mFocusedStack.resumeTopActivityUncheckedLocked(null, null);
skuhne@google.com1b974dc2016-12-09 13:41:29 -08002052 } else if (r.state == RESUMED) {
2053 // Kick off any lingering app transitions form the MoveTaskToFront operation.
2054 mFocusedStack.executeAppTransition(targetOptions);
Wale Ogunwale06579d62016-04-30 15:29:06 -07002055 }
chaviw59b98852017-06-13 12:05:44 -07002056
Wale Ogunwaled046a012015-12-24 13:05:59 -08002057 return false;
Craig Mautner8d341ef2013-03-26 09:03:27 -07002058 }
2059
Todd Kennedy39bfee52016-02-24 10:28:21 -08002060 void updateActivityApplicationInfoLocked(ApplicationInfo aInfo) {
2061 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002062 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
2063 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
2064 final ActivityStack stack = display.getChildAt(stackNdx);
2065 stack.updateActivityApplicationInfoLocked(aInfo);
Todd Kennedy39bfee52016-02-24 10:28:21 -08002066 }
2067 }
2068 }
2069
Adrian Roos20d7df32016-01-12 18:59:43 +01002070 TaskRecord finishTopRunningActivityLocked(ProcessRecord app, String reason) {
2071 TaskRecord finishedTask = null;
2072 ActivityStack focusedStack = getFocusedStack();
Craig Mautnere0a38842013-12-16 16:14:02 -08002073 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002074 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
2075 final int numStacks = display.getChildCount();
Craig Mautner4a1cb222013-12-04 16:14:06 -08002076 for (int stackNdx = 0; stackNdx < numStacks; ++stackNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002077 final ActivityStack stack = display.getChildAt(stackNdx);
Adrian Roos20d7df32016-01-12 18:59:43 +01002078 TaskRecord t = stack.finishTopRunningActivityLocked(app, reason);
2079 if (stack == focusedStack || finishedTask == null) {
2080 finishedTask = t;
2081 }
Craig Mautner4a1cb222013-12-04 16:14:06 -08002082 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07002083 }
Adrian Roos20d7df32016-01-12 18:59:43 +01002084 return finishedTask;
Craig Mautner8d341ef2013-03-26 09:03:27 -07002085 }
2086
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002087 void finishVoiceTask(IVoiceInteractionSession session) {
2088 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002089 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
2090 final int numStacks = display.getChildCount();
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002091 for (int stackNdx = 0; stackNdx < numStacks; ++stackNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002092 final ActivityStack stack = display.getChildAt(stackNdx);
Dianne Hackborn6ea0d0a2014-07-02 16:23:21 -07002093 stack.finishVoiceTask(session);
2094 }
2095 }
2096 }
2097
Wale Ogunwale66e16852017-10-19 13:35:52 -07002098 void findTaskToMoveToFront(TaskRecord task, int flags, ActivityOptions options,
Andrii Kulianc27916642016-04-12 17:59:27 -07002099 String reason, boolean forceNonResizeable) {
Wale Ogunwale66e16852017-10-19 13:35:52 -07002100 final ActivityStack currentStack = task.getStack();
2101 if (currentStack == null) {
2102 Slog.e(TAG, "findTaskToMoveToFront: can't move task="
2103 + task + " to front. Stack is null");
2104 return;
2105 }
2106
Craig Mautneraea74a52014-03-08 14:23:10 -08002107 if ((flags & ActivityManager.MOVE_TASK_NO_USER_ACTION) == 0) {
2108 mUserLeaving = true;
Craig Mautner8d341ef2013-03-26 09:03:27 -07002109 }
Wale Ogunwale66e16852017-10-19 13:35:52 -07002110
2111 final ActivityRecord prev = topRunningActivityLocked();
2112
2113 if ((flags & ActivityManager.MOVE_TASK_WITH_HOME) != 0
2114 || (prev != null && prev.isActivityTypeRecents())) {
2115 // Caller wants the home activity moved with it or the previous task is recents in which
2116 // case we always return home from the task we are moving to the front.
2117 moveHomeStackToFront("findTaskToMoveToFront");
Wale Ogunwale7d701172015-03-11 15:36:30 -07002118 }
Chong Zhang0fa656b2015-08-31 15:17:21 -07002119
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002120 if (task.isResizeable() && canUseActivityOptionsLaunchBounds(options)) {
Bryce Leef3c6a472017-11-14 14:53:06 -08002121 final Rect bounds = options.getLaunchBounds();
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002122 task.updateOverrideConfiguration(bounds);
2123
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002124 ActivityStack stack = getLaunchStack(null, options, task, ON_TOP);
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002125
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002126 if (stack != currentStack) {
2127 task.reparent(stack, ON_TOP, REPARENT_KEEP_STACK_AT_FRONT, !ANIMATE, DEFER_RESUME,
Wale Ogunwale66e16852017-10-19 13:35:52 -07002128 "findTaskToMoveToFront");
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002129 stack = currentStack;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002130 // moveTaskToStackUncheckedLocked() should already placed the task on top,
2131 // still need moveTaskToFrontLocked() below for any transition settings.
2132 }
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002133 if (stack.resizeStackWithLaunchBounds()) {
2134 resizeStackLocked(stack, bounds, null /* tempTaskBounds */,
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002135 null /* tempTaskInsetBounds */, !PRESERVE_WINDOWS,
2136 true /* allowResizeInDockedMode */, !DEFER_RESUME);
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002137 } else {
2138 // WM resizeTask must be done after the task is moved to the correct stack,
2139 // because Task's setBounds() also updates dim layer's bounds, but that has
2140 // dependency on the stack.
2141 task.resizeWindowContainer();
Chong Zhang0fa656b2015-08-31 15:17:21 -07002142 }
2143 }
2144
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002145 final ActivityRecord r = task.getTopActivity();
Andrii Kulian02b7a832016-10-06 23:11:56 -07002146 currentStack.moveTaskToFrontLocked(task, false /* noAnimation */, options,
Chong Zhangdb20b5f2015-10-23 14:01:43 -07002147 r == null ? null : r.appTimeTracker, reason);
2148
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002149 if (DEBUG_STACK) Slog.d(TAG_STACK,
Andrii Kulian02b7a832016-10-06 23:11:56 -07002150 "findTaskToMoveToFront: moved to front of stack=" + currentStack);
Jorim Jaggi2adba072016-03-03 13:43:39 +01002151
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002152 handleNonResizableTaskIfNeeded(task, WINDOWING_MODE_UNDEFINED, DEFAULT_DISPLAY,
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002153 currentStack, forceNonResizeable);
Craig Mautner8d341ef2013-03-26 09:03:27 -07002154 }
2155
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002156 boolean canUseActivityOptionsLaunchBounds(ActivityOptions options) {
Wale Ogunwale7a8fa602015-11-18 15:56:57 -08002157 // We use the launch bounds in the activity options is the device supports freeform
Wale Ogunwale854809c2015-12-27 16:18:19 -08002158 // window management or is launching into the pinned stack.
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002159 if (options == null || options.getLaunchBounds() == null) {
Wale Ogunwale854809c2015-12-27 16:18:19 -08002160 return false;
2161 }
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002162 return (mService.mSupportsPictureInPicture
2163 && options.getLaunchWindowingMode() == WINDOWING_MODE_PINNED)
Wale Ogunwale854809c2015-12-27 16:18:19 -08002164 || mService.mSupportsFreeformWindowManagement;
Wale Ogunwale7a8fa602015-11-18 15:56:57 -08002165 }
2166
Bryce Leedacefc42017-10-10 12:56:02 -07002167 LaunchingBoundsController getLaunchingBoundsController() {
2168 return mLaunchingBoundsController;
Bryce Lee9ad3eb32017-10-10 10:10:31 -07002169 }
2170
Winson Chung55893332017-02-17 17:13:10 -08002171 protected <T extends ActivityStack> T getStack(int stackId) {
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002172 for (int i = mActivityDisplays.size() - 1; i >= 0; --i) {
2173 final T stack = mActivityDisplays.valueAt(i).getStack(stackId);
2174 if (stack != null) {
2175 return stack;
2176 }
2177 }
2178 return null;
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002179 }
2180
Wale Ogunwale68278562017-09-23 17:13:55 -07002181 /** @see ActivityDisplay#getStack(int, int) */
2182 private <T extends ActivityStack> T getStack(int windowingMode, int activityType) {
2183 for (int i = mActivityDisplays.size() - 1; i >= 0; --i) {
2184 final T stack = mActivityDisplays.valueAt(i).getStack(windowingMode, activityType);
2185 if (stack != null) {
2186 return stack;
2187 }
2188 }
2189 return null;
2190 }
2191
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002192 int resolveActivityType(@Nullable ActivityRecord r, @Nullable ActivityOptions options,
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002193 @Nullable TaskRecord task) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002194 // Preference is given to the activity type for the activity then the task since the type
2195 // once set shouldn't change.
2196 int activityType = r != null ? r.getActivityType() : ACTIVITY_TYPE_UNDEFINED;
2197 if (activityType == ACTIVITY_TYPE_UNDEFINED && task != null) {
2198 activityType = task.getActivityType();
2199 }
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002200 if (activityType != ACTIVITY_TYPE_UNDEFINED) {
2201 return activityType;
2202 }
Wale Ogunwaleab5de372017-10-18 06:46:31 -07002203 if (options != null) {
2204 activityType = options.getLaunchActivityType();
2205 }
2206 return activityType != ACTIVITY_TYPE_UNDEFINED ? activityType : ACTIVITY_TYPE_STANDARD;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002207 }
2208
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002209 <T extends ActivityStack> T getLaunchStack(@Nullable ActivityRecord r,
2210 @Nullable ActivityOptions options, @Nullable TaskRecord candidateTask, boolean onTop) {
2211 return getLaunchStack(r, options, candidateTask, onTop, INVALID_DISPLAY);
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002212 }
2213
2214 /**
2215 * Returns the right stack to use for launching factoring in all the input parameters.
2216 *
2217 * @param r The activity we are trying to launch. Can be null.
2218 * @param options The activity options used to the launch. Can be null.
2219 * @param candidateTask The possible task the activity might be launched in. Can be null.
2220 *
2221 * @return The stack to use for the launch or INVALID_STACK_ID.
2222 */
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002223 <T extends ActivityStack> T getLaunchStack(@Nullable ActivityRecord r,
2224 @Nullable ActivityOptions options, @Nullable TaskRecord candidateTask, boolean onTop,
2225 int candidateDisplayId) {
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002226 int taskId = INVALID_TASK_ID;
2227 int displayId = INVALID_DISPLAY;
2228 //Rect bounds = null;
2229
2230 // We give preference to the launch preference in activity options.
2231 if (options != null) {
2232 taskId = options.getLaunchTaskId();
2233 displayId = options.getLaunchDisplayId();
2234 // TODO: Need to work this into the equation...
2235 //bounds = options.getLaunchBounds();
2236 }
2237
2238 // First preference for stack goes to the task Id set in the activity options. Use the stack
2239 // associated with that if possible.
2240 if (taskId != INVALID_TASK_ID) {
2241 // Temporarily set the task id to invalid in case in re-entry.
2242 options.setLaunchTaskId(INVALID_TASK_ID);
2243 final TaskRecord task = anyTaskForIdLocked(taskId,
Wale Ogunwaleab5de372017-10-18 06:46:31 -07002244 MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE, options, onTop);
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002245 options.setLaunchTaskId(taskId);
2246 if (task != null) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002247 return task.getStack();
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002248 }
2249 }
2250
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002251 final int activityType = resolveActivityType(r, options, candidateTask);
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002252 T stack = null;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002253
2254 // Next preference for stack goes to the display Id set in the activity options or the
2255 // candidate display.
2256 if (displayId == INVALID_DISPLAY) {
2257 displayId = candidateDisplayId;
2258 }
2259 if (displayId != INVALID_DISPLAY) {
2260 if (r != null) {
2261 // TODO: This should also take in the windowing mode and activity type into account.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002262 stack = (T) getValidLaunchStackOnDisplay(displayId, r);
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002263 if (stack != null) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002264 return stack;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002265 }
2266 }
2267 final ActivityDisplay display = getActivityDisplayOrCreateLocked(displayId);
2268 if (display != null) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002269 stack = display.getOrCreateStack(r, options, candidateTask, activityType, onTop);
Wale Ogunwaleab5de372017-10-18 06:46:31 -07002270 if (stack != null) {
2271 return stack;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002272 }
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002273 }
2274 }
2275
2276 // Give preference to the stack and display of the input task and activity if they match the
2277 // mode we want to launch into.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002278 stack = null;
2279 ActivityDisplay display = null;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002280 if (candidateTask != null) {
2281 stack = candidateTask.getStack();
2282 }
2283 if (stack == null && r != null) {
2284 stack = r.getStack();
2285 }
2286 if (stack != null) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002287 display = stack.getDisplay();
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002288 if (display != null) {
2289 final int windowingMode =
2290 display.resolveWindowingMode(r, options, candidateTask, activityType);
2291 if (stack.isCompatible(windowingMode, activityType)) {
2292 return stack;
2293 }
2294 }
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002295 }
2296
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002297 if (display == null
2298 // TODO: Can be removed once we figure-out how non-standard types should launch
2299 // outside the default display.
2300 || (activityType != ACTIVITY_TYPE_STANDARD
2301 && activityType != ACTIVITY_TYPE_UNDEFINED)) {
2302 display = getDefaultDisplay();
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002303 }
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002304
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002305 return display.getOrCreateStack(r, options, candidateTask, activityType, onTop);
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002306 }
2307
Andrii Kulian16802aa2016-11-02 12:21:33 -07002308 /**
2309 * Get a topmost stack on the display, that is a valid launch stack for specified activity.
2310 * If there is no such stack, new dynamic stack can be created.
2311 * @param displayId Target display.
2312 * @param r Activity that should be launched there.
2313 * @return Existing stack if there is a valid one, new dynamic stack if it is valid or null.
2314 */
2315 ActivityStack getValidLaunchStackOnDisplay(int displayId, @NonNull ActivityRecord r) {
Andrii Kulian62e6f252017-05-30 22:46:53 -07002316 final ActivityDisplay activityDisplay = getActivityDisplayOrCreateLocked(displayId);
Andrii Kulian16802aa2016-11-02 12:21:33 -07002317 if (activityDisplay == null) {
2318 throw new IllegalArgumentException(
2319 "Display with displayId=" + displayId + " not found.");
2320 }
2321
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002322 if (!r.canBeLaunchedOnDisplay(displayId)) {
2323 return null;
2324 }
2325
Andrii Kulian16802aa2016-11-02 12:21:33 -07002326 // Return the topmost valid stack on the display.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002327 for (int i = activityDisplay.getChildCount() - 1; i >= 0; --i) {
2328 final ActivityStack stack = activityDisplay.getChildAt(i);
Wale Ogunwale68278562017-09-23 17:13:55 -07002329 if (isValidLaunchStack(stack, displayId, r)) {
Andrii Kulian16802aa2016-11-02 12:21:33 -07002330 return stack;
2331 }
2332 }
2333
2334 // If there is no valid stack on the external display - check if new dynamic stack will do.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002335 if (displayId != DEFAULT_DISPLAY) {
2336 return activityDisplay.createStack(
2337 r.getWindowingMode(), r.getActivityType(), true /*onTop*/);
Andrii Kulian16802aa2016-11-02 12:21:33 -07002338 }
2339
2340 Slog.w(TAG, "getValidLaunchStackOnDisplay: can't launch on displayId " + displayId);
2341 return null;
2342 }
2343
Wale Ogunwale68278562017-09-23 17:13:55 -07002344 // TODO: Can probably be consolidated into getLaunchStack()...
2345 private boolean isValidLaunchStack(ActivityStack stack, int displayId, ActivityRecord r) {
2346 switch (stack.getActivityType()) {
2347 case ACTIVITY_TYPE_HOME: return r.isActivityTypeHome();
2348 case ACTIVITY_TYPE_RECENTS: return r.isActivityTypeRecents();
2349 case ACTIVITY_TYPE_ASSISTANT: return r.isActivityTypeAssistant();
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002350 }
Wale Ogunwale68278562017-09-23 17:13:55 -07002351 switch (stack.getWindowingMode()) {
2352 case WINDOWING_MODE_FULLSCREEN: return true;
2353 case WINDOWING_MODE_FREEFORM: return r.supportsFreeform();
2354 case WINDOWING_MODE_PINNED: return r.supportsPictureInPicture();
2355 case WINDOWING_MODE_SPLIT_SCREEN_PRIMARY: return r.supportsSplitScreenWindowingMode();
2356 case WINDOWING_MODE_SPLIT_SCREEN_SECONDARY: return r.supportsSplitScreenWindowingMode();
2357 }
2358
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002359 if (!stack.isOnHomeDisplay()) {
Wale Ogunwale68278562017-09-23 17:13:55 -07002360 return r.canBeLaunchedOnDisplay(displayId);
2361 }
2362 Slog.e(TAG, "isValidLaunchStack: Unexpected stack=" + stack);
2363 return false;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002364 }
2365
Andrii Kulian7fc22812016-12-28 13:04:11 -08002366 /**
2367 * Get next focusable stack in the system. This will search across displays and stacks
2368 * in last-focused order for a focusable and visible stack, different from the target stack.
2369 *
2370 * @param currentFocus The stack that previously had focus and thus needs to be ignored when
2371 * searching for next candidate.
2372 * @return Next focusable {@link ActivityStack}, null if not found.
2373 */
2374 ActivityStack getNextFocusableStackLocked(ActivityStack currentFocus) {
2375 mWindowManager.getDisplaysInFocusOrder(mTmpOrderedDisplayIds);
2376
2377 for (int i = mTmpOrderedDisplayIds.size() - 1; i >= 0; --i) {
2378 final int displayId = mTmpOrderedDisplayIds.get(i);
Andrii Kulian62e6f252017-05-30 22:46:53 -07002379 // If a display is registered in WM, it must also be available in AM.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002380 final ActivityDisplay display = getActivityDisplayOrCreateLocked(displayId);
2381 for (int j = display.getChildCount() - 1; j >= 0; --j) {
2382 final ActivityStack stack = display.getChildAt(j);
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002383 if (stack != currentFocus && stack.isFocusable()
2384 && stack.shouldBeVisible(null)) {
Andrii Kulian7fc22812016-12-28 13:04:11 -08002385 return stack;
2386 }
2387 }
2388 }
2389
2390 return null;
2391 }
2392
Andrii Kuliana8fe3df2017-06-16 15:29:26 -07002393 /**
2394 * Get next valid stack for launching provided activity in the system. This will search across
2395 * displays and stacks in last-focused order for a focusable and visible stack, except those
2396 * that are on a currently focused display.
2397 *
2398 * @param r The activity that is being launched.
2399 * @param currentFocus The display that previously had focus and thus needs to be ignored when
2400 * searching for the next candidate.
2401 * @return Next valid {@link ActivityStack}, null if not found.
2402 */
2403 ActivityStack getNextValidLaunchStackLocked(@NonNull ActivityRecord r, int currentFocus) {
2404 mWindowManager.getDisplaysInFocusOrder(mTmpOrderedDisplayIds);
2405 for (int i = mTmpOrderedDisplayIds.size() - 1; i >= 0; --i) {
2406 final int displayId = mTmpOrderedDisplayIds.get(i);
2407 if (displayId == currentFocus) {
2408 continue;
2409 }
2410 final ActivityStack stack = getValidLaunchStackOnDisplay(displayId, r);
2411 if (stack != null) {
2412 return stack;
2413 }
2414 }
2415 return null;
2416 }
2417
Craig Mautneree2e45a2014-06-27 12:10:03 -07002418 ActivityRecord getHomeActivity() {
Craig Mautnerdb49fec2015-05-21 15:33:30 -07002419 return getHomeActivityForUser(mCurrentUser);
Fyodor Kupolovb5013302015-04-17 17:59:14 -07002420 }
2421
2422 ActivityRecord getHomeActivityForUser(int userId) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08002423 final ArrayList<TaskRecord> tasks = mHomeStack.getAllTasks();
2424 for (int taskNdx = tasks.size() - 1; taskNdx >= 0; --taskNdx) {
2425 final TaskRecord task = tasks.get(taskNdx);
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07002426 if (task.isActivityTypeHome()) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08002427 final ArrayList<ActivityRecord> activities = task.mActivities;
2428 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2429 final ActivityRecord r = activities.get(activityNdx);
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07002430 if (r.isActivityTypeHome()
Fyodor Kupolovb5013302015-04-17 17:59:14 -07002431 && ((userId == UserHandle.USER_ALL) || (r.userId == userId))) {
Craig Mautneree2e45a2014-06-27 12:10:03 -07002432 return r;
Craig Mautner4a1cb222013-12-04 16:14:06 -08002433 }
2434 }
2435 }
2436 }
2437 return null;
2438 }
2439
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002440 void resizeStackLocked(ActivityStack stack, Rect bounds, Rect tempTaskBounds,
2441 Rect tempTaskInsetBounds, boolean preserveWindows, boolean allowResizeInDockedMode,
2442 boolean deferResume) {
2443
2444 if (stack.inSplitScreenPrimaryWindowingMode()) {
Jorim Jaggidc249c42015-12-15 14:57:31 -08002445 resizeDockedStackLocked(bounds, tempTaskBounds, tempTaskInsetBounds, null, null,
Andrii Kuliandb3e4ec2016-07-12 17:11:35 -07002446 preserveWindows, deferResume);
Jorim Jaggidc249c42015-12-15 14:57:31 -08002447 return;
2448 }
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08002449
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002450 final boolean splitScreenActive = getDefaultDisplay().hasSplitScreenPrimaryStack();
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002451 if (!allowResizeInDockedMode
Wale Ogunwale926aade2017-08-29 11:24:37 -07002452 && !stack.getWindowConfiguration().tasksAreFloating() && splitScreenActive) {
Winson Chunga2249ac2017-03-30 18:15:30 -07002453 // If the docked stack exists, don't resize non-floating stacks independently of the
2454 // size computed from the docked stack size (otherwise they will be out of sync)
Wale Ogunwaleffc11bb2015-10-10 13:05:45 -07002455 return;
2456 }
2457
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002458 Trace.traceBegin(TRACE_TAG_ACTIVITY_MANAGER, "am.resizeStack_" + stack.mStackId);
Jorim Jaggic4025202015-10-22 16:43:34 +02002459 mWindowManager.deferSurfaceLayout();
2460 try {
Wale Ogunwale2b07da82017-11-08 14:52:40 -08002461 if (stack.affectedBySplitScreenResize()) {
Wale Ogunwale926aade2017-08-29 11:24:37 -07002462 if (bounds == null && stack.inSplitScreenWindowingMode()) {
2463 // null bounds = fullscreen windowing mode...at least for now.
2464 stack.setWindowingMode(WINDOWING_MODE_FULLSCREEN);
2465 } else if (splitScreenActive) {
2466 // If we are in split-screen mode and this stack support split-screen, then
2467 // it should be split-screen secondary mode. i.e. adjacent to the docked stack.
2468 stack.setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_SECONDARY);
2469 }
2470 }
Wale Ogunwale1666e312016-12-16 11:27:18 -08002471 stack.resize(bounds, tempTaskBounds, tempTaskInsetBounds);
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002472 if (!deferResume) {
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07002473 stack.ensureVisibleActivitiesConfigurationLocked(
2474 stack.topRunningActivityLocked(), preserveWindows);
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002475 }
Jorim Jaggic4025202015-10-22 16:43:34 +02002476 } finally {
2477 mWindowManager.continueSurfaceLayout();
2478 Trace.traceEnd(TRACE_TAG_ACTIVITY_MANAGER);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002479 }
2480 }
2481
Wale Ogunwale68278562017-09-23 17:13:55 -07002482 private void deferUpdateBounds(int activityType) {
2483 final ActivityStack stack = getStack(WINDOWING_MODE_UNDEFINED, activityType);
Jorim Jaggi192086e2016-03-11 17:17:03 +01002484 if (stack != null) {
2485 stack.deferUpdateBounds();
2486 }
2487 }
2488
Wale Ogunwale68278562017-09-23 17:13:55 -07002489 private void continueUpdateBounds(int activityType) {
2490 final ActivityStack stack = getStack(WINDOWING_MODE_UNDEFINED, activityType);
Jorim Jaggi192086e2016-03-11 17:17:03 +01002491 if (stack != null) {
2492 stack.continueUpdateBounds();
2493 }
2494 }
2495
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01002496 void notifyAppTransitionDone() {
Wale Ogunwale68278562017-09-23 17:13:55 -07002497 continueUpdateBounds(ACTIVITY_TYPE_RECENTS);
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01002498 for (int i = mResizingTasksDuringAnimation.size() - 1; i >= 0; i--) {
2499 final int taskId = mResizingTasksDuringAnimation.valueAt(i);
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002500 final TaskRecord task = anyTaskForIdLocked(taskId, MATCH_TASK_IN_STACKS_ONLY);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08002501 if (task != null) {
2502 task.setTaskDockedResizing(false);
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01002503 }
2504 }
2505 mResizingTasksDuringAnimation.clear();
2506 }
2507
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002508 /**
2509 * TODO: This should just change the windowing mode and resize vs. actually moving task around.
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002510 * Can do that once we are no longer using static stack ids.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002511 */
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002512 private void moveTasksToFullscreenStackInSurfaceTransaction(ActivityStack fromStack,
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002513 int toDisplayId, boolean onTop) {
Robert Carr6914f082017-03-20 19:04:30 -07002514
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002515 mWindowManager.deferSurfaceLayout();
2516 try {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002517 final int windowingMode = fromStack.getWindowingMode();
2518 final boolean inPinnedWindowingMode = windowingMode == WINDOWING_MODE_PINNED;
2519 final ActivityDisplay toDisplay = getActivityDisplay(toDisplayId);
2520
2521 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002522 // Tell the display we are exiting split-screen mode.
2523 toDisplay.onExitingSplitScreenMode();
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002524 // We are moving all tasks from the docked stack to the fullscreen stack,
2525 // which is dismissing the docked stack, so resize all other stacks to
2526 // fullscreen here already so we don't end up with resize trashing.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002527 for (int i = toDisplay.getChildCount() - 1; i >= 0; --i) {
2528 final ActivityStack otherStack = toDisplay.getChildAt(i);
Wale Ogunwale926aade2017-08-29 11:24:37 -07002529 if (!otherStack.inSplitScreenSecondaryWindowingMode()) {
2530 continue;
2531 }
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002532 resizeStackLocked(otherStack, null, null, null, PRESERVE_WINDOWS,
Wale Ogunwale926aade2017-08-29 11:24:37 -07002533 true /* allowResizeInDockedMode */, DEFER_RESUME);
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002534 }
2535
2536 // Also disable docked stack resizing since we have manually adjusted the
2537 // size of other stacks above and we don't want to trigger a docked stack
2538 // resize when we remove task from it below and it is detached from the
2539 // display because it no longer contains any tasks.
2540 mAllowDockedStackResize = false;
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002541 } else if (inPinnedWindowingMode && onTop) {
2542 // Log if we are expanding the PiP to fullscreen
2543 MetricsLogger.action(mService.mContext,
2544 ACTION_PICTURE_IN_PICTURE_EXPANDED_TO_FULLSCREEN);
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002545 }
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002546
Winson Chung5af42fc2017-03-24 17:11:33 -07002547 // If we are moving from the pinned stack, then the animation takes care of updating
2548 // the picture-in-picture mode.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002549 final boolean schedulePictureInPictureModeChange = inPinnedWindowingMode;
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002550 final ArrayList<TaskRecord> tasks = fromStack.getAllTasks();
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002551
Wale Ogunwale388945c2017-10-04 12:13:46 -07002552 if (!tasks.isEmpty()) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002553 mTmpOptions.setLaunchWindowingMode(WINDOWING_MODE_FULLSCREEN);
Wale Ogunwale388945c2017-10-04 12:13:46 -07002554 final int size = tasks.size();
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002555 for (int i = 0; i < size; ++i) {
2556 final TaskRecord task = tasks.get(i);
2557 final ActivityStack toStack = toDisplay.getOrCreateStack(
2558 null, mTmpOptions, task, task.getActivityType(), onTop);
Wale Ogunwale388945c2017-10-04 12:13:46 -07002559
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002560 if (onTop) {
Wale Ogunwale388945c2017-10-04 12:13:46 -07002561 final boolean isTopTask = i == (size - 1);
Wale Ogunwale388945c2017-10-04 12:13:46 -07002562 // Defer resume until all the tasks have been moved to the fullscreen stack
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002563 task.reparent(toStack, ON_TOP, REPARENT_MOVE_STACK_TO_FRONT,
Wale Ogunwale388945c2017-10-04 12:13:46 -07002564 isTopTask /* animate */, DEFER_RESUME,
2565 schedulePictureInPictureModeChange,
2566 "moveTasksToFullscreenStack - onTop");
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002567 } else {
Wale Ogunwale388945c2017-10-04 12:13:46 -07002568 // Position the tasks in the fullscreen stack in order at the bottom of the
2569 // stack. Also defer resume until all the tasks have been moved to the
2570 // fullscreen stack.
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07002571 task.reparent(toStack, ON_TOP,
Wale Ogunwale388945c2017-10-04 12:13:46 -07002572 REPARENT_LEAVE_STACK_IN_PLACE, !ANIMATE, DEFER_RESUME,
2573 schedulePictureInPictureModeChange,
2574 "moveTasksToFullscreenStack - NOT_onTop");
2575 }
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002576 }
2577 }
Winson Chung74666102017-02-22 17:49:24 -08002578
2579 ensureActivitiesVisibleLocked(null, 0, PRESERVE_WINDOWS);
2580 resumeFocusedStackTopActivityLocked();
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002581 } finally {
2582 mAllowDockedStackResize = true;
2583 mWindowManager.continueSurfaceLayout();
2584 }
2585 }
2586
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002587 void moveTasksToFullscreenStackLocked(ActivityStack fromStack, boolean onTop) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002588 moveTasksToFullscreenStackLocked(fromStack, DEFAULT_DISPLAY, onTop);
2589 }
2590
2591 void moveTasksToFullscreenStackLocked(ActivityStack fromStack, int toDisplayId, boolean onTop) {
2592 mWindowManager.inSurfaceTransaction(() ->
2593 moveTasksToFullscreenStackInSurfaceTransaction(fromStack, toDisplayId, onTop));
Robert Carr6914f082017-03-20 19:04:30 -07002594 }
2595
Jorim Jaggidc249c42015-12-15 14:57:31 -08002596 void resizeDockedStackLocked(Rect dockedBounds, Rect tempDockedTaskBounds,
Andrii Kuliandb3e4ec2016-07-12 17:11:35 -07002597 Rect tempDockedTaskInsetBounds, Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds,
2598 boolean preserveWindows) {
2599 resizeDockedStackLocked(dockedBounds, tempDockedTaskBounds, tempDockedTaskInsetBounds,
2600 tempOtherTaskBounds, tempOtherTaskInsetBounds, preserveWindows,
2601 false /* deferResume */);
2602 }
2603
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002604 private void resizeDockedStackLocked(Rect dockedBounds, Rect tempDockedTaskBounds,
Andrii Kuliandb3e4ec2016-07-12 17:11:35 -07002605 Rect tempDockedTaskInsetBounds, Rect tempOtherTaskBounds, Rect tempOtherTaskInsetBounds,
2606 boolean preserveWindows, boolean deferResume) {
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002607
2608 if (!mAllowDockedStackResize) {
2609 // Docked stack resize currently disabled.
2610 return;
2611 }
2612
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002613 final ActivityStack stack = getDefaultDisplay().getSplitScreenPrimaryStack();
Jorim Jaggidc249c42015-12-15 14:57:31 -08002614 if (stack == null) {
2615 Slog.w(TAG, "resizeDockedStackLocked: docked stack not found");
2616 return;
2617 }
2618
2619 Trace.traceBegin(TRACE_TAG_ACTIVITY_MANAGER, "am.resizeDockedStack");
2620 mWindowManager.deferSurfaceLayout();
2621 try {
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002622 // Don't allow re-entry while resizing. E.g. due to docked stack detaching.
2623 mAllowDockedStackResize = false;
Jorim Jaggidc249c42015-12-15 14:57:31 -08002624 ActivityRecord r = stack.topRunningActivityLocked();
Wale Ogunwale1666e312016-12-16 11:27:18 -08002625 stack.resize(dockedBounds, tempDockedTaskBounds, tempDockedTaskInsetBounds);
Jorim Jaggidc249c42015-12-15 14:57:31 -08002626
Andrii Kulian69fb5e42016-04-05 16:47:29 -07002627 // TODO: Checking for isAttached might not be needed as if the user passes in null
2628 // dockedBounds then they want the docked stack to be dismissed.
Bryce Leef3c6a472017-11-14 14:53:06 -08002629 if (stack.getWindowingMode() == WINDOWING_MODE_FULLSCREEN
2630 || (dockedBounds == null && !stack.isAttached())) {
Andrii Kulian69fb5e42016-04-05 16:47:29 -07002631 // The dock stack either was dismissed or went fullscreen, which is kinda the same.
Jorim Jaggidc249c42015-12-15 14:57:31 -08002632 // In this case we make all other static stacks fullscreen and move all
2633 // docked stack tasks to the fullscreen stack.
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002634 moveTasksToFullscreenStackLocked(stack, ON_TOP);
Jorim Jaggidc249c42015-12-15 14:57:31 -08002635
2636 // stack shouldn't contain anymore activities, so nothing to resume.
2637 r = null;
2638 } else {
2639 // Docked stacks occupy a dedicated region on screen so the size of all other
2640 // static stacks need to be adjusted so they don't overlap with the docked stack.
2641 // We get the bounds to use from window manager which has been adjusted for any
2642 // screen controls and is also the same for all stacks.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002643 final ActivityDisplay display = getDefaultDisplay();
Matthew Ngaa2b6202017-02-10 14:48:21 -08002644 final Rect otherTaskRect = new Rect();
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002645 for (int i = display.getChildCount() - 1; i >= 0; --i) {
2646 final ActivityStack current = display.getChildAt(i);
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002647 if (current.getWindowingMode() == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Wale Ogunwale926aade2017-08-29 11:24:37 -07002648 continue;
Jorim Jaggidc249c42015-12-15 14:57:31 -08002649 }
Wale Ogunwale2b07da82017-11-08 14:52:40 -08002650 if (!current.affectedBySplitScreenResize()) {
Wale Ogunwale926aade2017-08-29 11:24:37 -07002651 continue;
2652 }
2653 // Need to set windowing mode here before we try to get the dock bounds.
2654 current.setWindowingMode(WINDOWING_MODE_SPLIT_SCREEN_SECONDARY);
2655 current.getStackDockedModeBounds(
2656 tempOtherTaskBounds /* currentTempTaskBounds */,
2657 tempRect /* outStackBounds */,
2658 otherTaskRect /* outTempTaskBounds */, true /* ignoreVisibility */);
2659
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002660 resizeStackLocked(current, !tempRect.isEmpty() ? tempRect : null,
Wale Ogunwale926aade2017-08-29 11:24:37 -07002661 !otherTaskRect.isEmpty() ? otherTaskRect : tempOtherTaskBounds,
2662 tempOtherTaskInsetBounds, preserveWindows,
2663 true /* allowResizeInDockedMode */, deferResume);
Jorim Jaggidc249c42015-12-15 14:57:31 -08002664 }
2665 }
Andrii Kuliandb3e4ec2016-07-12 17:11:35 -07002666 if (!deferResume) {
2667 stack.ensureVisibleActivitiesConfigurationLocked(r, preserveWindows);
2668 }
Jorim Jaggidc249c42015-12-15 14:57:31 -08002669 } finally {
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07002670 mAllowDockedStackResize = true;
Jorim Jaggidc249c42015-12-15 14:57:31 -08002671 mWindowManager.continueSurfaceLayout();
2672 Trace.traceEnd(TRACE_TAG_ACTIVITY_MANAGER);
2673 }
Jorim Jaggidc249c42015-12-15 14:57:31 -08002674 }
2675
Robert Carr0d00c2e2016-02-29 17:45:02 -08002676 void resizePinnedStackLocked(Rect pinnedBounds, Rect tempPinnedTaskBounds) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002677 // TODO(multi-display): Pinned stack display should be passed in.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002678 final PinnedActivityStack stack = getDefaultDisplay().getPinnedStack();
Robert Carr0d00c2e2016-02-29 17:45:02 -08002679 if (stack == null) {
2680 Slog.w(TAG, "resizePinnedStackLocked: pinned stack not found");
2681 return;
2682 }
Winson Chung19953ca2017-04-11 11:19:23 -07002683
2684 // It is possible for the bounds animation from the WM to call this but be delayed by
2685 // another AM call that is holding the AMS lock. In such a case, the pinnedBounds may be
2686 // incorrect if AMS.resizeStackWithBoundsFromWindowManager() is already called while waiting
2687 // for the AMS lock to be freed. So check and make sure these bounds are still good.
2688 final PinnedStackWindowController stackController = stack.getWindowContainerController();
Winson Chung8bca9e42017-04-16 15:59:43 -07002689 if (stackController.pinnedStackResizeDisallowed()) {
Winson Chung19953ca2017-04-11 11:19:23 -07002690 return;
2691 }
2692
Robert Carr0d00c2e2016-02-29 17:45:02 -08002693 Trace.traceBegin(TRACE_TAG_ACTIVITY_MANAGER, "am.resizePinnedStack");
2694 mWindowManager.deferSurfaceLayout();
2695 try {
2696 ActivityRecord r = stack.topRunningActivityLocked();
Robert Carr7e4c90e2017-02-15 19:52:38 -08002697 Rect insetBounds = null;
2698 if (tempPinnedTaskBounds != null) {
2699 // We always use 0,0 as the position for the inset rect because
2700 // if we are getting insets at all in the pinned stack it must mean
2701 // we are headed for fullscreen.
2702 insetBounds = tempRect;
2703 insetBounds.top = 0;
2704 insetBounds.left = 0;
2705 insetBounds.right = tempPinnedTaskBounds.width();
2706 insetBounds.bottom = tempPinnedTaskBounds.height();
2707 }
2708 stack.resize(pinnedBounds, tempPinnedTaskBounds, insetBounds);
Wale Ogunwaledb0fa122016-05-16 15:12:03 -07002709 stack.ensureVisibleActivitiesConfigurationLocked(r, false);
Robert Carr0d00c2e2016-02-29 17:45:02 -08002710 } finally {
2711 mWindowManager.continueSurfaceLayout();
2712 Trace.traceEnd(TRACE_TAG_ACTIVITY_MANAGER);
2713 }
2714 }
2715
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002716 private void removeStackInSurfaceTransaction(ActivityStack stack) {
Winson Chung010927a2016-12-15 16:12:35 -08002717 final ArrayList<TaskRecord> tasks = stack.getAllTasks();
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002718 if (stack.getWindowingMode() == WINDOWING_MODE_PINNED) {
Winson Chung47900652017-04-06 18:44:25 -07002719 /**
2720 * Workaround: Force-stop all the activities in the pinned stack before we reparent them
2721 * to the fullscreen stack. This is to guarantee that when we are removing a stack,
2722 * that the client receives onStop() before it is reparented. We do this by detaching
2723 * the stack from the display so that it will be considered invisible when
2724 * ensureActivitiesVisibleLocked() is called, and all of its activitys will be marked
2725 * invisible as well and added to the stopping list. After which we process the
2726 * stopping list by handling the idle.
2727 */
2728 final PinnedActivityStack pinnedStack = (PinnedActivityStack) stack;
2729 pinnedStack.mForceHidden = true;
2730 pinnedStack.ensureActivitiesVisibleLocked(null, 0, PRESERVE_WINDOWS);
2731 pinnedStack.mForceHidden = false;
2732 activityIdleInternalLocked(null, false /* fromTimeout */,
2733 true /* processPausingActivites */, null /* configuration */);
2734
2735 // Move all the tasks to the bottom of the fullscreen stack
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002736 moveTasksToFullscreenStackLocked(pinnedStack, !ON_TOP);
Winson Chung010927a2016-12-15 16:12:35 -08002737 } else {
2738 for (int i = tasks.size() - 1; i >= 0; i--) {
2739 removeTaskByIdLocked(tasks.get(i).taskId, true /* killProcess */,
2740 REMOVE_FROM_RECENTS);
2741 }
2742 }
2743 }
2744
2745 /**
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002746 * Removes the stack associated with the given {@param stack}. If the {@param stack} is the
Robert Carr6914f082017-03-20 19:04:30 -07002747 * pinned stack, then its tasks are not explicitly removed when the stack is destroyed, but
2748 * instead moved back onto the fullscreen stack.
2749 */
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07002750 void removeStack(ActivityStack stack) {
2751 mWindowManager.inSurfaceTransaction(() -> removeStackInSurfaceTransaction(stack));
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002752 }
2753
Wale Ogunwale68278562017-09-23 17:13:55 -07002754 /**
2755 * Removes stacks in the input windowing modes from the system if they are of activity type
2756 * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2757 */
2758 void removeStacksInWindowingModes(int... windowingModes) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002759 for (int i = mActivityDisplays.size() - 1; i >= 0; --i) {
Wale Ogunwale68278562017-09-23 17:13:55 -07002760 mActivityDisplays.valueAt(i).removeStacksInWindowingModes(windowingModes);
2761 }
2762 }
2763
2764 void removeStacksWithActivityTypes(int... activityTypes) {
2765 for (int i = mActivityDisplays.size() - 1; i >= 0; --i) {
2766 mActivityDisplays.valueAt(i).removeStacksWithActivityTypes(activityTypes);
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002767 }
Robert Carr6914f082017-03-20 19:04:30 -07002768 }
2769
2770 /**
Winson Chung6954fc92017-03-24 16:22:12 -07002771 * See {@link #removeTaskByIdLocked(int, boolean, boolean, boolean)}
2772 */
2773 boolean removeTaskByIdLocked(int taskId, boolean killProcess, boolean removeFromRecents) {
2774 return removeTaskByIdLocked(taskId, killProcess, removeFromRecents, !PAUSE_IMMEDIATELY);
2775 }
2776
2777 /**
Winson Chung010927a2016-12-15 16:12:35 -08002778 * Removes the task with the specified task id.
2779 *
2780 * @param taskId Identifier of the task to be removed.
2781 * @param killProcess Kill any process associated with the task if possible.
2782 * @param removeFromRecents Whether to also remove the task from recents.
Winson Chung6954fc92017-03-24 16:22:12 -07002783 * @param pauseImmediately Pauses all task activities immediately without waiting for the
2784 * pause-complete callback from the activity.
Winson Chung010927a2016-12-15 16:12:35 -08002785 * @return Returns true if the given task was found and removed.
2786 */
Winson Chung6954fc92017-03-24 16:22:12 -07002787 boolean removeTaskByIdLocked(int taskId, boolean killProcess, boolean removeFromRecents,
2788 boolean pauseImmediately) {
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002789 final TaskRecord tr = anyTaskForIdLocked(taskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS);
Winson Chung010927a2016-12-15 16:12:35 -08002790 if (tr != null) {
Winson Chung6954fc92017-03-24 16:22:12 -07002791 tr.removeTaskActivitiesLocked(pauseImmediately);
Winson Chung010927a2016-12-15 16:12:35 -08002792 cleanUpRemovedTaskLocked(tr, killProcess, removeFromRecents);
Charles Heff9b4dff2017-09-22 10:18:37 +01002793 mService.mLockTaskController.clearLockedTask(tr);
Winson Chung010927a2016-12-15 16:12:35 -08002794 if (tr.isPersistable) {
2795 mService.notifyTaskPersisterLocked(null, true);
2796 }
2797 return true;
2798 }
2799 Slog.w(TAG, "Request to remove task ignored for non-existent task " + taskId);
2800 return false;
2801 }
2802
2803 void cleanUpRemovedTaskLocked(TaskRecord tr, boolean killProcess, boolean removeFromRecents) {
2804 if (removeFromRecents) {
Winson Chung1dbc8112017-09-28 18:05:31 -07002805 mRecentTasks.remove(tr);
Winson Chung010927a2016-12-15 16:12:35 -08002806 }
2807 ComponentName component = tr.getBaseIntent().getComponent();
2808 if (component == null) {
2809 Slog.w(TAG, "No component for base intent of task: " + tr);
2810 return;
2811 }
2812
2813 // Find any running services associated with this app and stop if needed.
2814 mService.mServices.cleanUpRemovedTaskLocked(tr, component, new Intent(tr.getBaseIntent()));
2815
2816 if (!killProcess) {
2817 return;
2818 }
2819
2820 // Determine if the process(es) for this task should be killed.
2821 final String pkg = component.getPackageName();
2822 ArrayList<ProcessRecord> procsToKill = new ArrayList<>();
2823 ArrayMap<String, SparseArray<ProcessRecord>> pmap = mService.mProcessNames.getMap();
2824 for (int i = 0; i < pmap.size(); i++) {
2825
2826 SparseArray<ProcessRecord> uids = pmap.valueAt(i);
2827 for (int j = 0; j < uids.size(); j++) {
2828 ProcessRecord proc = uids.valueAt(j);
2829 if (proc.userId != tr.userId) {
2830 // Don't kill process for a different user.
2831 continue;
2832 }
2833 if (proc == mService.mHomeProcess) {
2834 // Don't kill the home process along with tasks from the same package.
2835 continue;
2836 }
2837 if (!proc.pkgList.containsKey(pkg)) {
2838 // Don't kill process that is not associated with this task.
2839 continue;
2840 }
2841
2842 for (int k = 0; k < proc.activities.size(); k++) {
Bryce Leeaf691c02017-03-20 14:20:22 -07002843 TaskRecord otherTask = proc.activities.get(k).getTask();
Winson Chung010927a2016-12-15 16:12:35 -08002844 if (tr.taskId != otherTask.taskId && otherTask.inRecents) {
2845 // Don't kill process(es) that has an activity in a different task that is
2846 // also in recents.
2847 return;
2848 }
2849 }
2850
2851 if (proc.foregroundServices) {
2852 // Don't kill process(es) with foreground service.
2853 return;
2854 }
2855
2856 // Add process to kill list.
2857 procsToKill.add(proc);
2858 }
2859 }
2860
2861 // Kill the running processes.
2862 for (int i = 0; i < procsToKill.size(); i++) {
2863 ProcessRecord pr = procsToKill.get(i);
2864 if (pr.setSchedGroup == ProcessList.SCHED_GROUP_BACKGROUND
2865 && pr.curReceivers.isEmpty()) {
2866 pr.kill("remove task", true);
2867 } else {
2868 // We delay killing processes that are not in the background or running a receiver.
2869 pr.waitingToKill = "remove task";
2870 }
2871 }
2872 }
2873
Craig Mautner4a1cb222013-12-04 16:14:06 -08002874 int getNextStackId() {
Craig Mautner858d8a62013-04-23 17:08:34 -07002875 while (true) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002876 if (getStack(mNextFreeStackId) == null) {
Craig Mautner858d8a62013-04-23 17:08:34 -07002877 break;
2878 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002879 mNextFreeStackId++;
Craig Mautner8d341ef2013-03-26 09:03:27 -07002880 }
Wale Ogunwaleddc1cb22015-07-25 19:23:04 -07002881 return mNextFreeStackId;
Craig Mautner8d341ef2013-03-26 09:03:27 -07002882 }
2883
Chong Zhang5dcb2752015-08-18 13:50:26 -07002884 /**
Winson Chung1dbc8112017-09-28 18:05:31 -07002885 * Called to restore the state of the task into the stack that it's supposed to go into.
2886 *
Chong Zhang5dcb2752015-08-18 13:50:26 -07002887 * @param task The recent task to be restored.
Wale Ogunwale0568aed2017-09-08 13:29:37 -07002888 * @param aOptions The activity options to use for restoration.
Wale Ogunwaleab5de372017-10-18 06:46:31 -07002889 * @param onTop If the stack for the task should be the topmost on the display.
Chong Zhang5dcb2752015-08-18 13:50:26 -07002890 * @return true if the task has been restored successfully.
2891 */
Wale Ogunwaleab5de372017-10-18 06:46:31 -07002892 boolean restoreRecentTaskLocked(TaskRecord task, ActivityOptions aOptions, boolean onTop) {
2893 final ActivityStack stack = getLaunchStack(null, aOptions, task, onTop);
Andrii Kulian02b7a832016-10-06 23:11:56 -07002894 final ActivityStack currentStack = task.getStack();
2895 if (currentStack != null) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07002896 // Task has already been restored once. See if we need to do anything more
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002897 if (currentStack == stack) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07002898 // Nothing else to do since it is already restored in the right stack.
2899 return true;
2900 }
2901 // Remove current stack association, so we can re-associate the task with the
2902 // right stack below.
Andrii Kulian02b7a832016-10-06 23:11:56 -07002903 currentStack.removeTask(task, "restoreRecentTaskLocked", REMOVE_TASK_MODE_MOVING);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002904 }
2905
Wale Ogunwaleab5de372017-10-18 06:46:31 -07002906 stack.addTask(task, onTop, "restoreRecentTask");
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08002907 // TODO: move call for creation here and other place into Stack.addTask()
Wale Ogunwaleab5de372017-10-18 06:46:31 -07002908 task.createWindowContainer(onTop, true /* showForAllUsers */);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002909 if (DEBUG_RECENTS) Slog.v(TAG_RECENTS,
2910 "Added restored task=" + task + " to stack=" + stack);
Wale Ogunwale7de05352014-12-12 15:21:33 -08002911 final ArrayList<ActivityRecord> activities = task.mActivities;
2912 for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08002913 activities.get(activityNdx).createWindowContainer();
Wale Ogunwale7de05352014-12-12 15:21:33 -08002914 }
2915 return true;
Craig Mautneref73ee12014-04-23 11:45:37 -07002916 }
2917
Winson Chung1dbc8112017-09-28 18:05:31 -07002918 @Override
2919 public void onRecentTaskAdded(TaskRecord task) {
2920 task.touchActiveTime();
2921 }
2922
2923 @Override
Winson Chungd6aa3db2017-10-05 17:18:43 -07002924 public void onRecentTaskRemoved(TaskRecord task, boolean wasTrimmed) {
Winson Chung14cfbb42017-10-20 13:54:39 -07002925 // TODO: Trim active task once b/68045330 is fixed
Winson Chung1dbc8112017-09-28 18:05:31 -07002926 task.removedFromRecents();
2927 }
2928
Wale Ogunwale040b4702015-08-06 18:10:50 -07002929 /**
Andrii Kulian839def92016-11-02 10:58:58 -07002930 * Move stack with all its existing content to specified display.
2931 * @param stackId Id of stack to move.
2932 * @param displayId Id of display to move stack to.
Andrii Kulian250d6532017-02-08 23:30:45 -08002933 * @param onTop Indicates whether container should be place on top or on bottom.
Andrii Kulian839def92016-11-02 10:58:58 -07002934 */
Andrii Kulian250d6532017-02-08 23:30:45 -08002935 void moveStackToDisplayLocked(int stackId, int displayId, boolean onTop) {
Andrii Kulian62e6f252017-05-30 22:46:53 -07002936 final ActivityDisplay activityDisplay = getActivityDisplayOrCreateLocked(displayId);
Andrii Kulian839def92016-11-02 10:58:58 -07002937 if (activityDisplay == null) {
2938 throw new IllegalArgumentException("moveStackToDisplayLocked: Unknown displayId="
2939 + displayId);
2940 }
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07002941 final ActivityStack stack = getStack(stackId);
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07002942 if (stack == null) {
Andrii Kulian839def92016-11-02 10:58:58 -07002943 throw new IllegalArgumentException("moveStackToDisplayLocked: Unknown stackId="
2944 + stackId);
2945 }
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07002946
2947 final ActivityDisplay currentDisplay = stack.getDisplay();
2948 if (currentDisplay == null) {
2949 throw new IllegalStateException("moveStackToDisplayLocked: Stack with stack=" + stack
2950 + " is not attached to any display.");
2951 }
2952
2953 if (currentDisplay.mDisplayId == displayId) {
2954 throw new IllegalArgumentException("Trying to move stack=" + stack
2955 + " to its current displayId=" + displayId);
2956 }
2957
2958 stack.reparent(activityDisplay, onTop);
Andrii Kulian839def92016-11-02 10:58:58 -07002959 // TODO(multi-display): resize stacks properly if moved from split-screen.
2960 }
2961
2962 /**
Winson Chung74666102017-02-22 17:49:24 -08002963 * Returns the reparent target stack, creating the stack if necessary. This call also enforces
2964 * the various checks on tasks that are going to be reparented from one stack to another.
Wale Ogunwale040b4702015-08-06 18:10:50 -07002965 */
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002966 // TODO: Look into changing users to this method to ActivityDisplay.resolveWindowingMode()
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002967 ActivityStack getReparentTargetStack(TaskRecord task, ActivityStack stack, boolean toTop) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002968 final ActivityStack prevStack = task.getStack();
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002969 final int stackId = stack.mStackId;
2970 final boolean inMultiWindowMode = stack.inMultiWindowMode();
Chong Zhang02898352015-08-21 17:27:14 -07002971
Winson Chung74666102017-02-22 17:49:24 -08002972 // Check that we aren't reparenting to the same stack that the task is already in
2973 if (prevStack != null && prevStack.mStackId == stackId) {
2974 Slog.w(TAG, "Can not reparent to same stack, task=" + task
2975 + " already in stackId=" + stackId);
2976 return prevStack;
Wale Ogunwale513346d2016-01-27 10:55:01 -08002977 }
2978
Winson Chung74666102017-02-22 17:49:24 -08002979 // Ensure that we aren't trying to move into a multi-window stack without multi-window
2980 // support
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002981 if (inMultiWindowMode && !mService.mSupportsMultiWindow) {
Winson Chung74666102017-02-22 17:49:24 -08002982 throw new IllegalArgumentException("Device doesn't support multi-window, can not"
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002983 + " reparent task=" + task + " to stack=" + stack);
Winson Chungc2baac02017-01-11 13:34:47 -08002984 }
2985
Andrii Kulianeafd9db2017-04-05 22:01:35 -07002986 // Ensure that we're not moving a task to a dynamic stack if device doesn't support
2987 // multi-display.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002988 if (stack.mDisplayId != DEFAULT_DISPLAY && !mService.mSupportsMultiDisplay) {
Andrii Kulianeafd9db2017-04-05 22:01:35 -07002989 throw new IllegalArgumentException("Device doesn't support multi-display, can not"
2990 + " reparent task=" + task + " to stackId=" + stackId);
2991 }
2992
Wale Ogunwale30e441d2017-11-09 08:28:45 -08002993 // Ensure that we aren't trying to move into a freeform stack without freeform support
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002994 if (stack.getWindowingMode() == WINDOWING_MODE_FREEFORM
2995 && !mService.mSupportsFreeformWindowManagement) {
Winson Chung74666102017-02-22 17:49:24 -08002996 throw new IllegalArgumentException("Device doesn't support freeform, can not reparent"
2997 + " task=" + task);
Wale Ogunwale08559dc2016-02-23 12:20:08 -08002998 }
2999
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07003000 // Leave the task in its current stack or a fullscreen stack if it isn't resizeable and the
3001 // preferred stack is in multi-window mode.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003002 if (inMultiWindowMode && !task.isResizeable()) {
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07003003 Slog.w(TAG, "Can not move unresizeable task=" + task + " to multi-window stack=" + stack
3004 + " Moving to a fullscreen stack instead.");
3005 if (prevStack != null) {
3006 return prevStack;
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003007 }
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07003008 stack = stack.getDisplay().createStack(
3009 WINDOWING_MODE_FULLSCREEN, stack.getActivityType(), toTop);
Filip Gruszczynski49b80af2015-09-24 09:04:26 -07003010 }
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003011 return stack;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003012 }
3013
Winson Chung08f81892017-03-02 15:40:51 -08003014 boolean moveTopStackActivityToPinnedStackLocked(int stackId, Rect destBounds) {
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003015 final ActivityStack stack = getStack(stackId);
Wale Ogunwale079a0042015-10-24 11:44:07 -07003016 if (stack == null) {
3017 throw new IllegalArgumentException(
3018 "moveTopStackActivityToPinnedStackLocked: Unknown stackId=" + stackId);
3019 }
3020
3021 final ActivityRecord r = stack.topRunningActivityLocked();
3022 if (r == null) {
3023 Slog.w(TAG, "moveTopStackActivityToPinnedStackLocked: No top running activity"
3024 + " in stack=" + stack);
3025 return false;
3026 }
3027
Wale Ogunwale6cae7652015-12-26 07:36:26 -08003028 if (!mService.mForceResizableActivities && !r.supportsPictureInPicture()) {
Wale Ogunwaleb60692e2015-10-24 12:35:56 -07003029 Slog.w(TAG,
3030 "moveTopStackActivityToPinnedStackLocked: Picture-In-Picture not supported for "
Filip Gruszczynski77d94482015-12-11 13:59:52 -08003031 + " r=" + r);
Wale Ogunwale079a0042015-10-24 11:44:07 -07003032 return false;
3033 }
3034
Winson Chung3a682872017-04-10 14:38:05 -07003035 moveActivityToPinnedStackLocked(r, null /* sourceBounds */, 0f /* aspectRatio */,
Wale Ogunwale66e16852017-10-19 13:35:52 -07003036 "moveTopActivityToPinnedStack");
Wale Ogunwale9c604c72015-12-06 18:42:57 -08003037 return true;
3038 }
3039
Winson Chung8bca9e42017-04-16 15:59:43 -07003040 void moveActivityToPinnedStackLocked(ActivityRecord r, Rect sourceHintBounds, float aspectRatio,
Wale Ogunwale66e16852017-10-19 13:35:52 -07003041 String reason) {
Winson Chung08f81892017-03-02 15:40:51 -08003042
Wale Ogunwale480dca02016-02-06 13:58:29 -08003043 mWindowManager.deferSurfaceLayout();
Winson Chung74666102017-02-22 17:49:24 -08003044
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003045 final ActivityDisplay display = r.getStack().getDisplay();
3046 PinnedActivityStack stack = display.getPinnedStack();
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07003047
Bryce Lee04ab3462017-04-10 15:06:33 -07003048 // This will clear the pinned stack by moving an existing task to the full screen stack,
3049 // ensuring only one task is present.
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07003050 if (stack != null) {
3051 moveTasksToFullscreenStackLocked(stack, !ON_TOP);
3052 }
Bryce Lee04ab3462017-04-10 15:06:33 -07003053
Wale Ogunwale1666e312016-12-16 11:27:18 -08003054 // Need to make sure the pinned stack exist so we can resize it below...
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003055 stack = display.getOrCreateStack(WINDOWING_MODE_PINNED, r.getActivityType(), ON_TOP);
Wale Ogunwale1666e312016-12-16 11:27:18 -08003056
Wale Ogunwale480dca02016-02-06 13:58:29 -08003057 try {
Bryce Leeaf691c02017-03-20 14:20:22 -07003058 final TaskRecord task = r.getTask();
Wale Ogunwale480dca02016-02-06 13:58:29 -08003059 // Resize the pinned stack to match the current size of the task the activity we are
3060 // going to be moving is currently contained in. We do this to have the right starting
3061 // animation bounds for the pinned stack to the desired bounds the caller wants.
Bryce Leef3c6a472017-11-14 14:53:06 -08003062 resizeStackLocked(stack, task.getOverrideBounds(), null /* tempTaskBounds */,
Wale Ogunwale480dca02016-02-06 13:58:29 -08003063 null /* tempTaskInsetBounds */, !PRESERVE_WINDOWS,
Wale Ogunwalec8da41e2016-04-16 13:27:23 -07003064 true /* allowResizeInDockedMode */, !DEFER_RESUME);
Wale Ogunwale480dca02016-02-06 13:58:29 -08003065
3066 if (task.mActivities.size() == 1) {
Winson Chung5af42fc2017-03-24 17:11:33 -07003067 // Defer resume until below, and do not schedule PiP changes until we animate below
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003068 task.reparent(stack, ON_TOP, REPARENT_MOVE_STACK_TO_FRONT, !ANIMATE, DEFER_RESUME,
3069 false /* schedulePictureInPictureModeChange */, reason);
Wale Ogunwale480dca02016-02-06 13:58:29 -08003070 } else {
Winson Chungb5c41b72016-12-07 15:00:47 -08003071 // There are multiple activities in the task and moving the top activity should
Winson Chung74666102017-02-22 17:49:24 -08003072 // reveal/leave the other activities in their original task.
3073
3074 // Currently, we don't support reparenting activities across tasks in two different
3075 // stacks, so instead, just create a new task in the same stack, reparent the
3076 // activity into that task, and then reparent the whole task to the new stack. This
3077 // ensures that all the necessary work to migrate states in the old and new stacks
3078 // is also done.
3079 final TaskRecord newTask = task.getStack().createTaskRecord(
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07003080 getNextTaskIdForUserLocked(r.userId), r.info, r.intent, null, null, true);
Winson Chung74666102017-02-22 17:49:24 -08003081 r.reparent(newTask, MAX_VALUE, "moveActivityToStack");
3082
Winson Chung5af42fc2017-03-24 17:11:33 -07003083 // Defer resume until below, and do not schedule PiP changes until we animate below
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003084 newTask.reparent(stack, ON_TOP, REPARENT_MOVE_STACK_TO_FRONT, !ANIMATE,
Winson Chung5af42fc2017-03-24 17:11:33 -07003085 DEFER_RESUME, false /* schedulePictureInPictureModeChange */, reason);
Wale Ogunwale480dca02016-02-06 13:58:29 -08003086 }
Winson Chungc2baac02017-01-11 13:34:47 -08003087
3088 // Reset the state that indicates it can enter PiP while pausing after we've moved it
3089 // to the pinned stack
Winson Chungf7e03e12017-08-22 11:32:16 -07003090 r.supportsEnterPipOnTaskSwitch = false;
Wale Ogunwale480dca02016-02-06 13:58:29 -08003091 } finally {
3092 mWindowManager.continueSurfaceLayout();
Wale Ogunwale079a0042015-10-24 11:44:07 -07003093 }
3094
Winson Chunge7ba6862017-05-24 12:13:33 -07003095 // Calculate the default bounds (don't use existing stack bounds as we may have just created
3096 // the stack, and schedule the start of the animation into PiP (the bounds animator that
3097 // is triggered by this is posted on another thread)
Winson Chunga71febe2017-05-22 11:14:22 -07003098 final Rect destBounds = stack.getDefaultPictureInPictureBounds(aspectRatio);
3099
Winson Chunge7ba6862017-05-24 12:13:33 -07003100 stack.animateResizePinnedStack(sourceHintBounds, destBounds, -1 /* animationDuration */,
3101 true /* fromFullscreen */);
3102
3103 // Update the visibility of all activities after the they have been reparented to the new
3104 // stack. This MUST run after the animation above is scheduled to ensure that the windows
3105 // drawn signal is scheduled after the bounds animation start call on the bounds animator
3106 // thread.
Wale Ogunwale079a0042015-10-24 11:44:07 -07003107 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Wale Ogunwaled046a012015-12-24 13:05:59 -08003108 resumeFocusedStackTopActivityLocked();
Wale Ogunwale03ce8632015-12-29 16:15:22 -08003109
Wale Ogunwale89be5762017-10-04 13:27:49 -07003110 mService.mTaskChangeNotificationController.notifyActivityPinned(r);
Wale Ogunwale079a0042015-10-24 11:44:07 -07003111 }
3112
Andrii Kulian0864bbb2017-02-16 15:45:58 -08003113 /** Move activity with its stack to front and make the stack focused. */
Chong Zhang6cda19c2016-06-14 19:07:56 -07003114 boolean moveFocusableActivityStackToFrontLocked(ActivityRecord r, String reason) {
3115 if (r == null || !r.isFocusable()) {
3116 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS,
3117 "moveActivityStackToFront: unfocusable r=" + r);
3118 return false;
3119 }
3120
Bryce Leeaf691c02017-03-20 14:20:22 -07003121 final TaskRecord task = r.getTask();
Andrii Kulian02b7a832016-10-06 23:11:56 -07003122 final ActivityStack stack = r.getStack();
3123 if (stack == null) {
Chong Zhang6cda19c2016-06-14 19:07:56 -07003124 Slog.w(TAG, "moveActivityStackToFront: invalid task or stack: r="
3125 + r + " task=" + task);
3126 return false;
3127 }
3128
Chong Zhang6cda19c2016-06-14 19:07:56 -07003129 if (stack == mFocusedStack && stack.topRunningActivityLocked() == r) {
3130 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS,
3131 "moveActivityStackToFront: already on top, r=" + r);
3132 return false;
3133 }
3134
3135 if (DEBUG_FOCUS) Slog.d(TAG_FOCUS,
3136 "moveActivityStackToFront: r=" + r);
3137
3138 stack.moveToFront(reason, task);
3139 return true;
3140 }
3141
David Stevensc6b91c62017-02-08 14:23:58 -08003142 ActivityRecord findTaskLocked(ActivityRecord r, int displayId) {
Wale Ogunwale39381972015-12-17 17:15:29 -08003143 mTmpFindTaskResult.r = null;
3144 mTmpFindTaskResult.matchedByRootAffinity = false;
David Stevensc6b91c62017-02-08 14:23:58 -08003145 ActivityRecord affinityMatch = null;
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003146 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + r);
Craig Mautnere0a38842013-12-16 16:14:02 -08003147 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003148 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3149 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3150 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07003151 if (!r.hasCompatibleActivityType(stack)) {
Winson Chung91e5c882017-04-21 14:44:38 -07003152 if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping stack: (mismatch activity/stack) "
3153 + stack);
Craig Mautner1b4bf852014-05-26 15:06:32 -07003154 continue;
3155 }
Wale Ogunwale39381972015-12-17 17:15:29 -08003156 stack.findTaskLocked(r, mTmpFindTaskResult);
David Stevensc6b91c62017-02-08 14:23:58 -08003157 // It is possible to have tasks in multiple stacks with the same root affinity, so
3158 // we should keep looking after finding an affinity match to see if there is a
3159 // better match in another stack. Also, task affinity isn't a good enough reason
3160 // to target a display which isn't the source of the intent, so skip any affinity
3161 // matches not on the specified display.
3162 if (mTmpFindTaskResult.r != null) {
3163 if (!mTmpFindTaskResult.matchedByRootAffinity) {
3164 return mTmpFindTaskResult.r;
3165 } else if (mTmpFindTaskResult.r.getDisplayId() == displayId) {
Winson Chung5b895b72017-05-01 13:46:25 -07003166 // Note: since the traversing through the stacks is top down, the floating
3167 // tasks should always have lower priority than any affinity-matching tasks
3168 // in the fullscreen stacks
David Stevensc6b91c62017-02-08 14:23:58 -08003169 affinityMatch = mTmpFindTaskResult.r;
David Stevense5a7b642017-05-22 13:18:23 -07003170 } else if (DEBUG_TASKS && mTmpFindTaskResult.matchedByRootAffinity) {
3171 Slog.d(TAG_TASKS, "Skipping match on different display "
3172 + mTmpFindTaskResult.r.getDisplayId() + " " + displayId);
David Stevensc6b91c62017-02-08 14:23:58 -08003173 }
Craig Mautner4a1cb222013-12-04 16:14:06 -08003174 }
Craig Mautner8849a5e2013-04-02 16:41:03 -07003175 }
3176 }
Winson Chung5b895b72017-05-01 13:46:25 -07003177
David Stevensc6b91c62017-02-08 14:23:58 -08003178 if (DEBUG_TASKS && affinityMatch == null) Slog.d(TAG_TASKS, "No task found");
3179 return affinityMatch;
Craig Mautner8849a5e2013-04-02 16:41:03 -07003180 }
3181
Andrii Kuliand3bbb132016-06-16 16:00:20 -07003182 ActivityRecord findActivityLocked(Intent intent, ActivityInfo info,
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003183 boolean compareIntentFilters) {
Craig Mautnere0a38842013-12-16 16:14:02 -08003184 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003185 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3186 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3187 final ActivityStack stack = display.getChildAt(stackNdx);
3188 final ActivityRecord ar = stack.findActivityLocked(
3189 intent, info, compareIntentFilters);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003190 if (ar != null) {
3191 return ar;
3192 }
Craig Mautner8849a5e2013-04-02 16:41:03 -07003193 }
3194 }
3195 return null;
3196 }
3197
David Stevens9440dc82017-03-16 19:00:20 -07003198 boolean hasAwakeDisplay() {
3199 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
3200 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3201 if (!display.shouldSleep()) {
3202 return true;
3203 }
3204 }
3205 return false;
3206 }
3207
Craig Mautner8d341ef2013-03-26 09:03:27 -07003208 void goingToSleepLocked() {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003209 scheduleSleepTimeout();
3210 if (!mGoingToSleep.isHeld()) {
3211 mGoingToSleep.acquire();
Craig Mautner7ea5bd42013-07-05 15:27:08 -07003212 if (mLaunchingActivity.isHeld()) {
3213 if (VALIDATE_WAKE_LOCK_CALLER && Binder.getCallingUid() != Process.myUid()) {
3214 throw new IllegalStateException("Calling must be system uid");
Craig Mautner0eea92c2013-05-16 13:35:39 -07003215 }
Craig Mautner7ea5bd42013-07-05 15:27:08 -07003216 mLaunchingActivity.release();
3217 mService.mHandler.removeMessages(LAUNCH_TIMEOUT_MSG);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003218 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003219 }
David Stevens9440dc82017-03-16 19:00:20 -07003220
3221 applySleepTokensLocked(false /* applyToStacks */);
3222
3223 checkReadyForSleepLocked(true /* allowDelay */);
3224 }
3225
3226 void prepareForShutdownLocked() {
3227 for (int i = 0; i < mActivityDisplays.size(); i++) {
3228 createSleepTokenLocked("shutdown", mActivityDisplays.keyAt(i));
3229 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003230 }
3231
3232 boolean shutdownLocked(int timeout) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003233 goingToSleepLocked();
Craig Mautner0eea92c2013-05-16 13:35:39 -07003234
Craig Mautnerf4c909b2014-04-17 18:39:38 -07003235 boolean timedout = false;
Craig Mautner0eea92c2013-05-16 13:35:39 -07003236 final long endTime = System.currentTimeMillis() + timeout;
3237 while (true) {
David Stevens18abd0e2017-08-17 14:55:47 -07003238 if (!putStacksToSleepLocked(true /* allowDelay */, true /* shuttingDown */)) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003239 long timeRemaining = endTime - System.currentTimeMillis();
3240 if (timeRemaining > 0) {
Craig Mautner8d341ef2013-03-26 09:03:27 -07003241 try {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003242 mService.wait(timeRemaining);
Craig Mautner8d341ef2013-03-26 09:03:27 -07003243 } catch (InterruptedException e) {
3244 }
Craig Mautner0eea92c2013-05-16 13:35:39 -07003245 } else {
3246 Slog.w(TAG, "Activity manager shutdown timed out");
3247 timedout = true;
3248 break;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003249 }
Craig Mautner0eea92c2013-05-16 13:35:39 -07003250 } else {
3251 break;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003252 }
3253 }
Craig Mautner0eea92c2013-05-16 13:35:39 -07003254
3255 // Force checkReadyForSleep to complete.
David Stevens9440dc82017-03-16 19:00:20 -07003256 checkReadyForSleepLocked(false /* allowDelay */);
Craig Mautner0eea92c2013-05-16 13:35:39 -07003257
Craig Mautner8d341ef2013-03-26 09:03:27 -07003258 return timedout;
3259 }
3260
3261 void comeOutOfSleepIfNeededLocked() {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003262 removeSleepTimeouts();
3263 if (mGoingToSleep.isHeld()) {
3264 mGoingToSleep.release();
3265 }
David Stevens9440dc82017-03-16 19:00:20 -07003266 }
3267
3268 void applySleepTokensLocked(boolean applyToStacks) {
Craig Mautnere0a38842013-12-16 16:14:02 -08003269 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
David Stevens9440dc82017-03-16 19:00:20 -07003270 // Set the sleeping state of the display.
3271 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3272 final boolean displayShouldSleep = display.shouldSleep();
3273 if (displayShouldSleep == display.isSleeping()) {
3274 continue;
3275 }
3276 display.setIsSleeping(displayShouldSleep);
3277
3278 if (!applyToStacks) {
3279 continue;
3280 }
3281
3282 // Set the sleeping state of the stacks on the display.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003283 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3284 final ActivityStack stack = display.getChildAt(stackNdx);
David Stevens9440dc82017-03-16 19:00:20 -07003285 if (displayShouldSleep) {
3286 stack.goToSleepIfPossible(false /* shuttingDown */);
3287 } else {
3288 stack.awakeFromSleepingLocked();
3289 if (isFocusedStack(stack)) {
3290 resumeFocusedStackTopActivityLocked();
3291 }
3292 }
3293 }
3294
3295 if (displayShouldSleep || mGoingToSleepActivities.isEmpty()) {
3296 continue;
3297 }
3298 // The display is awake now, so clean up the going to sleep list.
3299 for (Iterator<ActivityRecord> it = mGoingToSleepActivities.iterator(); it.hasNext(); ) {
3300 final ActivityRecord r = it.next();
3301 if (r.getDisplayId() == display.mDisplayId) {
3302 it.remove();
Craig Mautner4a1cb222013-12-04 16:14:06 -08003303 }
Craig Mautner5314a402013-09-26 12:40:16 -07003304 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003305 }
Craig Mautner0eea92c2013-05-16 13:35:39 -07003306 }
3307
3308 void activitySleptLocked(ActivityRecord r) {
3309 mGoingToSleepActivities.remove(r);
David Stevens9440dc82017-03-16 19:00:20 -07003310 final ActivityStack s = r.getStack();
3311 if (s != null) {
3312 s.checkReadyForSleep();
3313 } else {
3314 checkReadyForSleepLocked(true);
3315 }
Craig Mautner0eea92c2013-05-16 13:35:39 -07003316 }
3317
David Stevens9440dc82017-03-16 19:00:20 -07003318 void checkReadyForSleepLocked(boolean allowDelay) {
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07003319 if (!mService.isSleepingOrShuttingDownLocked()) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003320 // Do not care.
3321 return;
3322 }
3323
David Stevens18abd0e2017-08-17 14:55:47 -07003324 if (!putStacksToSleepLocked(allowDelay, false /* shuttingDown */)) {
3325 return;
Craig Mautner0eea92c2013-05-16 13:35:39 -07003326 }
3327
Wei Wang65c7a152016-06-02 18:51:22 -07003328 // Send launch end powerhint before going sleep
3329 mService.mActivityStarter.sendPowerHintForLaunchEndIfNeeded();
3330
Craig Mautner0eea92c2013-05-16 13:35:39 -07003331 removeSleepTimeouts();
3332
3333 if (mGoingToSleep.isHeld()) {
3334 mGoingToSleep.release();
3335 }
3336 if (mService.mShuttingDown) {
3337 mService.notifyAll();
3338 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003339 }
3340
David Stevens18abd0e2017-08-17 14:55:47 -07003341 // Tries to put all activity stacks to sleep. Returns true if all stacks were
3342 // successfully put to sleep.
3343 private boolean putStacksToSleepLocked(boolean allowDelay, boolean shuttingDown) {
3344 boolean allSleep = true;
3345 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003346 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3347 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3348 final ActivityStack stack = display.getChildAt(stackNdx);
David Stevens18abd0e2017-08-17 14:55:47 -07003349 if (allowDelay) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003350 allSleep &= stack.goToSleepIfPossible(shuttingDown);
David Stevens18abd0e2017-08-17 14:55:47 -07003351 } else {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003352 stack.goToSleep();
David Stevens18abd0e2017-08-17 14:55:47 -07003353 }
3354 }
3355 }
3356 return allSleep;
3357 }
3358
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003359 boolean reportResumedActivityLocked(ActivityRecord r) {
Bryce Lee29a649d2017-08-18 13:52:31 -07003360 // A resumed activity cannot be stopping. remove from list
3361 mStoppingActivities.remove(r);
3362
Andrii Kulian02b7a832016-10-06 23:11:56 -07003363 final ActivityStack stack = r.getStack();
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07003364 if (isFocusedStack(stack)) {
Jeff Sharkey5782da72013-04-25 14:32:30 -07003365 mService.updateUsageStats(r, true);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003366 }
3367 if (allResumedActivitiesComplete()) {
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07003368 ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003369 mWindowManager.executeAppTransition();
3370 return true;
3371 }
3372 return false;
3373 }
3374
Craig Mautner8d341ef2013-03-26 09:03:27 -07003375 void handleAppCrashLocked(ProcessRecord app) {
Craig Mautnere0a38842013-12-16 16:14:02 -08003376 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003377 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3378 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3379 final ActivityStack stack = display.getChildAt(stackNdx);
3380 stack.handleAppCrashLocked(app);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003381 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003382 }
3383 }
3384
Craig Mautnerbb742462014-07-07 15:28:55 -07003385 // Called when WindowManager has finished animating the launchingBehind activity to the back.
Andrii Kulian21713ac2016-10-12 22:05:05 -07003386 private void handleLaunchTaskBehindCompleteLocked(ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003387 final TaskRecord task = r.getTask();
Andrii Kulian02b7a832016-10-06 23:11:56 -07003388 final ActivityStack stack = task.getStack();
Winson730bf062016-03-31 18:04:56 -07003389
3390 r.mLaunchTaskBehind = false;
Winson Chung1dbc8112017-09-28 18:05:31 -07003391 mRecentTasks.add(task);
Yorke Leebd54c2a2016-10-25 13:49:23 -07003392 mService.mTaskChangeNotificationController.notifyTaskStackChanged();
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08003393 r.setVisibility(false);
Winson730bf062016-03-31 18:04:56 -07003394
3395 // When launching tasks behind, update the last active time of the top task after the new
3396 // task has been shown briefly
Wale Ogunwale30e441d2017-11-09 08:28:45 -08003397 final ActivityRecord top = stack.getTopActivity();
Winson730bf062016-03-31 18:04:56 -07003398 if (top != null) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003399 top.getTask().touchActiveTime();
Winson730bf062016-03-31 18:04:56 -07003400 }
Craig Mautnerbb742462014-07-07 15:28:55 -07003401 }
3402
3403 void scheduleLaunchTaskBehindComplete(IBinder token) {
3404 mHandler.obtainMessage(LAUNCH_TASK_BEHIND_COMPLETE, token).sendToTarget();
3405 }
3406
Filip Gruszczynskibc5a6c52015-09-22 13:13:24 -07003407 void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
3408 boolean preserveWindows) {
Jorim Jaggife762342016-10-13 14:33:27 +02003409 mKeyguardController.beginActivityVisibilityUpdate();
3410 try {
3411 // First the front stacks. In case any are not fullscreen and are in front of home.
3412 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003413 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3414 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3415 final ActivityStack stack = display.getChildAt(stackNdx);
Jorim Jaggife762342016-10-13 14:33:27 +02003416 stack.ensureActivitiesVisibleLocked(starting, configChanges, preserveWindows);
3417 }
Craig Mautner580ea812013-04-25 12:58:38 -07003418 }
Jorim Jaggife762342016-10-13 14:33:27 +02003419 } finally {
3420 mKeyguardController.endActivityVisibilityUpdate();
Craig Mautner8d341ef2013-03-26 09:03:27 -07003421 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003422 }
3423
Jorim Jaggi8b702ed2017-01-20 16:59:03 +01003424 void addStartingWindowsForVisibleActivities(boolean taskSwitch) {
3425 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003426 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3427 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3428 final ActivityStack stack = display.getChildAt(stackNdx);
Jorim Jaggi8b702ed2017-01-20 16:59:03 +01003429 stack.addStartingWindowsForVisibleActivities(taskSwitch);
3430 }
3431 }
3432 }
3433
Chong Zhangfdcc4d42015-10-14 16:50:12 -07003434 void invalidateTaskLayers() {
3435 mTaskLayersChanged = true;
3436 }
3437
3438 void rankTaskLayersIfNeeded() {
3439 if (!mTaskLayersChanged) {
3440 return;
3441 }
3442 mTaskLayersChanged = false;
3443 for (int displayNdx = 0; displayNdx < mActivityDisplays.size(); displayNdx++) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003444 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
Chong Zhangfdcc4d42015-10-14 16:50:12 -07003445 int baseLayer = 0;
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003446 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3447 final ActivityStack stack = display.getChildAt(stackNdx);
3448 baseLayer += stack.rankTaskLayers(baseLayer);
Chong Zhangfdcc4d42015-10-14 16:50:12 -07003449 }
3450 }
3451 }
3452
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003453 void clearOtherAppTimeTrackers(AppTimeTracker except) {
3454 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003455 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3456 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3457 final ActivityStack stack = display.getChildAt(stackNdx);
Dianne Hackbornb5a380d2015-05-20 18:18:46 -07003458 stack.clearOtherAppTimeTrackers(except);
3459 }
3460 }
3461 }
3462
Craig Mautner8d341ef2013-03-26 09:03:27 -07003463 void scheduleDestroyAllActivities(ProcessRecord app, String reason) {
Craig Mautnere0a38842013-12-16 16:14:02 -08003464 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003465 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3466 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3467 final ActivityStack stack = display.getChildAt(stackNdx);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003468 stack.scheduleDestroyActivities(app, reason);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003469 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003470 }
3471 }
3472
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003473 void releaseSomeActivitiesLocked(ProcessRecord app, String reason) {
3474 // Examine all activities currently running in the process.
3475 TaskRecord firstTask = null;
3476 // Tasks is non-null only if two or more tasks are found.
3477 ArraySet<TaskRecord> tasks = null;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003478 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
3479 for (int i = 0; i < app.activities.size(); i++) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003480 ActivityRecord r = app.activities.get(i);
3481 // First, if we find an activity that is in the process of being destroyed,
3482 // then we just aren't going to do anything for now; we want things to settle
3483 // down before we try to prune more activities.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003484 if (r.finishing || r.state == DESTROYING || r.state == DESTROYED) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003485 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Abort release; already destroying: " + r);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003486 return;
3487 }
3488 // Don't consider any activies that are currently not in a state where they
3489 // can be destroyed.
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003490 if (r.visible || !r.stopped || !r.haveState || r.state == RESUMED || r.state == PAUSING
3491 || r.state == PAUSED || r.state == STOPPING) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003492 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Not releasing in-use activity: " + r);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003493 continue;
3494 }
Bryce Leeaf691c02017-03-20 14:20:22 -07003495
3496 final TaskRecord task = r.getTask();
3497 if (task != null) {
3498 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Collecting release task " + task
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003499 + " from " + r);
3500 if (firstTask == null) {
Bryce Leeaf691c02017-03-20 14:20:22 -07003501 firstTask = task;
3502 } else if (firstTask != task) {
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003503 if (tasks == null) {
3504 tasks = new ArraySet<>();
3505 tasks.add(firstTask);
3506 }
Bryce Leeaf691c02017-03-20 14:20:22 -07003507 tasks.add(task);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003508 }
3509 }
3510 }
3511 if (tasks == null) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003512 if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Didn't find two or more tasks to release");
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003513 return;
3514 }
3515 // If we have activities in multiple tasks that are in a position to be destroyed,
3516 // let's iterate through the tasks and release the oldest one.
3517 final int numDisplays = mActivityDisplays.size();
3518 for (int displayNdx = 0; displayNdx < numDisplays; ++displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003519 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3520 final int stackCount = display.getChildCount();
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003521 // Step through all stacks starting from behind, to hit the oldest things first.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003522 for (int stackNdx = 0; stackNdx < stackCount; stackNdx++) {
3523 final ActivityStack stack = display.getChildAt(stackNdx);
Dianne Hackborn89ad4562014-08-24 16:45:38 -07003524 // Try to release activities in this stack; if we manage to, we are done.
3525 if (stack.releaseSomeActivitiesLocked(app, tasks, reason) > 0) {
3526 return;
3527 }
3528 }
3529 }
3530 }
3531
Amith Yamasani37a40c22015-06-17 13:25:42 -07003532 boolean switchUserLocked(int userId, UserState uss) {
Wale Ogunwale9a98c522016-04-27 09:23:55 -07003533 final int focusStackId = mFocusedStack.getStackId();
3534 // We dismiss the docked stack whenever we switch users.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003535 final ActivityStack dockedStack = getDefaultDisplay().getSplitScreenPrimaryStack();
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07003536 if (dockedStack != null) {
3537 moveTasksToFullscreenStackLocked(dockedStack, mFocusedStack == dockedStack);
3538 }
Winson Chungc2b23a52017-01-09 15:44:55 -08003539 // Also dismiss the pinned stack whenever we switch users. Removing the pinned stack will
3540 // also cause all tasks to be moved to the fullscreen stack at a position that is
3541 // appropriate.
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003542 removeStacksInWindowingModes(WINDOWING_MODE_PINNED);
Wale Ogunwale9a98c522016-04-27 09:23:55 -07003543
3544 mUserStackInFront.put(mCurrentUser, focusStackId);
Wale Ogunwale68278562017-09-23 17:13:55 -07003545 final int restoreStackId = mUserStackInFront.get(userId, mHomeStack.mStackId);
Craig Mautner2420ead2013-04-01 17:13:20 -07003546 mCurrentUser = userId;
Craig Mautnerac6f8432013-07-17 13:24:59 -07003547
Craig Mautner858d8a62013-04-23 17:08:34 -07003548 mStartingUsers.add(uss);
Craig Mautnere0a38842013-12-16 16:14:02 -08003549 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003550 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3551 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3552 final ActivityStack stack = display.getChildAt(stackNdx);
Craig Mautnere0a38842013-12-16 16:14:02 -08003553 stack.switchUserLocked(userId);
Alexandra Gherghinadae57a12014-03-12 19:15:26 +00003554 TaskRecord task = stack.topTask();
3555 if (task != null) {
Wale Ogunwale1666e312016-12-16 11:27:18 -08003556 stack.positionChildWindowContainerAtTop(task);
Alexandra Gherghinadae57a12014-03-12 19:15:26 +00003557 }
Craig Mautner4a1cb222013-12-04 16:14:06 -08003558 }
Craig Mautnerac6f8432013-07-17 13:24:59 -07003559 }
Craig Mautner858d8a62013-04-23 17:08:34 -07003560
Craig Mautner4f1df4f2013-10-15 15:44:14 -07003561 ActivityStack stack = getStack(restoreStackId);
3562 if (stack == null) {
3563 stack = mHomeStack;
3564 }
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07003565 final boolean homeInFront = stack.isActivityTypeHome();
Craig Mautnere0a38842013-12-16 16:14:02 -08003566 if (stack.isOnHomeDisplay()) {
Wale Ogunwale925d0d12015-09-23 15:40:07 -07003567 stack.moveToFront("switchUserOnHomeDisplay");
Craig Mautnere0a38842013-12-16 16:14:02 -08003568 } else {
3569 // Stack was moved to another display while user was swapped out.
Matthew Ngae1ff4f2016-11-10 15:49:14 -08003570 resumeHomeStackTask(null, "switchUserOnOtherDisplay");
Craig Mautnere0a38842013-12-16 16:14:02 -08003571 }
Craig Mautner93529a42013-10-04 15:03:13 -07003572 return homeInFront;
Craig Mautner2219a1b2013-03-25 09:44:30 -07003573 }
3574
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07003575 /** Checks whether the userid is a profile of the current user. */
3576 boolean isCurrentProfileLocked(int userId) {
3577 if (userId == mCurrentUser) return true;
Fyodor Kupolov1b3edac2017-09-19 15:48:06 -07003578 return mService.mUserController.isCurrentProfile(userId);
Wale Ogunwale0bd2aa72015-04-16 13:50:44 -07003579 }
3580
Bryce Leeb7c9b802017-05-02 14:20:24 -07003581 /**
3582 * Returns whether a stopping activity is present that should be stopped after visible, rather
3583 * than idle.
3584 * @return {@code true} if such activity is present. {@code false} otherwise.
3585 */
3586 boolean isStoppingNoHistoryActivity() {
3587 // Activities that are marked as nohistory should be stopped immediately after the resumed
3588 // activity has become visible.
3589 for (ActivityRecord record : mStoppingActivities) {
3590 if (record.isNoHistory()) {
3591 return true;
3592 }
3593 }
3594
3595 return false;
3596 }
3597
Winson Chung4dabf232017-01-25 13:25:22 -08003598 final ArrayList<ActivityRecord> processStoppingActivitiesLocked(ActivityRecord idleActivity,
3599 boolean remove, boolean processPausingActivities) {
Craig Mautnerde4ef022013-04-07 19:01:33 -07003600 ArrayList<ActivityRecord> stops = null;
3601
3602 final boolean nowVisible = allResumedActivitiesVisible();
Craig Mautner8c14c152015-01-15 17:32:07 -08003603 for (int activityNdx = mStoppingActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3604 ActivityRecord s = mStoppingActivities.get(activityNdx);
Bryce Lee4a194382017-04-04 14:32:48 -07003605 boolean waitingVisible = mActivitiesWaitingForVisibleActivity.contains(s);
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003606 if (DEBUG_STATES) Slog.v(TAG, "Stopping " + s + ": nowVisible=" + nowVisible
Craig Mautner8c14c152015-01-15 17:32:07 -08003607 + " waitingVisible=" + waitingVisible + " finishing=" + s.finishing);
3608 if (waitingVisible && nowVisible) {
Bryce Lee4a194382017-04-04 14:32:48 -07003609 mActivitiesWaitingForVisibleActivity.remove(s);
Andrii Kulianee056812016-09-21 15:34:45 -07003610 waitingVisible = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -07003611 if (s.finishing) {
3612 // If this activity is finishing, it is sitting on top of
3613 // everyone else but we now know it is no longer needed...
3614 // so get rid of it. Otherwise, we need to go through the
3615 // normal flow and hide it once we determine that it is
3616 // hidden by the activities in front of it.
Wale Ogunwalef81c1d12016-01-12 12:20:18 -08003617 if (DEBUG_STATES) Slog.v(TAG, "Before stopping, can hide: " + s);
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08003618 s.setVisibility(false);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003619 }
3620 }
David Stevens9440dc82017-03-16 19:00:20 -07003621 if (remove) {
3622 final ActivityStack stack = s.getStack();
3623 final boolean shouldSleepOrShutDown = stack != null
3624 ? stack.shouldSleepOrShutDownActivities()
3625 : mService.isSleepingOrShuttingDownLocked();
3626 if (!waitingVisible || shouldSleepOrShutDown) {
3627 if (!processPausingActivities && s.state == PAUSING) {
3628 // Defer processing pausing activities in this iteration and reschedule
3629 // a delayed idle to reprocess it again
3630 removeTimeoutsForActivityLocked(idleActivity);
3631 scheduleIdleTimeoutLocked(idleActivity);
3632 continue;
3633 }
Winson Chung4dabf232017-01-25 13:25:22 -08003634
David Stevens9440dc82017-03-16 19:00:20 -07003635 if (DEBUG_STATES) Slog.v(TAG, "Ready to stop: " + s);
3636 if (stops == null) {
3637 stops = new ArrayList<>();
3638 }
3639 stops.add(s);
3640 mStoppingActivities.remove(activityNdx);
Craig Mautnerde4ef022013-04-07 19:01:33 -07003641 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07003642 }
3643 }
3644
3645 return stops;
3646 }
3647
Craig Mautnercf910b02013-04-23 11:23:27 -07003648 void validateTopActivitiesLocked() {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003649 for (int displayNdx = mActivityDisplays.size() - 1; displayNdx >= 0; --displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003650 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3651 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3652 final ActivityStack stack = display.getChildAt(stackNdx);
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07003653 final ActivityRecord r = stack.topRunningActivityLocked();
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003654 final ActivityState state = r == null ? DESTROYED : r.state;
Wale Ogunwale1e60e0c2015-10-28 13:36:10 -07003655 if (isFocusedStack(stack)) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003656 if (r == null) Slog.e(TAG,
3657 "validateTop...: null top activity, stack=" + stack);
3658 else {
3659 final ActivityRecord pausing = stack.mPausingActivity;
3660 if (pausing != null && pausing == r) Slog.e(TAG,
3661 "validateTop...: top stack has pausing activity r=" + r
3662 + " state=" + state);
3663 if (state != INITIALIZING && state != RESUMED) Slog.e(TAG,
3664 "validateTop...: activity in front not resumed r=" + r
3665 + " state=" + state);
3666 }
Craig Mautnercf910b02013-04-23 11:23:27 -07003667 } else {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07003668 final ActivityRecord resumed = stack.mResumedActivity;
3669 if (resumed != null && resumed == r) Slog.e(TAG,
3670 "validateTop...: back stack has resumed activity r=" + r
3671 + " state=" + state);
3672 if (r != null && (state == INITIALIZING || state == RESUMED)) Slog.e(TAG,
3673 "validateTop...: activity in back resumed r=" + r + " state=" + state);
Craig Mautnercf910b02013-04-23 11:23:27 -07003674 }
3675 }
3676 }
Craig Mautner76ea2242013-05-15 11:40:05 -07003677 }
3678
Craig Mautner27084302013-03-25 08:05:25 -07003679 public void dump(PrintWriter pw, String prefix) {
Craig Mautnerd1bbdb4622013-10-22 09:53:20 -07003680 pw.print(prefix); pw.print("mFocusedStack=" + mFocusedStack);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003681 pw.print(" mLastFocusedStack="); pw.println(mLastFocusedStack);
Suprabh Shukla09a88f52015-12-02 14:36:31 -08003682 pw.print(prefix);
3683 pw.println("mCurTaskIdForUser=" + mCurTaskIdForUser);
Craig Mautnerd1bbdb4622013-10-22 09:53:20 -07003684 pw.print(prefix); pw.println("mUserStackInFront=" + mUserStackInFront);
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07003685 for (int i = mActivityDisplays.size() - 1; i >= 0; --i) {
3686 final ActivityDisplay display = mActivityDisplays.valueAt(i);
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003687 display.dump(pw, prefix);
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07003688 }
Bryce Lee4a194382017-04-04 14:32:48 -07003689 if (!mWaitingForActivityVisible.isEmpty()) {
3690 pw.print(prefix); pw.println("mWaitingForActivityVisible=");
3691 for (int i = 0; i < mWaitingForActivityVisible.size(); ++i) {
3692 pw.print(prefix); pw.print(prefix); mWaitingForActivityVisible.get(i).dump(pw, prefix);
3693 }
3694 }
3695
Jorim Jaggi8d786932016-10-26 19:08:36 -07003696 mKeyguardController.dump(pw, prefix);
Benjamin Franza83859f2017-07-03 16:34:14 +01003697 mService.mLockTaskController.dump(pw, prefix);
Craig Mautner27084302013-03-25 08:05:25 -07003698 }
Craig Mautner8d341ef2013-03-26 09:03:27 -07003699
Yi Jin129fc6c2017-09-28 15:48:38 -07003700 public void writeToProto(ProtoOutputStream proto) {
Adrian Roos4921ccf2017-09-28 16:54:06 +02003701 super.writeToProto(proto, CONFIGURATION_CONTAINER, false /* trim */);
Steven Timotius4346f0a2017-09-12 11:07:21 -07003702 for (int displayNdx = 0; displayNdx < mActivityDisplays.size(); ++displayNdx) {
3703 ActivityDisplay activityDisplay = mActivityDisplays.valueAt(displayNdx);
3704 activityDisplay.writeToProto(proto, DISPLAYS);
3705 }
3706 mKeyguardController.writeToProto(proto, KEYGUARD_CONTROLLER);
3707 if (mFocusedStack != null) {
3708 proto.write(FOCUSED_STACK_ID, mFocusedStack.mStackId);
3709 ActivityRecord focusedActivity = getResumedActivityLocked();
3710 if (focusedActivity != null) {
3711 focusedActivity.writeIdentifierToProto(proto, RESUMED_ACTIVITY);
3712 }
3713 } else {
3714 proto.write(FOCUSED_STACK_ID, INVALID_STACK_ID);
3715 }
Steven Timotius4346f0a2017-09-12 11:07:21 -07003716 }
3717
Winson43d1f262016-06-14 16:05:55 -07003718 /**
Andrii Kulian5406e7a2016-10-21 11:55:23 -07003719 * Dump all connected displays' configurations.
3720 * @param prefix Prefix to apply to each line of the dump.
3721 */
3722 void dumpDisplayConfigs(PrintWriter pw, String prefix) {
3723 pw.print(prefix); pw.println("Display override configurations:");
3724 final int displayCount = mActivityDisplays.size();
3725 for (int i = 0; i < displayCount; i++) {
3726 final ActivityDisplay activityDisplay = mActivityDisplays.valueAt(i);
3727 pw.print(prefix); pw.print(" "); pw.print(activityDisplay.mDisplayId); pw.print(": ");
3728 pw.println(activityDisplay.getOverrideConfiguration());
3729 }
3730 }
3731
3732 /**
Winson43d1f262016-06-14 16:05:55 -07003733 * Dumps the activities matching the given {@param name} in the either the focused stack
3734 * or all visible stacks if {@param dumpVisibleStacks} is true.
3735 */
Winson Chung6998bc42017-02-28 17:07:05 -08003736 ArrayList<ActivityRecord> getDumpActivitiesLocked(String name, boolean dumpVisibleStacksOnly,
3737 boolean dumpFocusedStackOnly) {
3738 if (dumpFocusedStackOnly) {
3739 return mFocusedStack.getDumpActivitiesLocked(name);
3740 } else {
Winson43d1f262016-06-14 16:05:55 -07003741 ArrayList<ActivityRecord> activities = new ArrayList<>();
3742 int numDisplays = mActivityDisplays.size();
3743 for (int displayNdx = 0; displayNdx < numDisplays; ++displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003744 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3745 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3746 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07003747 if (!dumpVisibleStacksOnly || stack.shouldBeVisible(null)) {
Winson43d1f262016-06-14 16:05:55 -07003748 activities.addAll(stack.getDumpActivitiesLocked(name));
3749 }
3750 }
3751 }
3752 return activities;
Winson43d1f262016-06-14 16:05:55 -07003753 }
Craig Mautner20e72272013-04-01 13:45:53 -07003754 }
3755
Dianne Hackborn390517b2013-05-30 15:03:32 -07003756 static boolean printThisActivity(PrintWriter pw, ActivityRecord activity, String dumpPackage,
3757 boolean needSep, String prefix) {
3758 if (activity != null) {
3759 if (dumpPackage == null || dumpPackage.equals(activity.packageName)) {
3760 if (needSep) {
3761 pw.println();
Dianne Hackborn390517b2013-05-30 15:03:32 -07003762 }
3763 pw.print(prefix);
3764 pw.println(activity);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003765 return true;
Dianne Hackborn390517b2013-05-30 15:03:32 -07003766 }
3767 }
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003768 return false;
Dianne Hackborn390517b2013-05-30 15:03:32 -07003769 }
3770
Craig Mautner8d341ef2013-03-26 09:03:27 -07003771 boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
3772 boolean dumpClient, String dumpPackage) {
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003773 boolean printed = false;
3774 boolean needSep = false;
Craig Mautnere0a38842013-12-16 16:14:02 -08003775 for (int displayNdx = 0; displayNdx < mActivityDisplays.size(); ++displayNdx) {
3776 ActivityDisplay activityDisplay = mActivityDisplays.valueAt(displayNdx);
Craig Mautneree2e45a2014-06-27 12:10:03 -07003777 pw.print("Display #"); pw.print(activityDisplay.mDisplayId);
Craig Mautner737fae22014-10-15 12:52:10 -07003778 pw.println(" (activities from top to bottom):");
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07003779 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
3780 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
3781 final ActivityStack stack = display.getChildAt(stackNdx);
Wale Ogunwale34a5b572017-08-31 08:29:41 -07003782 pw.println();
Wale Ogunwale44f036f2017-09-29 05:09:09 -07003783 pw.println(" Stack #" + stack.mStackId
Wale Ogunwale61911492017-10-11 08:50:50 -07003784 + ": type=" + activityTypeToString(stack.getActivityType())
3785 + " mode=" + windowingModeToString(stack.getWindowingMode()));
Wale Ogunwale34a5b572017-08-31 08:29:41 -07003786 pw.println(" isSleeping=" + stack.shouldSleepActivities());
Bryce Leef3c6a472017-11-14 14:53:06 -08003787 pw.println(" mBounds=" + stack.getOverrideBounds());
Winson Chungabb433b2017-03-24 09:35:42 -07003788
Wale Ogunwale34a5b572017-08-31 08:29:41 -07003789 printed |= stack.dumpActivitiesLocked(fd, pw, dumpAll, dumpClient, dumpPackage,
3790 needSep);
Winson Chungabb433b2017-03-24 09:35:42 -07003791
Craig Mautner4a1cb222013-12-04 16:14:06 -08003792 printed |= dumpHistoryList(fd, pw, stack.mLRUActivities, " ", "Run", false,
3793 !dumpAll, false, dumpPackage, true,
3794 " Running activities (most recent first):", null);
Craig Mautner8d341ef2013-03-26 09:03:27 -07003795
Craig Mautner4a1cb222013-12-04 16:14:06 -08003796 needSep = printed;
3797 boolean pr = printThisActivity(pw, stack.mPausingActivity, dumpPackage, needSep,
3798 " mPausingActivity: ");
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003799 if (pr) {
3800 printed = true;
Craig Mautner4a1cb222013-12-04 16:14:06 -08003801 needSep = false;
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003802 }
Craig Mautner4a1cb222013-12-04 16:14:06 -08003803 pr = printThisActivity(pw, stack.mResumedActivity, dumpPackage, needSep,
3804 " mResumedActivity: ");
3805 if (pr) {
3806 printed = true;
3807 needSep = false;
3808 }
3809 if (dumpAll) {
3810 pr = printThisActivity(pw, stack.mLastPausedActivity, dumpPackage, needSep,
3811 " mLastPausedActivity: ");
3812 if (pr) {
3813 printed = true;
3814 needSep = true;
3815 }
3816 printed |= printThisActivity(pw, stack.mLastNoHistoryActivity, dumpPackage,
3817 needSep, " mLastNoHistoryActivity: ");
3818 }
3819 needSep = printed;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003820 }
3821 }
3822
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003823 printed |= dumpHistoryList(fd, pw, mFinishingActivities, " ", "Fin", false, !dumpAll,
3824 false, dumpPackage, true, " Activities waiting to finish:", null);
3825 printed |= dumpHistoryList(fd, pw, mStoppingActivities, " ", "Stop", false, !dumpAll,
3826 false, dumpPackage, true, " Activities waiting to stop:", null);
Bryce Lee4a194382017-04-04 14:32:48 -07003827 printed |= dumpHistoryList(fd, pw, mActivitiesWaitingForVisibleActivity, " ", "Wait",
3828 false, !dumpAll, false, dumpPackage, true,
3829 " Activities waiting for another to become visible:", null);
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003830 printed |= dumpHistoryList(fd, pw, mGoingToSleepActivities, " ", "Sleep", false, !dumpAll,
3831 false, dumpPackage, true, " Activities waiting to sleep:", null);
Craig Mautnerf3333272013-04-22 10:55:53 -07003832
Dianne Hackborn7ad34e52013-06-05 18:41:45 -07003833 return printed;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003834 }
3835
Dianne Hackborn390517b2013-05-30 15:03:32 -07003836 static boolean dumpHistoryList(FileDescriptor fd, PrintWriter pw, List<ActivityRecord> list,
Craig Mautner8d341ef2013-03-26 09:03:27 -07003837 String prefix, String label, boolean complete, boolean brief, boolean client,
Wale Ogunwale34a5b572017-08-31 08:29:41 -07003838 String dumpPackage, boolean needNL, String header, TaskRecord lastTask) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07003839 String innerPrefix = null;
3840 String[] args = null;
3841 boolean printed = false;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003842 for (int i=list.size()-1; i>=0; i--) {
3843 final ActivityRecord r = list.get(i);
3844 if (dumpPackage != null && !dumpPackage.equals(r.packageName)) {
3845 continue;
3846 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07003847 if (innerPrefix == null) {
3848 innerPrefix = prefix + " ";
3849 args = new String[0];
3850 }
3851 printed = true;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003852 final boolean full = !brief && (complete || !r.isInHistory());
3853 if (needNL) {
Dianne Hackborn390517b2013-05-30 15:03:32 -07003854 pw.println("");
Craig Mautner8d341ef2013-03-26 09:03:27 -07003855 needNL = false;
3856 }
Wale Ogunwale34a5b572017-08-31 08:29:41 -07003857 if (header != null) {
3858 pw.println(header);
3859 header = null;
Dianne Hackborn390517b2013-05-30 15:03:32 -07003860 }
Bryce Leeaf691c02017-03-20 14:20:22 -07003861 if (lastTask != r.getTask()) {
3862 lastTask = r.getTask();
Craig Mautner8d341ef2013-03-26 09:03:27 -07003863 pw.print(prefix);
3864 pw.print(full ? "* " : " ");
3865 pw.println(lastTask);
3866 if (full) {
3867 lastTask.dump(pw, prefix + " ");
3868 } else if (complete) {
3869 // Complete + brief == give a summary. Isn't that obvious?!?
3870 if (lastTask.intent != null) {
3871 pw.print(prefix); pw.print(" ");
3872 pw.println(lastTask.intent.toInsecureStringWithClip());
3873 }
3874 }
3875 }
3876 pw.print(prefix); pw.print(full ? " * " : " "); pw.print(label);
3877 pw.print(" #"); pw.print(i); pw.print(": ");
3878 pw.println(r);
3879 if (full) {
3880 r.dump(pw, innerPrefix);
3881 } else if (complete) {
3882 // Complete + brief == give a summary. Isn't that obvious?!?
3883 pw.print(innerPrefix); pw.println(r.intent.toInsecureString());
3884 if (r.app != null) {
3885 pw.print(innerPrefix); pw.println(r.app);
3886 }
3887 }
3888 if (client && r.app != null && r.app.thread != null) {
3889 // flush anything that is already in the PrintWriter since the thread is going
3890 // to write to the file descriptor directly
3891 pw.flush();
3892 try {
3893 TransferPipe tp = new TransferPipe();
3894 try {
Sudheer Shankacc6418f2016-10-13 12:03:44 -07003895 r.app.thread.dumpActivity(tp.getWriteFd(), r.appToken, innerPrefix, args);
Craig Mautner8d341ef2013-03-26 09:03:27 -07003896 // Short timeout, since blocking here can
3897 // deadlock with the application.
3898 tp.go(fd, 2000);
3899 } finally {
3900 tp.kill();
3901 }
3902 } catch (IOException e) {
3903 pw.println(innerPrefix + "Failure while dumping the activity: " + e);
3904 } catch (RemoteException e) {
3905 pw.println(innerPrefix + "Got a RemoteException while dumping the activity");
3906 }
3907 needNL = true;
3908 }
3909 }
Dianne Hackborn390517b2013-05-30 15:03:32 -07003910 return printed;
Craig Mautner8d341ef2013-03-26 09:03:27 -07003911 }
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07003912
Craig Mautnerf3333272013-04-22 10:55:53 -07003913 void scheduleIdleTimeoutLocked(ActivityRecord next) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003914 if (DEBUG_IDLE) Slog.d(TAG_IDLE,
3915 "scheduleIdleTimeoutLocked: Callers=" + Debug.getCallers(4));
Craig Mautnerc64f73e2013-04-24 16:44:56 -07003916 Message msg = mHandler.obtainMessage(IDLE_TIMEOUT_MSG, next);
3917 mHandler.sendMessageDelayed(msg, IDLE_TIMEOUT);
Craig Mautnerf3333272013-04-22 10:55:53 -07003918 }
3919
3920 final void scheduleIdleLocked() {
Craig Mautner05d29032013-05-03 13:40:13 -07003921 mHandler.sendEmptyMessage(IDLE_NOW_MSG);
Craig Mautnerf3333272013-04-22 10:55:53 -07003922 }
3923
3924 void removeTimeoutsForActivityLocked(ActivityRecord r) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07003925 if (DEBUG_IDLE) Slog.d(TAG_IDLE, "removeTimeoutsForActivity: Callers="
3926 + Debug.getCallers(4));
Craig Mautnerf3333272013-04-22 10:55:53 -07003927 mHandler.removeMessages(IDLE_TIMEOUT_MSG, r);
3928 }
3929
Craig Mautner05d29032013-05-03 13:40:13 -07003930 final void scheduleResumeTopActivities() {
Craig Mautner34b73df2014-01-12 21:11:08 -08003931 if (!mHandler.hasMessages(RESUME_TOP_ACTIVITY_MSG)) {
3932 mHandler.sendEmptyMessage(RESUME_TOP_ACTIVITY_MSG);
3933 }
Craig Mautner05d29032013-05-03 13:40:13 -07003934 }
3935
Craig Mautner0eea92c2013-05-16 13:35:39 -07003936 void removeSleepTimeouts() {
Craig Mautner0eea92c2013-05-16 13:35:39 -07003937 mHandler.removeMessages(SLEEP_TIMEOUT_MSG);
3938 }
3939
3940 final void scheduleSleepTimeout() {
3941 removeSleepTimeouts();
3942 mHandler.sendEmptyMessageDelayed(SLEEP_TIMEOUT_MSG, SLEEP_TIMEOUT);
3943 }
3944
Craig Mautner4a1cb222013-12-04 16:14:06 -08003945 @Override
3946 public void onDisplayAdded(int displayId) {
Dianne Hackbornfb81d092015-08-03 17:14:46 -07003947 if (DEBUG_STACK) Slog.v(TAG, "Display added displayId=" + displayId);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003948 mHandler.sendMessage(mHandler.obtainMessage(HANDLE_DISPLAY_ADDED, displayId, 0));
3949 }
3950
3951 @Override
3952 public void onDisplayRemoved(int displayId) {
Dianne Hackbornfb81d092015-08-03 17:14:46 -07003953 if (DEBUG_STACK) Slog.v(TAG, "Display removed displayId=" + displayId);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003954 mHandler.sendMessage(mHandler.obtainMessage(HANDLE_DISPLAY_REMOVED, displayId, 0));
3955 }
3956
3957 @Override
3958 public void onDisplayChanged(int displayId) {
Dianne Hackbornfb81d092015-08-03 17:14:46 -07003959 if (DEBUG_STACK) Slog.v(TAG, "Display changed displayId=" + displayId);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003960 mHandler.sendMessage(mHandler.obtainMessage(HANDLE_DISPLAY_CHANGED, displayId, 0));
3961 }
3962
Wale Ogunwalef16a2812015-04-01 11:23:15 -07003963 private void handleDisplayAdded(int displayId) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08003964 synchronized (mService) {
Andrii Kulian62e6f252017-05-30 22:46:53 -07003965 getActivityDisplayOrCreateLocked(displayId);
Craig Mautner4a1cb222013-12-04 16:14:06 -08003966 }
Craig Mautner4a1cb222013-12-04 16:14:06 -08003967 }
3968
Andrii Kulianca007a62016-11-22 16:33:28 -08003969 /** Check if display with specified id is added to the list. */
3970 boolean isDisplayAdded(int displayId) {
Andrii Kulian62e6f252017-05-30 22:46:53 -07003971 return getActivityDisplayOrCreateLocked(displayId) != null;
3972 }
3973
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003974 // TODO: Look into consolidating with getActivityDisplayOrCreateLocked()
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07003975 ActivityDisplay getActivityDisplay(int displayId) {
3976 return mActivityDisplays.get(displayId);
3977 }
3978
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003979 // TODO(multi-display): Look at all callpoints to make sure they make sense in multi-display.
3980 ActivityDisplay getDefaultDisplay() {
3981 return mActivityDisplays.get(DEFAULT_DISPLAY);
3982 }
3983
Andrii Kulian62e6f252017-05-30 22:46:53 -07003984 /**
3985 * Get an existing instance of {@link ActivityDisplay} or create new if there is a
3986 * corresponding record in display manager.
3987 */
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07003988 // TODO: Look into consolidating with getActivityDisplay()
3989 ActivityDisplay getActivityDisplayOrCreateLocked(int displayId) {
Andrii Kulian62e6f252017-05-30 22:46:53 -07003990 ActivityDisplay activityDisplay = mActivityDisplays.get(displayId);
3991 if (activityDisplay != null) {
3992 return activityDisplay;
3993 }
3994 if (mDisplayManager == null) {
3995 // The system isn't fully initialized yet.
3996 return null;
3997 }
3998 final Display display = mDisplayManager.getDisplay(displayId);
3999 if (display == null) {
4000 // The display is not registered in DisplayManager.
4001 return null;
4002 }
4003 // The display hasn't been added to ActivityManager yet, create a new record now.
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07004004 activityDisplay = new ActivityDisplay(this, displayId);
4005 attachDisplay(activityDisplay);
Andrii Kulian62e6f252017-05-30 22:46:53 -07004006 calculateDefaultMinimalSizeOfResizeableTasks(activityDisplay);
4007 mWindowManager.onDisplayAdded(displayId);
4008 return activityDisplay;
Andrii Kulianca007a62016-11-22 16:33:28 -08004009 }
4010
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07004011 @VisibleForTesting
4012 void attachDisplay(ActivityDisplay display) {
4013 mActivityDisplays.put(display.mDisplayId, display);
4014 }
4015
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -07004016 private void calculateDefaultMinimalSizeOfResizeableTasks(ActivityDisplay display) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07004017 mDefaultMinSizeOfResizeableTask =
Jorim Jaggi19cf2972016-04-07 23:26:10 -07004018 mService.mContext.getResources().getDimensionPixelSize(
4019 com.android.internal.R.dimen.default_minimal_size_resizable_task);
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -07004020 }
4021
Wale Ogunwalef16a2812015-04-01 11:23:15 -07004022 private void handleDisplayRemoved(int displayId) {
Andrii Kuliana33818c2017-02-16 16:11:30 -08004023 if (displayId == DEFAULT_DISPLAY) {
4024 throw new IllegalArgumentException("Can't remove the primary display.");
4025 }
4026
Craig Mautner4a1cb222013-12-04 16:14:06 -08004027 synchronized (mService) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004028 final ActivityDisplay activityDisplay = mActivityDisplays.get(displayId);
4029 if (activityDisplay == null) {
4030 return;
Craig Mautner4a1cb222013-12-04 16:14:06 -08004031 }
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004032 final boolean destroyContentOnRemoval
4033 = activityDisplay.shouldDestroyContentOnRemove();
4034 while (activityDisplay.getChildCount() > 0) {
4035 final ActivityStack stack = activityDisplay.getChildAt(0);
4036 if (destroyContentOnRemoval) {
4037 moveStackToDisplayLocked(stack.mStackId, DEFAULT_DISPLAY, false /* onTop */);
4038 stack.finishAllActivitiesLocked(true /* immediately */);
4039 } else {
4040 // Moving all tasks to fullscreen stack, because it's guaranteed to be
4041 // a valid launch stack for all activities. This way the task history from
4042 // external display will be preserved on primary after move.
4043 moveTasksToFullscreenStackLocked(stack, true /* onTop */);
4044 }
4045 }
4046
4047 releaseSleepTokens(activityDisplay);
4048
4049 mActivityDisplays.remove(displayId);
4050 mWindowManager.onDisplayRemoved(displayId);
Craig Mautner4a1cb222013-12-04 16:14:06 -08004051 }
Craig Mautner4a1cb222013-12-04 16:14:06 -08004052 }
4053
Wale Ogunwalef16a2812015-04-01 11:23:15 -07004054 private void handleDisplayChanged(int displayId) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08004055 synchronized (mService) {
Craig Mautnere0a38842013-12-16 16:14:02 -08004056 ActivityDisplay activityDisplay = mActivityDisplays.get(displayId);
Bryce Leef3c6a472017-11-14 14:53:06 -08004057 // TODO: The following code block should be moved into {@link ActivityDisplay}.
Craig Mautnere0a38842013-12-16 16:14:02 -08004058 if (activityDisplay != null) {
David Stevens9440dc82017-03-16 19:00:20 -07004059 // The window policy is responsible for stopping activities on the default display
4060 if (displayId != Display.DEFAULT_DISPLAY) {
4061 int displayState = activityDisplay.mDisplay.getState();
4062 if (displayState == Display.STATE_OFF && activityDisplay.mOffToken == null) {
4063 activityDisplay.mOffToken =
4064 mService.acquireSleepToken("Display-off", displayId);
4065 } else if (displayState == Display.STATE_ON
4066 && activityDisplay.mOffToken != null) {
4067 activityDisplay.mOffToken.release();
4068 activityDisplay.mOffToken = null;
4069 }
4070 }
Bryce Leef3c6a472017-11-14 14:53:06 -08004071
4072 activityDisplay.updateBounds();
Craig Mautner4a1cb222013-12-04 16:14:06 -08004073 }
Bryce Leeaf3a4002017-03-20 10:37:12 -07004074 mWindowManager.onDisplayChanged(displayId);
Craig Mautner4a1cb222013-12-04 16:14:06 -08004075 }
Craig Mautner4a1cb222013-12-04 16:14:06 -08004076 }
4077
David Stevens9440dc82017-03-16 19:00:20 -07004078 SleepToken createSleepTokenLocked(String tag, int displayId) {
4079 ActivityDisplay display = mActivityDisplays.get(displayId);
4080 if (display == null) {
4081 throw new IllegalArgumentException("Invalid display: " + displayId);
4082 }
4083
4084 final SleepTokenImpl token = new SleepTokenImpl(tag, displayId);
4085 mSleepTokens.add(token);
4086 display.mAllSleepTokens.add(token);
4087 return token;
4088 }
4089
4090 private void removeSleepTokenLocked(SleepTokenImpl token) {
4091 mSleepTokens.remove(token);
4092
4093 ActivityDisplay display = mActivityDisplays.get(token.mDisplayId);
4094 if (display != null) {
4095 display.mAllSleepTokens.remove(token);
4096 if (display.mAllSleepTokens.isEmpty()) {
4097 mService.updateSleepIfNeededLocked();
4098 }
4099 }
4100 }
4101
4102 private void releaseSleepTokens(ActivityDisplay display) {
4103 if (display.mAllSleepTokens.isEmpty()) {
4104 return;
4105 }
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07004106 for (SleepToken token : display.mAllSleepTokens) {
David Stevens9440dc82017-03-16 19:00:20 -07004107 mSleepTokens.remove(token);
4108 }
4109 display.mAllSleepTokens.clear();
4110
4111 mService.updateSleepIfNeededLocked();
4112 }
4113
Wale Ogunwale68278562017-09-23 17:13:55 -07004114 private StackInfo getStackInfo(ActivityStack stack) {
Andrii Kulian7e215d72017-04-26 18:33:28 -07004115 final int displayId = stack.mDisplayId;
4116 final ActivityDisplay display = mActivityDisplays.get(displayId);
Craig Mautner4a1cb222013-12-04 16:14:06 -08004117 StackInfo info = new StackInfo();
Wale Ogunwale1666e312016-12-16 11:27:18 -08004118 stack.getWindowContainerBounds(info.bounds);
Andrii Kulian7e215d72017-04-26 18:33:28 -07004119 info.displayId = displayId;
Craig Mautner4a1cb222013-12-04 16:14:06 -08004120 info.stackId = stack.mStackId;
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08004121 info.userId = stack.mCurrentUser;
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07004122 info.visible = stack.shouldBeVisible(null);
Andrii Kulian62e6f252017-05-30 22:46:53 -07004123 // A stack might be not attached to a display.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004124 info.position = display != null ? display.getIndexOf(stack) : 0;
Wale Ogunwale68278562017-09-23 17:13:55 -07004125 info.configuration.setTo(stack.getConfiguration());
Craig Mautner4a1cb222013-12-04 16:14:06 -08004126
4127 ArrayList<TaskRecord> tasks = stack.getAllTasks();
4128 final int numTasks = tasks.size();
4129 int[] taskIds = new int[numTasks];
4130 String[] taskNames = new String[numTasks];
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004131 Rect[] taskBounds = new Rect[numTasks];
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08004132 int[] taskUserIds = new int[numTasks];
Craig Mautner4a1cb222013-12-04 16:14:06 -08004133 for (int i = 0; i < numTasks; ++i) {
4134 final TaskRecord task = tasks.get(i);
4135 taskIds[i] = task.taskId;
4136 taskNames[i] = task.origActivity != null ? task.origActivity.flattenToString()
4137 : task.realActivity != null ? task.realActivity.flattenToString()
4138 : task.getTopActivity() != null ? task.getTopActivity().packageName
4139 : "unknown";
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004140 taskBounds[i] = new Rect();
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08004141 task.getWindowContainerBounds(taskBounds[i]);
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08004142 taskUserIds[i] = task.userId;
Craig Mautner4a1cb222013-12-04 16:14:06 -08004143 }
4144 info.taskIds = taskIds;
4145 info.taskNames = taskNames;
Wale Ogunwale868a5e12015-08-02 16:19:20 -07004146 info.taskBounds = taskBounds;
Filip Gruszczynski21199bd2015-12-02 12:49:58 -08004147 info.taskUserIds = taskUserIds;
Winsond46b7272016-04-20 11:54:27 -07004148
4149 final ActivityRecord top = stack.topRunningActivityLocked();
4150 info.topActivity = top != null ? top.intent.getComponent() : null;
Craig Mautner4a1cb222013-12-04 16:14:06 -08004151 return info;
4152 }
4153
Wale Ogunwale68278562017-09-23 17:13:55 -07004154 StackInfo getStackInfo(int stackId) {
Craig Mautner4a1cb222013-12-04 16:14:06 -08004155 ActivityStack stack = getStack(stackId);
4156 if (stack != null) {
Wale Ogunwale68278562017-09-23 17:13:55 -07004157 return getStackInfo(stack);
Craig Mautner4a1cb222013-12-04 16:14:06 -08004158 }
4159 return null;
4160 }
4161
Wale Ogunwale68278562017-09-23 17:13:55 -07004162 StackInfo getStackInfo(int windowingMode, int activityType) {
4163 final ActivityStack stack = getStack(windowingMode, activityType);
4164 return (stack != null) ? getStackInfo(stack) : null;
4165 }
4166
Craig Mautner4a1cb222013-12-04 16:14:06 -08004167 ArrayList<StackInfo> getAllStackInfosLocked() {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07004168 ArrayList<StackInfo> list = new ArrayList<>();
Craig Mautnere0a38842013-12-16 16:14:02 -08004169 for (int displayNdx = 0; displayNdx < mActivityDisplays.size(); ++displayNdx) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004170 final ActivityDisplay display = mActivityDisplays.valueAt(displayNdx);
4171 for (int stackNdx = display.getChildCount() - 1; stackNdx >= 0; --stackNdx) {
4172 final ActivityStack stack = display.getChildAt(stackNdx);
4173 list.add(getStackInfo(stack));
Craig Mautner4a1cb222013-12-04 16:14:06 -08004174 }
4175 }
4176 return list;
4177 }
4178
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004179 void handleNonResizableTaskIfNeeded(TaskRecord task, int preferredWindowingMode,
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004180 int preferredDisplayId, ActivityStack actualStack) {
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004181 handleNonResizableTaskIfNeeded(task, preferredWindowingMode, preferredDisplayId,
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004182 actualStack, false /* forceNonResizable */);
Andrii Kulianc27916642016-04-12 17:59:27 -07004183 }
4184
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004185 void handleNonResizableTaskIfNeeded(TaskRecord task, int preferredWindowingMode,
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004186 int preferredDisplayId, ActivityStack actualStack, boolean forceNonResizable) {
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004187 final boolean isSecondaryDisplayPreferred =
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004188 (preferredDisplayId != DEFAULT_DISPLAY && preferredDisplayId != INVALID_DISPLAY);
Wale Ogunwale926aade2017-08-29 11:24:37 -07004189 final boolean inSplitScreenMode = actualStack != null
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07004190 && actualStack.getDisplay().hasSplitScreenPrimaryStack();
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004191 if (((!inSplitScreenMode && preferredWindowingMode != WINDOWING_MODE_SPLIT_SCREEN_PRIMARY)
Wale Ogunwale7e1f5f52017-10-18 15:19:59 -07004192 && !isSecondaryDisplayPreferred) || !task.isActivityTypeStandardOrUndefined()) {
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -08004193 return;
4194 }
4195
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004196 // Handle incorrect launch/move to secondary display if needed.
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004197 if (isSecondaryDisplayPreferred) {
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004198 final boolean launchOnSecondaryDisplayFailed;
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004199 final int actualDisplayId = task.getStack().mDisplayId;
4200 if (!task.canBeLaunchedOnDisplay(actualDisplayId)) {
4201 // The task landed on an inappropriate display somehow, move it to the default
4202 // display.
4203 // TODO(multi-display): Find proper stack for the task on the default display.
Wale Ogunwale44f036f2017-09-29 05:09:09 -07004204 mService.setTaskWindowingMode(task.taskId,
4205 WINDOWING_MODE_FULLSCREEN_OR_SPLIT_SCREEN_SECONDARY, true /* toTop */);
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004206 launchOnSecondaryDisplayFailed = true;
4207 } else {
4208 // The task might have landed on a display different from requested.
4209 launchOnSecondaryDisplayFailed = actualDisplayId == DEFAULT_DISPLAY
4210 || (preferredDisplayId != INVALID_DISPLAY
4211 && preferredDisplayId != actualDisplayId);
4212 }
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004213 if (launchOnSecondaryDisplayFailed) {
4214 // Display a warning toast that we tried to put a non-resizeable task on a secondary
4215 // display with config different from global config.
4216 mService.mTaskChangeNotificationController
4217 .notifyActivityLaunchOnSecondaryDisplayFailed();
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004218 return;
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004219 }
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004220 }
4221
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004222 if (!task.supportsSplitScreenWindowingMode() || forceNonResizable) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -08004223 // Display a warning toast that we tried to put an app that doesn't support split-screen
4224 // in split-screen.
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004225 mService.mTaskChangeNotificationController.notifyActivityDismissingDockedStack();
Jorim Jaggid53f0922016-04-06 22:16:23 -07004226
Andrii Kulianc27916642016-04-12 17:59:27 -07004227 // Dismiss docked stack. If task appeared to be in docked stack but is not resizable -
4228 // we need to move it to top of fullscreen stack, otherwise it will be covered.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07004229
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004230 final ActivityStack dockedStack =
4231 task.getStack().getDisplay().getSplitScreenPrimaryStack();
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07004232 if (dockedStack != null) {
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004233 moveTasksToFullscreenStackLocked(dockedStack, actualStack == dockedStack);
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07004234 }
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004235 return;
4236 }
4237
Wale Ogunwale30e441d2017-11-09 08:28:45 -08004238 final ActivityRecord topActivity = task.getTopActivity();
Wale Ogunwale2b07da82017-11-08 14:52:40 -08004239 if (topActivity != null && topActivity.isNonResizableOrForcedResizable()
4240 && !topActivity.noDisplay) {
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004241 final String packageName = topActivity.appInfo.packageName;
4242 final int reason = isSecondaryDisplayPreferred
4243 ? FORCED_RESIZEABLE_REASON_SECONDARY_DISPLAY
4244 : FORCED_RESIZEABLE_REASON_SPLIT_SCREEN;
Yorke Leebd54c2a2016-10-25 13:49:23 -07004245 mService.mTaskChangeNotificationController.notifyActivityForcedResizable(
Andrii Kulian036e3ad2017-04-19 10:55:10 -07004246 task.taskId, reason, packageName);
Wale Ogunwaleb9b16a72016-01-27 12:24:44 -08004247 }
Chong Zhangb15758a2015-11-17 12:12:03 -08004248 }
4249
Jorim Jaggife89d122015-12-22 16:28:44 +01004250 void activityRelaunchedLocked(IBinder token) {
4251 mWindowManager.notifyAppRelaunchingFinished(token);
David Stevens9440dc82017-03-16 19:00:20 -07004252 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
4253 if (r != null) {
4254 if (r.getStack().shouldSleepOrShutDownActivities()) {
Wale Ogunwale3e997362016-09-06 10:37:56 -07004255 r.setSleeping(true, true);
4256 }
4257 }
Jorim Jaggife89d122015-12-22 16:28:44 +01004258 }
4259
4260 void activityRelaunchingLocked(ActivityRecord r) {
4261 mWindowManager.notifyAppRelaunching(r.appToken);
4262 }
4263
Filip Gruszczynski77d94482015-12-11 13:59:52 -08004264 void logStackState() {
4265 mActivityMetricsLogger.logWindowState();
4266 }
4267
Winson Chung5af42fc2017-03-24 17:11:33 -07004268 void scheduleUpdateMultiWindowMode(TaskRecord task) {
Winson Chung8bca9e42017-04-16 15:59:43 -07004269 // If the stack is animating in a way where we will be forcing a multi-mode change at the
4270 // end, then ensure that we defer all in between multi-window mode changes
4271 if (task.getStack().deferScheduleMultiWindowModeChanged()) {
4272 return;
4273 }
4274
Wale Ogunwale22e25262016-02-01 10:32:02 -08004275 for (int i = task.mActivities.size() - 1; i >= 0; i--) {
4276 final ActivityRecord r = task.mActivities.get(i);
4277 if (r.app != null && r.app.thread != null) {
4278 mMultiWindowModeChangedActivities.add(r);
4279 }
4280 }
4281
4282 if (!mHandler.hasMessages(REPORT_MULTI_WINDOW_MODE_CHANGED_MSG)) {
4283 mHandler.sendEmptyMessage(REPORT_MULTI_WINDOW_MODE_CHANGED_MSG);
4284 }
4285 }
4286
Winson Chung5af42fc2017-03-24 17:11:33 -07004287 void scheduleUpdatePictureInPictureModeIfNeeded(TaskRecord task, ActivityStack prevStack) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07004288 final ActivityStack stack = task.getStack();
Wale Ogunwale22e25262016-02-01 10:32:02 -08004289 if (prevStack == null || prevStack == stack
Wale Ogunwale44f036f2017-09-29 05:09:09 -07004290 || (!prevStack.inPinnedWindowingMode() && !stack.inPinnedWindowingMode())) {
Wale Ogunwale22e25262016-02-01 10:32:02 -08004291 return;
4292 }
4293
Bryce Leef3c6a472017-11-14 14:53:06 -08004294 scheduleUpdatePictureInPictureModeIfNeeded(task, stack.getOverrideBounds());
Winson Chung5af42fc2017-03-24 17:11:33 -07004295 }
Wale Ogunwale22e25262016-02-01 10:32:02 -08004296
Winson Chungab76bbc2017-08-14 13:33:51 -07004297 void scheduleUpdatePictureInPictureModeIfNeeded(TaskRecord task, Rect targetStackBounds) {
4298 for (int i = task.mActivities.size() - 1; i >= 0; i--) {
4299 final ActivityRecord r = task.mActivities.get(i);
4300 if (r.app != null && r.app.thread != null) {
4301 mPipModeChangedActivities.add(r);
Winson Chung5af42fc2017-03-24 17:11:33 -07004302 }
Winson Chungab76bbc2017-08-14 13:33:51 -07004303 }
4304 mPipModeChangedTargetStackBounds = targetStackBounds;
Winson Chung5af42fc2017-03-24 17:11:33 -07004305
Winson Chungab76bbc2017-08-14 13:33:51 -07004306 if (!mHandler.hasMessages(REPORT_PIP_MODE_CHANGED_MSG)) {
4307 mHandler.sendEmptyMessage(REPORT_PIP_MODE_CHANGED_MSG);
4308 }
4309 }
4310
4311 void updatePictureInPictureMode(TaskRecord task, Rect targetStackBounds, boolean forceUpdate) {
4312 mHandler.removeMessages(REPORT_PIP_MODE_CHANGED_MSG);
4313 for (int i = task.mActivities.size() - 1; i >= 0; i--) {
4314 final ActivityRecord r = task.mActivities.get(i);
4315 if (r.app != null && r.app.thread != null) {
4316 r.updatePictureInPictureMode(targetStackBounds, forceUpdate);
Winson Chung5af42fc2017-03-24 17:11:33 -07004317 }
Wale Ogunwale22e25262016-02-01 10:32:02 -08004318 }
4319 }
4320
Tony Mak853304c2016-04-18 15:17:41 +01004321 void setDockedStackMinimized(boolean minimized) {
4322 mIsDockMinimized = minimized;
Tony Mak853304c2016-04-18 15:17:41 +01004323 }
4324
chaviw59b98852017-06-13 12:05:44 -07004325 void wakeUp(String reason) {
4326 mPowerManager.wakeUp(SystemClock.uptimeMillis(), "android.server.am:TURN_ON:" + reason);
4327 }
4328
4329 /**
4330 * Begin deferring resume to avoid duplicate resumes in one pass.
4331 */
4332 private void beginDeferResume() {
4333 mDeferResumeCount++;
4334 }
4335
4336 /**
4337 * End deferring resume and determine if resume can be called.
4338 */
4339 private void endDeferResume() {
4340 mDeferResumeCount--;
4341 }
4342
4343 /**
4344 * @return True if resume can be called.
4345 */
4346 private boolean readyToResume() {
4347 return mDeferResumeCount == 0;
4348 }
4349
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004350 private final class ActivityStackSupervisorHandler extends Handler {
Craig Mautnerf3333272013-04-22 10:55:53 -07004351
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004352 public ActivityStackSupervisorHandler(Looper looper) {
4353 super(looper);
4354 }
4355
Winson Chung4dabf232017-01-25 13:25:22 -08004356 void activityIdleInternal(ActivityRecord r, boolean processPausingActivities) {
Craig Mautnerf3333272013-04-22 10:55:53 -07004357 synchronized (mService) {
Winson Chung4dabf232017-01-25 13:25:22 -08004358 activityIdleInternalLocked(r != null ? r.appToken : null, true /* fromTimeout */,
4359 processPausingActivities, null);
Craig Mautnerf3333272013-04-22 10:55:53 -07004360 }
Craig Mautner7ea5bd42013-07-05 15:27:08 -07004361 }
4362
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004363 @Override
4364 public void handleMessage(Message msg) {
4365 switch (msg.what) {
Wale Ogunwale22e25262016-02-01 10:32:02 -08004366 case REPORT_MULTI_WINDOW_MODE_CHANGED_MSG: {
4367 synchronized (mService) {
4368 for (int i = mMultiWindowModeChangedActivities.size() - 1; i >= 0; i--) {
4369 final ActivityRecord r = mMultiWindowModeChangedActivities.remove(i);
Winson Chung5af42fc2017-03-24 17:11:33 -07004370 r.updateMultiWindowMode();
Wale Ogunwale22e25262016-02-01 10:32:02 -08004371 }
4372 }
4373 } break;
4374 case REPORT_PIP_MODE_CHANGED_MSG: {
4375 synchronized (mService) {
4376 for (int i = mPipModeChangedActivities.size() - 1; i >= 0; i--) {
4377 final ActivityRecord r = mPipModeChangedActivities.remove(i);
Winson Chungab76bbc2017-08-14 13:33:51 -07004378 r.updatePictureInPictureMode(mPipModeChangedTargetStackBounds,
4379 false /* forceUpdate */);
Wale Ogunwale22e25262016-02-01 10:32:02 -08004380 }
4381 }
4382 } break;
Craig Mautnerf3333272013-04-22 10:55:53 -07004383 case IDLE_TIMEOUT_MSG: {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004384 if (DEBUG_IDLE) Slog.d(TAG_IDLE,
4385 "handleMessage: IDLE_TIMEOUT_MSG: r=" + msg.obj);
Craig Mautnerf3333272013-04-22 10:55:53 -07004386 // We don't at this point know if the activity is fullscreen,
4387 // so we need to be conservative and assume it isn't.
Winson Chung4dabf232017-01-25 13:25:22 -08004388 activityIdleInternal((ActivityRecord) msg.obj,
4389 true /* processPausingActivities */);
Craig Mautnerf3333272013-04-22 10:55:53 -07004390 } break;
4391 case IDLE_NOW_MSG: {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07004392 if (DEBUG_IDLE) Slog.d(TAG_IDLE, "handleMessage: IDLE_NOW_MSG: r=" + msg.obj);
Winson Chung4dabf232017-01-25 13:25:22 -08004393 activityIdleInternal((ActivityRecord) msg.obj,
4394 false /* processPausingActivities */);
Craig Mautnerf3333272013-04-22 10:55:53 -07004395 } break;
Craig Mautner05d29032013-05-03 13:40:13 -07004396 case RESUME_TOP_ACTIVITY_MSG: {
4397 synchronized (mService) {
Wale Ogunwaled046a012015-12-24 13:05:59 -08004398 resumeFocusedStackTopActivityLocked();
Craig Mautner05d29032013-05-03 13:40:13 -07004399 }
4400 } break;
Craig Mautner0eea92c2013-05-16 13:35:39 -07004401 case SLEEP_TIMEOUT_MSG: {
4402 synchronized (mService) {
Fyodor Kupolov9b80b942016-06-16 16:29:05 -07004403 if (mService.isSleepingOrShuttingDownLocked()) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07004404 Slog.w(TAG, "Sleep timeout! Sleeping now.");
David Stevens9440dc82017-03-16 19:00:20 -07004405 checkReadyForSleepLocked(false /* allowDelay */);
Craig Mautner0eea92c2013-05-16 13:35:39 -07004406 }
4407 }
4408 } break;
Craig Mautner7ea5bd42013-07-05 15:27:08 -07004409 case LAUNCH_TIMEOUT_MSG: {
Craig Mautner7ea5bd42013-07-05 15:27:08 -07004410 synchronized (mService) {
4411 if (mLaunchingActivity.isHeld()) {
4412 Slog.w(TAG, "Launch timeout has expired, giving up wake lock!");
4413 if (VALIDATE_WAKE_LOCK_CALLER
4414 && Binder.getCallingUid() != Process.myUid()) {
4415 throw new IllegalStateException("Calling must be system uid");
4416 }
4417 mLaunchingActivity.release();
4418 }
4419 }
4420 } break;
Craig Mautner4a1cb222013-12-04 16:14:06 -08004421 case HANDLE_DISPLAY_ADDED: {
Wale Ogunwalef16a2812015-04-01 11:23:15 -07004422 handleDisplayAdded(msg.arg1);
Craig Mautner4a1cb222013-12-04 16:14:06 -08004423 } break;
4424 case HANDLE_DISPLAY_CHANGED: {
Wale Ogunwalef16a2812015-04-01 11:23:15 -07004425 handleDisplayChanged(msg.arg1);
Craig Mautner4a1cb222013-12-04 16:14:06 -08004426 } break;
4427 case HANDLE_DISPLAY_REMOVED: {
Wale Ogunwalef16a2812015-04-01 11:23:15 -07004428 handleDisplayRemoved(msg.arg1);
Craig Mautner4a1cb222013-12-04 16:14:06 -08004429 } break;
Craig Mautnerbb742462014-07-07 15:28:55 -07004430 case LAUNCH_TASK_BEHIND_COMPLETE: {
4431 synchronized (mService) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07004432 ActivityRecord r = ActivityRecord.forTokenLocked((IBinder) msg.obj);
Craig Mautnerbb742462014-07-07 15:28:55 -07004433 if (r != null) {
4434 handleLaunchTaskBehindCompleteLocked(r);
4435 }
4436 }
4437 } break;
Chong Zhangc806d902015-11-30 09:44:27 -08004438
Craig Mautnerce5f3cb2013-04-22 08:58:54 -07004439 }
4440 }
4441 }
Craig Mautnered6649f2013-12-02 14:08:25 -08004442
Filip Gruszczynskicaae14e2015-12-16 14:40:04 -08004443 ActivityStack findStackBehind(ActivityStack stack) {
4444 // TODO(multi-display): We are only looking for stacks on the default display.
Jorim Jaggife762342016-10-13 14:33:27 +02004445 final ActivityDisplay display = mActivityDisplays.get(DEFAULT_DISPLAY);
Filip Gruszczynskicaae14e2015-12-16 14:40:04 -08004446 if (display == null) {
4447 return null;
4448 }
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004449 for (int i = display.getChildCount() - 1; i >= 0; i--) {
4450 if (display.getChildAt(i) == stack && i > 0) {
4451 return display.getChildAt(i - 1);
Filip Gruszczynskicaae14e2015-12-16 14:40:04 -08004452 }
4453 }
4454 throw new IllegalStateException("Failed to find a stack behind stack=" + stack
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004455 + " in=" + display);
Filip Gruszczynskicaae14e2015-12-16 14:40:04 -08004456 }
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004457
Jorim Jaggic69bd222016-03-15 14:38:37 +01004458 /**
4459 * Puts a task into resizing mode during the next app transition.
4460 *
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08004461 * @param task The task to put into resizing mode
Jorim Jaggic69bd222016-03-15 14:38:37 +01004462 */
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08004463 private void setResizingDuringAnimation(TaskRecord task) {
4464 mResizingTasksDuringAnimation.add(task.taskId);
4465 task.setTaskDockedResizing(true);
Jorim Jaggic69bd222016-03-15 14:38:37 +01004466 }
4467
Wale Ogunwaleab5de372017-10-18 06:46:31 -07004468 int startActivityFromRecents(int taskId, Bundle bOptions) {
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004469 final TaskRecord task;
4470 final int callingUid;
4471 final String callingPackage;
4472 final Intent intent;
4473 final int userId;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004474 int activityType = ACTIVITY_TYPE_UNDEFINED;
4475 int windowingMode = WINDOWING_MODE_UNDEFINED;
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004476 final ActivityOptions activityOptions = (bOptions != null)
4477 ? new ActivityOptions(bOptions) : null;
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004478 if (activityOptions != null) {
4479 activityType = activityOptions.getLaunchActivityType();
4480 windowingMode = activityOptions.getLaunchWindowingMode();
4481 }
4482 if (activityType == ACTIVITY_TYPE_HOME || activityType == ACTIVITY_TYPE_RECENTS) {
Wale Ogunwaleab5de372017-10-18 06:46:31 -07004483 throw new IllegalArgumentException("startActivityFromRecents: Task "
Matthew Ngae1ff4f2016-11-10 15:49:14 -08004484 + taskId + " can't be launch in the home/recents stack.");
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004485 }
Jorim Jaggi3c800a42016-04-15 19:44:50 -07004486
Matthew Ng606dd802017-06-05 14:06:32 -07004487 mWindowManager.deferSurfaceLayout();
4488 try {
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004489 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Matthew Ng606dd802017-06-05 14:06:32 -07004490 mWindowManager.setDockedStackCreateState(
Matthew Ngbf155872017-10-27 15:24:39 -07004491 activityOptions.getSplitScreenCreateMode(), null /* initialBounds */);
Jorim Jaggi3c800a42016-04-15 19:44:50 -07004492
Matthew Ng606dd802017-06-05 14:06:32 -07004493 // Defer updating the stack in which recents is until the app transition is done, to
4494 // not run into issues where we still need to draw the task in recents but the
4495 // docked stack is already created.
Wale Ogunwale68278562017-09-23 17:13:55 -07004496 deferUpdateBounds(ACTIVITY_TYPE_RECENTS);
Matthew Ng606dd802017-06-05 14:06:32 -07004497 mWindowManager.prepareAppTransition(TRANSIT_DOCK_TASK_FROM_RECENTS, false);
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004498 }
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004499
Matthew Ng606dd802017-06-05 14:06:32 -07004500 task = anyTaskForIdLocked(taskId, MATCH_TASK_IN_STACKS_OR_RECENT_TASKS_AND_RESTORE,
Wale Ogunwaleab5de372017-10-18 06:46:31 -07004501 activityOptions, ON_TOP);
Matthew Ng606dd802017-06-05 14:06:32 -07004502 if (task == null) {
Wale Ogunwale68278562017-09-23 17:13:55 -07004503 continueUpdateBounds(ACTIVITY_TYPE_RECENTS);
Matthew Ng606dd802017-06-05 14:06:32 -07004504 mWindowManager.executeAppTransition();
4505 throw new IllegalArgumentException(
Wale Ogunwaleab5de372017-10-18 06:46:31 -07004506 "startActivityFromRecents: Task " + taskId + " not found.");
Matthew Ng606dd802017-06-05 14:06:32 -07004507 }
4508
Wale Ogunwaleabc44d02017-11-08 08:58:03 -08004509 if (windowingMode != WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
4510 // We always want to return to the home activity instead of the recents activity
4511 // from whatever is started from the recents activity, so move the home stack
4512 // forward.
4513 moveHomeStackToFront("startActivityFromRecents");
4514 }
Wale Ogunwale66e16852017-10-19 13:35:52 -07004515
Matthew Ng606dd802017-06-05 14:06:32 -07004516 // If the user must confirm credentials (e.g. when first launching a work app and the
4517 // Work Challenge is present) let startActivityInPackage handle the intercepting.
4518 if (!mService.mUserController.shouldConfirmCredentials(task.userId)
4519 && task.getRootActivity() != null) {
Bryce Lee28d80422017-07-21 13:25:13 -07004520 final ActivityRecord targetActivity = task.getTopActivity();
4521
4522 mService.mActivityStarter.sendPowerHintForLaunchStartIfNeeded(true /* forceSend */,
4523 targetActivity);
Matthew Ng606dd802017-06-05 14:06:32 -07004524 mActivityMetricsLogger.notifyActivityLaunching();
Jorim Jaggi172e99f2017-10-20 14:33:18 +02004525 try {
4526 mService.moveTaskToFrontLocked(task.taskId, 0, bOptions,
4527 true /* fromRecents */);
4528 } finally {
4529 mActivityMetricsLogger.notifyActivityLaunched(START_TASK_TO_FRONT,
4530 targetActivity);
4531 }
Matthew Ng606dd802017-06-05 14:06:32 -07004532
4533 // If we are launching the task in the docked stack, put it into resizing mode so
4534 // the window renders full-screen with the background filling the void. Also only
4535 // call this at the end to make sure that tasks exists on the window manager side.
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004536 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Matthew Ng606dd802017-06-05 14:06:32 -07004537 setResizingDuringAnimation(task);
4538 }
4539
4540 mService.mActivityStarter.postStartActivityProcessing(task.getTopActivity(),
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07004541 ActivityManager.START_TASK_TO_FRONT, task.getStack());
Matthew Ng606dd802017-06-05 14:06:32 -07004542 return ActivityManager.START_TASK_TO_FRONT;
4543 }
4544 callingUid = task.mCallingUid;
4545 callingPackage = task.mCallingPackage;
4546 intent = task.intent;
4547 intent.addFlags(Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY);
4548 userId = task.userId;
4549 int result = mService.startActivityInPackage(callingUid, callingPackage, intent, null,
Andrii Kulian94e82d9b02017-07-13 15:33:06 -07004550 null, null, 0, 0, bOptions, userId, task, "startActivityFromRecents");
Wale Ogunwale0568aed2017-09-08 13:29:37 -07004551 if (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -08004552 setResizingDuringAnimation(task);
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004553 }
Matthew Ng606dd802017-06-05 14:06:32 -07004554 return result;
4555 } finally {
4556 mWindowManager.continueSurfaceLayout();
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004557 }
Jorim Jaggi0b46f3c2016-03-14 12:21:37 +01004558 }
Amith Yamasanie8222e52016-04-08 15:28:47 -07004559
4560 /**
4561 * @return a list of activities which are the top ones in each visible stack. The first
4562 * entry will be the focused activity.
4563 */
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004564 List<IBinder> getTopVisibleActivities() {
4565 final ArrayList<IBinder> topActivityTokens = new ArrayList<>();
4566 // Traverse all displays.
Robert Carr22374c02017-02-21 13:01:47 -08004567 for (int i = mActivityDisplays.size() - 1; i >= 0; i--) {
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004568 final ActivityDisplay display = mActivityDisplays.valueAt(i);
4569 // Traverse all stacks on a display.
Wale Ogunwalea0f5b5e2017-10-11 09:37:23 -07004570 for (int j = display.getChildCount() - 1; j >= 0; --j) {
4571 final ActivityStack stack = display.getChildAt(j);
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004572 // Get top activity from a visible stack and add it to the list.
Wale Ogunwale9dcf9462017-09-19 15:13:01 -07004573 if (stack.shouldBeVisible(null /* starting */)) {
Wale Ogunwale30e441d2017-11-09 08:28:45 -08004574 final ActivityRecord top = stack.getTopActivity();
Andrii Kulian0864bbb2017-02-16 15:45:58 -08004575 if (top != null) {
4576 if (stack == mFocusedStack) {
4577 topActivityTokens.add(0, top.appToken);
4578 } else {
4579 topActivityTokens.add(top.appToken);
4580 }
Amith Yamasanie8222e52016-04-08 15:28:47 -07004581 }
4582 }
4583 }
4584 }
4585 return topActivityTokens;
4586 }
Bryce Lee4a194382017-04-04 14:32:48 -07004587
4588 /**
4589 * Internal container to store a match qualifier alongside a WaitResult.
4590 */
4591 static class WaitInfo {
4592 private final ComponentName mTargetComponent;
4593 private final WaitResult mResult;
4594
4595 public WaitInfo(ComponentName targetComponent, WaitResult result) {
4596 this.mTargetComponent = targetComponent;
4597 this.mResult = result;
4598 }
4599
Wale Ogunwale3270f172017-04-26 07:29:42 -07004600 public boolean matches(ComponentName targetComponent) {
4601 return mTargetComponent == null || mTargetComponent.equals(targetComponent);
Bryce Lee4a194382017-04-04 14:32:48 -07004602 }
4603
4604 public WaitResult getResult() {
4605 return mResult;
4606 }
4607
4608 public ComponentName getComponent() {
4609 return mTargetComponent;
4610 }
4611
4612 public void dump(PrintWriter pw, String prefix) {
4613 pw.println(prefix + "WaitInfo:");
4614 pw.println(prefix + " mTargetComponent=" + mTargetComponent);
4615 pw.println(prefix + " mResult=");
4616 mResult.dump(pw, prefix);
4617 }
4618 }
David Stevens9440dc82017-03-16 19:00:20 -07004619
4620 private final class SleepTokenImpl extends SleepToken {
4621 private final String mTag;
4622 private final long mAcquireTime;
4623 private final int mDisplayId;
4624
4625 public SleepTokenImpl(String tag, int displayId) {
4626 mTag = tag;
4627 mDisplayId = displayId;
4628 mAcquireTime = SystemClock.uptimeMillis();
4629 }
4630
4631 @Override
4632 public void release() {
4633 synchronized (mService) {
4634 removeSleepTokenLocked(this);
4635 }
4636 }
4637
4638 @Override
4639 public String toString() {
4640 return "{\"" + mTag + "\", display " + mDisplayId
4641 + ", acquire at " + TimeUtils.formatUptime(mAcquireTime) + "}";
4642 }
4643 }
4644
Craig Mautner27084302013-03-25 08:05:25 -07004645}