blob: e4a5980b913e75a1d8e9a3e7269c689ea70bee1e [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080019import static android.app.ActivityManager.RESIZE_MODE_FORCED;
Winson Chung74666102017-02-22 17:49:24 -080020import static android.app.ActivityManager.RESIZE_MODE_SYSTEM;
Jorim Jaggi0a932142016-02-01 17:42:25 -080021import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070022import static android.app.WindowConfiguration.ACTIVITY_TYPE_ASSISTANT;
23import static android.app.WindowConfiguration.ACTIVITY_TYPE_HOME;
24import static android.app.WindowConfiguration.ACTIVITY_TYPE_RECENTS;
25import static android.app.WindowConfiguration.ACTIVITY_TYPE_STANDARD;
26import static android.app.WindowConfiguration.ACTIVITY_TYPE_UNDEFINED;
Wale Ogunwale04a05ac2017-09-17 21:35:02 -070027import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
28import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
29import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
30import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwale44f036f2017-09-29 05:09:09 -070031import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
Jorim Jaggi0a932142016-02-01 17:42:25 -080032import static android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT;
33import static android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070034import static android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY;
Jorim Jaggi0a932142016-02-01 17:42:25 -080035import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_ALWAYS;
36import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_DEFAULT;
37import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED;
38import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_NEVER;
skuhne@google.com322347b2016-12-02 12:54:03 -080039import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
40import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
41import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Wale Ogunwaled829d362016-02-10 19:24:49 -080042import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZEABLE;
Wale Ogunwale625ed0c2016-10-18 08:50:31 -070043import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE;
Winson Chungd3395382016-12-13 11:49:09 -080044import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE_AND_PIPABLE_DEPRECATED;
Wale Ogunwale625ed0c2016-10-18 08:50:31 -070045import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080046import static android.os.Trace.TRACE_TAG_ACTIVITY_MANAGER;
Suprabh Shukla7745c142016-03-07 18:21:10 -080047import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
Andrii Kulian036e3ad2017-04-19 10:55:10 -070048import static android.view.Display.DEFAULT_DISPLAY;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070049
Jorim Jaggi0a932142016-02-01 17:42:25 -080050import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ADD_REMOVE;
51import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_LOCKTASK;
52import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RECENTS;
53import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
54import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_ADD_REMOVE;
55import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_LOCKTASK;
56import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RECENTS;
57import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
58import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
59import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Wale Ogunwale3b232392016-05-13 15:37:13 -070060import static com.android.server.am.ActivityRecord.STARTING_WINDOW_SHOWN;
Wale Ogunwalec5cc3012017-01-13 13:26:16 -080061import static com.android.server.am.ActivityStack.REMOVE_TASK_MODE_MOVING;
Wale Ogunwale56d8d162017-05-30 11:12:20 -070062import static com.android.server.am.ActivityStack.REMOVE_TASK_MODE_MOVING_TO_TOP;
Winson Chung6954fc92017-03-24 16:22:12 -070063import static com.android.server.am.ActivityStackSupervisor.PAUSE_IMMEDIATELY;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080064import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Steven Timotius4346f0a2017-09-12 11:07:21 -070065import static com.android.server.am.proto.TaskRecordProto.ACTIVITIES;
66import static com.android.server.am.proto.TaskRecordProto.BOUNDS;
67import static com.android.server.am.proto.TaskRecordProto.CONFIGURATION_CONTAINER;
68import static com.android.server.am.proto.TaskRecordProto.FULLSCREEN;
69import static com.android.server.am.proto.TaskRecordProto.ID;
70import static com.android.server.am.proto.TaskRecordProto.LAST_NON_FULLSCREEN_BOUNDS;
71import static com.android.server.am.proto.TaskRecordProto.MIN_HEIGHT;
72import static com.android.server.am.proto.TaskRecordProto.MIN_WIDTH;
73import static com.android.server.am.proto.TaskRecordProto.ORIG_ACTIVITY;
74import static com.android.server.am.proto.TaskRecordProto.REAL_ACTIVITY;
75import static com.android.server.am.proto.TaskRecordProto.RESIZE_MODE;
76import static com.android.server.am.proto.TaskRecordProto.RETURN_TO_TYPE;
77import static com.android.server.am.proto.TaskRecordProto.STACK_ID;
78import static com.android.server.am.proto.TaskRecordProto.ACTIVITY_TYPE;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -070079
Winson Chung74666102017-02-22 17:49:24 -080080import static java.lang.Integer.MAX_VALUE;
81
Jorim Jaggie7d2b852017-08-28 17:55:15 +020082import android.annotation.IntDef;
83import android.annotation.Nullable;
84import android.app.Activity;
85import android.app.ActivityManager;
86import android.app.ActivityManager.StackId;
87import android.app.ActivityManager.TaskDescription;
88import android.app.ActivityManager.TaskSnapshot;
89import android.app.ActivityOptions;
90import android.app.AppGlobals;
91import android.app.IActivityManager;
92import android.content.ComponentName;
93import android.content.Intent;
94import android.content.pm.ActivityInfo;
95import android.content.pm.ApplicationInfo;
96import android.content.pm.IPackageManager;
97import android.content.pm.PackageManager;
98import android.content.res.Configuration;
99import android.graphics.Rect;
100import android.os.Debug;
101import android.os.RemoteException;
Winson Chungfb44d212017-10-04 11:39:10 -0700102import android.os.SystemClock;
Jorim Jaggie7d2b852017-08-28 17:55:15 +0200103import android.os.Trace;
104import android.os.UserHandle;
105import android.provider.Settings;
106import android.service.voice.IVoiceInteractionSession;
107import android.util.DisplayMetrics;
108import android.util.Slog;
Steven Timotius4346f0a2017-09-12 11:07:21 -0700109import android.util.proto.ProtoOutputStream;
Jorim Jaggie7d2b852017-08-28 17:55:15 +0200110
111import com.android.internal.annotations.VisibleForTesting;
112import com.android.internal.app.IVoiceInteractor;
113import com.android.internal.util.XmlUtils;
114import com.android.server.wm.AppWindowContainerController;
115import com.android.server.wm.ConfigurationContainer;
116import com.android.server.wm.StackWindowController;
117import com.android.server.wm.TaskWindowContainerController;
118import com.android.server.wm.TaskWindowContainerListener;
119import com.android.server.wm.WindowManagerService;
120
121import org.xmlpull.v1.XmlPullParser;
122import org.xmlpull.v1.XmlPullParserException;
123import org.xmlpull.v1.XmlSerializer;
124
125import java.io.IOException;
126import java.io.PrintWriter;
127import java.lang.annotation.Retention;
128import java.lang.annotation.RetentionPolicy;
129import java.util.ArrayList;
130import java.util.Objects;
131
Benjamin Franza83859f2017-07-03 16:34:14 +0100132class TaskRecord extends ConfigurationContainer implements TaskWindowContainerListener {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800133 private static final String TAG = TAG_WITH_CLASS_NAME ? "TaskRecord" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700134 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700135 private static final String TAG_RECENTS = TAG + POSTFIX_RECENTS;
Craig Mautnere0570202015-05-13 13:06:11 -0700136 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700137 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800138
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700139 private static final String ATTR_TASKID = "task_id";
Craig Mautner21d24a22014-04-23 11:45:37 -0700140 private static final String TAG_INTENT = "intent";
141 private static final String TAG_AFFINITYINTENT = "affinity_intent";
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700142 private static final String ATTR_REALACTIVITY = "real_activity";
143 private static final String ATTR_REALACTIVITY_SUSPENDED = "real_activity_suspended";
Craig Mautner21d24a22014-04-23 11:45:37 -0700144 private static final String ATTR_ORIGACTIVITY = "orig_activity";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700145 private static final String TAG_ACTIVITY = "activity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700146 private static final String ATTR_AFFINITY = "affinity";
Dianne Hackborn79228822014-09-16 11:11:23 -0700147 private static final String ATTR_ROOT_AFFINITY = "root_affinity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700148 private static final String ATTR_ROOTHASRESET = "root_has_reset";
Dianne Hackborn13420f22014-07-18 15:43:56 -0700149 private static final String ATTR_AUTOREMOVERECENTS = "auto_remove_recents";
Craig Mautner21d24a22014-04-23 11:45:37 -0700150 private static final String ATTR_ASKEDCOMPATMODE = "asked_compat_mode";
151 private static final String ATTR_USERID = "user_id";
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800152 private static final String ATTR_USER_SETUP_COMPLETE = "user_setup_complete";
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700153 private static final String ATTR_EFFECTIVE_UID = "effective_uid";
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700154 @Deprecated
Craig Mautner21d24a22014-04-23 11:45:37 -0700155 private static final String ATTR_TASKTYPE = "task_type";
Craig Mautner21d24a22014-04-23 11:45:37 -0700156 private static final String ATTR_LASTDESCRIPTION = "last_description";
157 private static final String ATTR_LASTTIMEMOVED = "last_time_moved";
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700158 private static final String ATTR_NEVERRELINQUISH = "never_relinquish_identity";
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700159 private static final String ATTR_TASK_AFFILIATION = "task_affiliation";
Craig Mautnera228ae92014-07-09 05:44:55 -0700160 private static final String ATTR_PREV_AFFILIATION = "prev_affiliation";
161 private static final String ATTR_NEXT_AFFILIATION = "next_affiliation";
Winson Chungec396d62014-08-06 17:08:00 -0700162 private static final String ATTR_TASK_AFFILIATION_COLOR = "task_affiliation_color";
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700163 private static final String ATTR_CALLING_UID = "calling_uid";
164 private static final String ATTR_CALLING_PACKAGE = "calling_package";
Winson Chungd3395382016-12-13 11:49:09 -0800165 private static final String ATTR_SUPPORTS_PICTURE_IN_PICTURE = "supports_picture_in_picture";
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800166 private static final String ATTR_RESIZE_MODE = "resize_mode";
Wale Ogunwale706ed792015-08-02 10:29:44 -0700167 private static final String ATTR_NON_FULLSCREEN_BOUNDS = "non_fullscreen_bounds";
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700168 private static final String ATTR_MIN_WIDTH = "min_width";
169 private static final String ATTR_MIN_HEIGHT = "min_height";
Wale Ogunwale625ed0c2016-10-18 08:50:31 -0700170 private static final String ATTR_PERSIST_TASK_VERSION = "persist_task_version";
Andrii Kulian18d75122016-03-27 20:20:28 -0700171
Wale Ogunwale625ed0c2016-10-18 08:50:31 -0700172 // Current version of the task record we persist. Used to check if we need to run any upgrade
173 // code.
174 private static final int PERSIST_TASK_VERSION = 1;
Craig Mautner21d24a22014-04-23 11:45:37 -0700175 private static final String TASK_THUMBNAIL_SUFFIX = "_task_thumbnail";
176
Wale Ogunwale18795a22014-12-03 11:38:33 -0800177 static final int INVALID_TASK_ID = -1;
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700178 private static final int INVALID_MIN_SIZE = -1;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800179
Winson Chung74666102017-02-22 17:49:24 -0800180 /**
181 * The modes to control how the stack is moved to the front when calling
182 * {@link TaskRecord#reparent}.
183 */
184 @Retention(RetentionPolicy.SOURCE)
185 @IntDef({
186 REPARENT_MOVE_STACK_TO_FRONT,
187 REPARENT_KEEP_STACK_AT_FRONT,
188 REPARENT_LEAVE_STACK_IN_PLACE
189 })
190 public @interface ReparentMoveStackMode {}
191 // Moves the stack to the front if it was not at the front
192 public static final int REPARENT_MOVE_STACK_TO_FRONT = 0;
193 // Only moves the stack to the front if it was focused or front most already
194 public static final int REPARENT_KEEP_STACK_AT_FRONT = 1;
195 // Do not move the stack as a part of reparenting
196 public static final int REPARENT_LEAVE_STACK_IN_PLACE = 2;
197
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800198 final int taskId; // Unique identifier for this task.
Dianne Hackborn79228822014-09-16 11:11:23 -0700199 String affinity; // The affinity name for this task, or null; may change identity.
200 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
Dianne Hackborn91097de2014-04-04 18:02:06 -0700201 final IVoiceInteractionSession voiceSession; // Voice interaction session driving task
202 final IVoiceInteractor voiceInteractor; // Associated interactor to provide to app
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800203 Intent intent; // The original intent that started the task.
204 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700205 int effectiveUid; // The current effective uid of the identity of this task.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800206 ComponentName origActivity; // The non-alias activity component of the intent.
207 ComponentName realActivity; // The actual activity component that started the task.
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +0000208 boolean realActivitySuspended; // True if the actual activity component that started the
209 // task is suspended.
Dianne Hackborn852975d2014-08-22 17:42:43 -0700210 boolean inRecents; // Actually in the recents list?
Winson Chungfb44d212017-10-04 11:39:10 -0700211 long lastActiveTime; // Last time this task was active in the current device session,
212 // including sleep. This time is initialized to the elapsed time when
213 // restored from disk.
Dianne Hackborn852975d2014-08-22 17:42:43 -0700214 boolean isAvailable; // Is the activity available to be launched?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800215 boolean rootWasReset; // True if the intent at the root of the task had
216 // the FLAG_ACTIVITY_RESET_TASK_IF_NEEDED flag.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700217 boolean autoRemoveRecents; // If true, we should automatically remove the task from
218 // recents when activity finishes
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700219 boolean askedCompatMode;// Have asked the user about compat mode for this task.
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700220 boolean hasBeenVisible; // Set if any activities in the task have been visible to the user.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800221
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700222 String stringName; // caching of toString() result.
Dianne Hackborn9da2d402012-03-15 13:43:08 -0700223 int userId; // user for which this task was created
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800224 boolean mUserSetupComplete; // The user set-up is complete as of the last time the task activity
225 // was changed.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800226
227 int numFullscreen; // Number of fullscreen activities.
228
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800229 int mResizeMode; // The resize mode of this task and its activities.
230 // Based on the {@link ActivityInfo#resizeMode} of the root activity.
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800231 private boolean mSupportsPictureInPicture; // Whether or not this task and its activities
232 // support PiP. Based on the {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE} flag
233 // of the root activity.
Jorim Jaggi8202b2a2016-02-03 19:24:31 -0800234 boolean mTemporarilyUnresizable; // Separate flag from mResizeMode used to suppress resize
235 // changes on a temporary basis.
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700236
Craig Mautner15df08a2015-04-01 12:17:18 -0700237 /** Can't be put in lockTask mode. */
238 final static int LOCK_TASK_AUTH_DONT_LOCK = 0;
Benjamin Franz469dd582015-06-09 14:24:36 +0100239 /** Can enter app pinning with user approval. Can never start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700240 final static int LOCK_TASK_AUTH_PINNABLE = 1;
241 /** Starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing lockTask task. */
242 final static int LOCK_TASK_AUTH_LAUNCHABLE = 2;
Benjamin Franz469dd582015-06-09 14:24:36 +0100243 /** Can enter lockTask without user approval. Can start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700244 final static int LOCK_TASK_AUTH_WHITELISTED = 3;
Benjamin Franz469dd582015-06-09 14:24:36 +0100245 /** Priv-app that starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing
246 * lockTask task. */
247 final static int LOCK_TASK_AUTH_LAUNCHABLE_PRIV = 4;
Craig Mautner15df08a2015-04-01 12:17:18 -0700248 int mLockTaskAuth = LOCK_TASK_AUTH_PINNABLE;
249
250 int mLockTaskUid = -1; // The uid of the application that called startLockTask().
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800251
Winson Chung03a9bae2014-05-02 09:56:12 -0700252 // This represents the last resolved activity values for this task
253 // NOTE: This value needs to be persisted with each task
Craig Mautner648f69b2014-09-18 14:16:26 -0700254 TaskDescription lastTaskDescription = new TaskDescription();
Winson Chung03a9bae2014-05-02 09:56:12 -0700255
Craig Mautnerd2328952013-03-05 12:46:26 -0800256 /** List of all activities in the task arranged in history order */
Craig Mautner21d24a22014-04-23 11:45:37 -0700257 final ArrayList<ActivityRecord> mActivities;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800258
Andrii Kulian02b7a832016-10-06 23:11:56 -0700259 /** Current stack. Setter must always be used to update the value. */
260 private ActivityStack mStack;
Craig Mautnerd2328952013-03-05 12:46:26 -0800261
Craig Mautner21d24a22014-04-23 11:45:37 -0700262 /** Takes on same value as first root activity */
263 boolean isPersistable = false;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700264 int maxRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700265
266 /** Only used for persistable tasks, otherwise 0. The last time this task was moved. Used for
267 * determining the order when restoring. Sign indicates whether last task movement was to front
268 * (positive) or back (negative). Absolute value indicates time. */
269 long mLastTimeMoved = System.currentTimeMillis();
270
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700271 /** Indication of what to run next when task exits. */
272 // TODO: Shouldn't be needed if we have things in visual order. I.e. we stop using stacks or
273 // have a stack per standard application type...
Wale Ogunwaleeea34ee92017-08-31 20:07:45 -0700274 /*@WindowConfiguration.ActivityType*/
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700275 private int mTaskToReturnTo = ACTIVITY_TYPE_STANDARD;
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700276
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700277 /** If original intent did not allow relinquishing task identity, save that information */
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700278 private boolean mNeverRelinquishIdentity = true;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700279
Craig Mautner362449a2014-06-20 14:04:39 -0700280 // Used in the unique case where we are clearing the task in order to reuse it. In that case we
281 // do not want to delete the stack when the task goes empty.
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800282 private boolean mReuseTask = false;
Craig Mautner362449a2014-06-20 14:04:39 -0700283
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700284 private final String mFilename;
285 CharSequence lastDescription; // Last description captured for this item.
286
Craig Mautnera228ae92014-07-09 05:44:55 -0700287 int mAffiliatedTaskId; // taskId of parent affiliation or self if no parent.
Winson Chungec396d62014-08-06 17:08:00 -0700288 int mAffiliatedTaskColor; // color of the parent task affiliation.
Craig Mautnera228ae92014-07-09 05:44:55 -0700289 TaskRecord mPrevAffiliate; // previous task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800290 int mPrevAffiliateTaskId = INVALID_TASK_ID; // previous id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700291 TaskRecord mNextAffiliate; // next task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800292 int mNextAffiliateTaskId = INVALID_TASK_ID; // next id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700293
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700294 // For relaunching the task from recents as though it was launched by the original launcher.
295 int mCallingUid;
296 String mCallingPackage;
297
Craig Mautner21d24a22014-04-23 11:45:37 -0700298 final ActivityManagerService mService;
299
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700300 // Whether or not this task covers the entire screen; by default tasks are fullscreen.
301 boolean mFullscreen = true;
302
303 // Bounds of the Task. null for fullscreen tasks.
304 Rect mBounds = null;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -0800305 private final Rect mTmpStableBounds = new Rect();
306 private final Rect mTmpNonDecorBounds = new Rect();
Wale Ogunwale9a08f822016-02-17 19:03:58 -0800307 private final Rect mTmpRect = new Rect();
Jorim Jaggi0a932142016-02-01 17:42:25 -0800308
Wale Ogunwale706ed792015-08-02 10:29:44 -0700309 // Last non-fullscreen bounds the task was launched in or resized to.
310 // The information is persisted and used to determine the appropriate stack to launch the
311 // task into on restore.
312 Rect mLastNonFullscreenBounds = null;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700313 // Minimal width and height of this task when it's resizeable. -1 means it should use the
314 // default minimal width/height.
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700315 int mMinWidth;
316 int mMinHeight;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700317
Chong Zhangfdcc4d42015-10-14 16:50:12 -0700318 // Ranking (from top) of this task among all visible tasks. (-1 means it's not visible)
319 // This number will be assigned when we evaluate OOM scores for all visible tasks.
320 int mLayerRank = -1;
321
Andrii Kulian1779e612016-10-12 21:58:25 -0700322 /** Helper object used for updating override configuration. */
323 private Configuration mTmpConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700324
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800325 private TaskWindowContainerController mWindowContainerController;
326
Craig Mautner21d24a22014-04-23 11:45:37 -0700327 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700328 IVoiceInteractionSession _voiceSession, IVoiceInteractor _voiceInteractor) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700329 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700330 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
331 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800332 userId = UserHandle.getUserId(info.applicationInfo.uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333 taskId = _taskId;
Winson Chungfb44d212017-10-04 11:39:10 -0700334 lastActiveTime = SystemClock.elapsedRealtime();
Craig Mautnera228ae92014-07-09 05:44:55 -0700335 mAffiliatedTaskId = _taskId;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700336 voiceSession = _voiceSession;
337 voiceInteractor = _voiceInteractor;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700338 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800339 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700340 mCallingUid = info.applicationInfo.uid;
341 mCallingPackage = info.packageName;
Martijn Coenend4a69702014-06-30 11:12:17 -0700342 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700343 setMinDimensions(info);
Winson730bf062016-03-31 18:04:56 -0700344 touchActiveTime();
Yorke Leebd54c2a2016-10-25 13:49:23 -0700345 mService.mTaskChangeNotificationController.notifyTaskCreated(_taskId, realActivity);
Craig Mautner21d24a22014-04-23 11:45:37 -0700346 }
347
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700348 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Jorim Jaggie7d2b852017-08-28 17:55:15 +0200349 TaskDescription _taskDescription) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700350 mService = service;
351 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
352 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800353 userId = UserHandle.getUserId(info.applicationInfo.uid);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700354 taskId = _taskId;
Winson Chungfb44d212017-10-04 11:39:10 -0700355 lastActiveTime = SystemClock.elapsedRealtime();
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700356 mAffiliatedTaskId = _taskId;
357 voiceSession = null;
358 voiceInteractor = null;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700359 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800360 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700361 mCallingUid = info.applicationInfo.uid;
362 mCallingPackage = info.packageName;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700363 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700364 setMinDimensions(info);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700365
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700366 isPersistable = true;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700367 // Clamp to [1, max].
368 maxRecents = Math.min(Math.max(info.maxRecents, 1),
369 ActivityManager.getMaxAppRecentsLimitStatic());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700370
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700371 mTaskToReturnTo = ACTIVITY_TYPE_HOME;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700372 lastTaskDescription = _taskDescription;
Winson730bf062016-03-31 18:04:56 -0700373 touchActiveTime();
Yorke Leebd54c2a2016-10-25 13:49:23 -0700374 mService.mTaskChangeNotificationController.notifyTaskCreated(_taskId, realActivity);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700375 }
376
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800377 private TaskRecord(ActivityManagerService service, int _taskId, Intent _intent,
378 Intent _affinityIntent, String _affinity, String _rootAffinity,
379 ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700380 boolean _autoRemoveRecents, boolean _askedCompatMode, int _userId,
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800381 int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities,
Winson Chungfb44d212017-10-04 11:39:10 -0700382 long lastTimeMoved, boolean neverRelinquishIdentity,
383 TaskDescription _lastTaskDescription, int taskAffiliation, int prevTaskId,
384 int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage,
Charles He2bf28322017-10-12 22:24:49 +0100385 int resizeMode, boolean supportsPictureInPicture, boolean _realActivitySuspended,
386 boolean userSetupComplete, int minWidth, int minHeight) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700387 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700388 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
389 TaskPersister.IMAGE_EXTENSION;
Craig Mautner21d24a22014-04-23 11:45:37 -0700390 taskId = _taskId;
391 intent = _intent;
392 affinityIntent = _affinityIntent;
393 affinity = _affinity;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800394 rootAffinity = _rootAffinity;
Craig Mautner21d24a22014-04-23 11:45:37 -0700395 voiceSession = null;
396 voiceInteractor = null;
397 realActivity = _realActivity;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800398 realActivitySuspended = _realActivitySuspended;
Craig Mautner21d24a22014-04-23 11:45:37 -0700399 origActivity = _origActivity;
400 rootWasReset = _rootWasReset;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700401 isAvailable = true;
Dianne Hackborn13420f22014-07-18 15:43:56 -0700402 autoRemoveRecents = _autoRemoveRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700403 askedCompatMode = _askedCompatMode;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700404 mTaskToReturnTo = ACTIVITY_TYPE_HOME;
Craig Mautner21d24a22014-04-23 11:45:37 -0700405 userId = _userId;
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800406 mUserSetupComplete = userSetupComplete;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700407 effectiveUid = _effectiveUid;
Winson Chungfb44d212017-10-04 11:39:10 -0700408 lastActiveTime = SystemClock.elapsedRealtime();
Craig Mautner21d24a22014-04-23 11:45:37 -0700409 lastDescription = _lastDescription;
410 mActivities = activities;
411 mLastTimeMoved = lastTimeMoved;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700412 mNeverRelinquishIdentity = neverRelinquishIdentity;
Winson Chung2cb86c72014-06-25 12:03:30 -0700413 lastTaskDescription = _lastTaskDescription;
Craig Mautnera228ae92014-07-09 05:44:55 -0700414 mAffiliatedTaskId = taskAffiliation;
Winson Chungec396d62014-08-06 17:08:00 -0700415 mAffiliatedTaskColor = taskAffiliationColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700416 mPrevAffiliateTaskId = prevTaskId;
417 mNextAffiliateTaskId = nextTaskId;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700418 mCallingUid = callingUid;
419 mCallingPackage = callingPackage;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800420 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800421 mSupportsPictureInPicture = supportsPictureInPicture;
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700422 mMinWidth = minWidth;
423 mMinHeight = minHeight;
Yorke Leebd54c2a2016-10-25 13:49:23 -0700424 mService.mTaskChangeNotificationController.notifyTaskCreated(_taskId, realActivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800425 }
426
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800427 TaskWindowContainerController getWindowContainerController() {
428 return mWindowContainerController;
429 }
430
431 void createWindowContainer(boolean onTop, boolean showForAllUsers) {
432 if (mWindowContainerController != null) {
433 throw new IllegalArgumentException("Window container=" + mWindowContainerController
434 + " already created for task=" + this);
435 }
436
437 final Rect bounds = updateOverrideConfigurationFromLaunchBounds();
Bryce Lee04ab3462017-04-10 15:06:33 -0700438 setWindowContainerController(new TaskWindowContainerController(taskId, this,
Wale Ogunwale034a8ec2017-09-02 17:14:40 -0700439 getStack().getWindowContainerController(), userId, bounds,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700440 mResizeMode, mSupportsPictureInPicture, onTop,
441 showForAllUsers, lastTaskDescription));
Bryce Lee04ab3462017-04-10 15:06:33 -0700442 }
443
444 /**
445 * Should only be invoked from {@link #createWindowContainer(boolean, boolean)}.
446 */
447 @VisibleForTesting
448 protected void setWindowContainerController(TaskWindowContainerController controller) {
449 if (mWindowContainerController != null) {
450 throw new IllegalArgumentException("Window container=" + mWindowContainerController
451 + " already created for task=" + this);
452 }
453
454 mWindowContainerController = controller;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800455 }
456
457 void removeWindowContainer() {
Benjamin Franza83859f2017-07-03 16:34:14 +0100458 mService.mLockTaskController.removeLockedTask(this);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800459 mWindowContainerController.removeContainer();
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700460 if (!getWindowConfiguration().persistTaskBounds()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800461 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
462 // default configuration the next time it launches.
463 updateOverrideConfiguration(null);
464 }
465 mService.mTaskChangeNotificationController.notifyTaskRemoved(taskId);
466 mWindowContainerController = null;
467 }
468
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100469 @Override
470 public void onSnapshotChanged(TaskSnapshot snapshot) {
471 mService.mTaskChangeNotificationController.notifyTaskSnapshotChanged(taskId, snapshot);
472 }
473
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800474 void setResizeMode(int resizeMode) {
475 if (mResizeMode == resizeMode) {
476 return;
477 }
478 mResizeMode = resizeMode;
479 mWindowContainerController.setResizeable(resizeMode);
480 mService.mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
481 mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
482 }
483
484 void setTaskDockedResizing(boolean resizing) {
485 mWindowContainerController.setTaskDockedResizing(resizing);
486 }
487
Wale Ogunwale1666e312016-12-16 11:27:18 -0800488 // TODO: Consolidate this with the resize() method below.
489 @Override
490 public void requestResize(Rect bounds, int resizeMode) {
491 mService.resizeTask(taskId, bounds, resizeMode);
492 }
493
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800494 boolean resize(Rect bounds, int resizeMode, boolean preserveWindow, boolean deferResume) {
495 if (!isResizeable()) {
496 Slog.w(TAG, "resizeTask: task " + this + " not resizeable.");
497 return true;
498 }
499
500 // If this is a forced resize, let it go through even if the bounds is not changing,
501 // as we might need a relayout due to surface size change (to/from fullscreen).
502 final boolean forced = (resizeMode & RESIZE_MODE_FORCED) != 0;
503 if (Objects.equals(mBounds, bounds) && !forced) {
504 // Nothing to do here...
505 return true;
506 }
507 bounds = validateBounds(bounds);
508
509 if (mWindowContainerController == null) {
510 // Task doesn't exist in window manager yet (e.g. was restored from recents).
511 // All we can do for now is update the bounds so it can be used when the task is
512 // added to window manager.
513 updateOverrideConfiguration(bounds);
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700514 if (!inFreeformWindowingMode()) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800515 // re-restore the task so it can have the proper stack association.
Wale Ogunwale0568aed2017-09-08 13:29:37 -0700516 mService.mStackSupervisor.restoreRecentTaskLocked(this, null);
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800517 }
518 return true;
519 }
520
521 if (!canResizeToBounds(bounds)) {
522 throw new IllegalArgumentException("resizeTask: Can not resize task=" + this
523 + " to bounds=" + bounds + " resizeMode=" + mResizeMode);
524 }
525
526 // Do not move the task to another stack here.
527 // This method assumes that the task is already placed in the right stack.
528 // we do not mess with that decision and we only do the resize!
529
530 Trace.traceBegin(TRACE_TAG_ACTIVITY_MANAGER, "am.resizeTask_" + taskId);
531
532 final boolean updatedConfig = updateOverrideConfiguration(bounds);
533 // This variable holds information whether the configuration didn't change in a significant
534 // way and the activity was kept the way it was. If it's false, it means the activity had
535 // to be relaunched due to configuration change.
536 boolean kept = true;
537 if (updatedConfig) {
538 final ActivityRecord r = topRunningActivityLocked();
Wale Ogunwaleea3d3fd2017-05-01 07:41:08 -0700539 if (r != null && !deferResume) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800540 kept = r.ensureActivityConfigurationLocked(0 /* globalChanges */, preserveWindow);
Wale Ogunwaleea3d3fd2017-05-01 07:41:08 -0700541 mService.mStackSupervisor.ensureActivitiesVisibleLocked(r, 0, !PRESERVE_WINDOWS);
542 if (!kept) {
543 mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800544 }
545 }
546 }
547 mWindowContainerController.resize(mBounds, getOverrideConfiguration(), kept, forced);
548
549 Trace.traceEnd(TRACE_TAG_ACTIVITY_MANAGER);
550 return kept;
551 }
552
553 // TODO: Investigate combining with the resize() method above.
554 void resizeWindowContainer() {
555 mWindowContainerController.resize(mBounds, getOverrideConfiguration(), false /* relayout */,
556 false /* forced */);
557 }
558
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800559 void getWindowContainerBounds(Rect bounds) {
560 mWindowContainerController.getBounds(bounds);
561 }
562
Winson Chung74666102017-02-22 17:49:24 -0800563 /**
564 * Convenience method to reparent a task to the top or bottom position of the stack.
565 */
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700566 boolean reparent(ActivityStack preferredStack, boolean toTop,
567 @ReparentMoveStackMode int moveStackMode, boolean animate, boolean deferResume,
568 String reason) {
569 return reparent(preferredStack, toTop ? MAX_VALUE : 0, moveStackMode, animate, deferResume,
570 true /* schedulePictureInPictureModeChange */, reason);
Winson Chung5af42fc2017-03-24 17:11:33 -0700571 }
572
573 /**
574 * Convenience method to reparent a task to the top or bottom position of the stack, with
575 * an option to skip scheduling the picture-in-picture mode change.
576 */
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700577 boolean reparent(ActivityStack preferredStack, boolean toTop,
578 @ReparentMoveStackMode int moveStackMode, boolean animate, boolean deferResume,
579 boolean schedulePictureInPictureModeChange, String reason) {
580 return reparent(preferredStack, toTop ? MAX_VALUE : 0, moveStackMode, animate,
Winson Chung5af42fc2017-03-24 17:11:33 -0700581 deferResume, schedulePictureInPictureModeChange, reason);
582 }
583
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700584 /** Convenience method to reparent a task to a specific position of the stack. */
585 boolean reparent(ActivityStack preferredStack, int position,
586 @ReparentMoveStackMode int moveStackMode, boolean animate, boolean deferResume,
587 String reason) {
588 return reparent(preferredStack, position, moveStackMode, animate, deferResume,
Winson Chung5af42fc2017-03-24 17:11:33 -0700589 true /* schedulePictureInPictureModeChange */, reason);
Winson Chung74666102017-02-22 17:49:24 -0800590 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800591
Winson Chung74666102017-02-22 17:49:24 -0800592 /**
593 * Reparents the task into a preferred stack, creating it if necessary.
594 *
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700595 * @param preferredStack the target stack to move this task
Winson Chung74666102017-02-22 17:49:24 -0800596 * @param position the position to place this task in the new stack
597 * @param animate whether or not we should wait for the new window created as a part of the
Winson Chung5af42fc2017-03-24 17:11:33 -0700598 * reparenting to be drawn and animated in
Winson Chung74666102017-02-22 17:49:24 -0800599 * @param moveStackMode whether or not to move the stack to the front always, only if it was
Winson Chung5af42fc2017-03-24 17:11:33 -0700600 * previously focused & in front, or never
Winson Chung74666102017-02-22 17:49:24 -0800601 * @param deferResume whether or not to update the visibility of other tasks and stacks that may
Winson Chung5af42fc2017-03-24 17:11:33 -0700602 * have changed as a result of this reparenting
603 * @param schedulePictureInPictureModeChange specifies whether or not to schedule the PiP mode
604 * change. Callers may set this to false if they are explicitly scheduling PiP mode
605 * changes themselves, like during the PiP animation
Winson Chung74666102017-02-22 17:49:24 -0800606 * @param reason the caller of this reparenting
Winson Chung5af42fc2017-03-24 17:11:33 -0700607 * @return whether the task was reparented
Winson Chung74666102017-02-22 17:49:24 -0800608 */
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700609 // TODO: Inspect all call sites and change to just changing windowing mode of the stack vs.
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700610 // re-parenting the task. Can only be done when we are no longer using static stack Ids.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700611 boolean reparent(ActivityStack preferredStack, int position,
612 @ReparentMoveStackMode int moveStackMode, boolean animate, boolean deferResume,
613 boolean schedulePictureInPictureModeChange, String reason) {
Winson Chung74666102017-02-22 17:49:24 -0800614 final ActivityStackSupervisor supervisor = mService.mStackSupervisor;
615 final WindowManagerService windowManager = mService.mWindowManager;
616 final ActivityStack sourceStack = getStack();
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700617 final ActivityStack toStack = supervisor.getReparentTargetStack(this, preferredStack,
Winson Chung74666102017-02-22 17:49:24 -0800618 position == MAX_VALUE);
619 if (toStack == sourceStack) {
620 return false;
621 }
622
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700623 final int toStackWindowingMode = toStack.getWindowingMode();
Winson Chung74666102017-02-22 17:49:24 -0800624 final ActivityRecord topActivity = getTopActivity();
625
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700626 final boolean mightReplaceWindow =
627 replaceWindowsOnTaskMove(getWindowingMode(), toStackWindowingMode)
628 && topActivity != null;
Winson Chung74666102017-02-22 17:49:24 -0800629 if (mightReplaceWindow) {
630 // We are about to relaunch the activity because its configuration changed due to
631 // being maximized, i.e. size change. The activity will first remove the old window
632 // and then add a new one. This call will tell window manager about this, so it can
633 // preserve the old window until the new one is drawn. This prevents having a gap
634 // between the removal and addition, in which no window is visible. We also want the
635 // entrance of the new window to be properly animated.
636 // Note here we always set the replacing window first, as the flags might be needed
637 // during the relaunch. If we end up not doing any relaunch, we clear the flags later.
638 windowManager.setWillReplaceWindow(topActivity.appToken, animate);
639 }
640
641 windowManager.deferSurfaceLayout();
642 boolean kept = true;
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800643 try {
Winson Chung74666102017-02-22 17:49:24 -0800644 final ActivityRecord r = topRunningActivityLocked();
Winson Chung95f8f0e2017-03-24 09:20:17 -0700645 final boolean wasFocused = r != null && supervisor.isFocusedStack(sourceStack)
Winson Chung74666102017-02-22 17:49:24 -0800646 && (topRunningActivityLocked() == r);
Winson Chung95f8f0e2017-03-24 09:20:17 -0700647 final boolean wasResumed = r != null && sourceStack.mResumedActivity == r;
648 final boolean wasPaused = r != null && sourceStack.mPausingActivity == r;
Winson Chung74666102017-02-22 17:49:24 -0800649
650 // In some cases the focused stack isn't the front stack. E.g. pinned stack.
651 // Whenever we are moving the top activity from the front stack we want to make sure to
652 // move the stack to the front.
Winson Chung95f8f0e2017-03-24 09:20:17 -0700653 final boolean wasFront = r != null && supervisor.isFrontStackOnDisplay(sourceStack)
Winson Chung74666102017-02-22 17:49:24 -0800654 && (sourceStack.topRunningActivityLocked() == r);
655
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800656 // Adjust the position for the new parent stack as needed.
Winson Chung74666102017-02-22 17:49:24 -0800657 position = toStack.getAdjustedPositionForTask(this, position, null /* starting */);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800658
659 // Must reparent first in window manager to avoid a situation where AM can delete the
660 // we are coming from in WM before we reparent because it became empty.
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700661 mWindowContainerController.reparent(toStack.getWindowContainerController(), position,
662 moveStackMode == REPARENT_MOVE_STACK_TO_FRONT);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800663
Wale Ogunwale56d8d162017-05-30 11:12:20 -0700664 final boolean moveStackToFront = moveStackMode == REPARENT_MOVE_STACK_TO_FRONT
665 || (moveStackMode == REPARENT_KEEP_STACK_AT_FRONT && (wasFocused || wasFront));
Winson Chung74666102017-02-22 17:49:24 -0800666 // Move the task
Wale Ogunwale56d8d162017-05-30 11:12:20 -0700667 sourceStack.removeTask(this, reason, moveStackToFront
668 ? REMOVE_TASK_MODE_MOVING_TO_TOP : REMOVE_TASK_MODE_MOVING);
Winson Chung5af42fc2017-03-24 17:11:33 -0700669 toStack.addTask(this, position, false /* schedulePictureInPictureModeChange */, reason);
Winson Chung74666102017-02-22 17:49:24 -0800670
Winson Chung5af42fc2017-03-24 17:11:33 -0700671 if (schedulePictureInPictureModeChange) {
672 // Notify of picture-in-picture mode changes
673 supervisor.scheduleUpdatePictureInPictureModeIfNeeded(this, sourceStack);
674 }
Winson Chung74666102017-02-22 17:49:24 -0800675
676 // TODO: Ensure that this is actually necessary here
677 // Notify the voice session if required
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800678 if (voiceSession != null) {
679 try {
680 voiceSession.taskStarted(intent, taskId);
681 } catch (RemoteException e) {
682 }
683 }
Winson Chung74666102017-02-22 17:49:24 -0800684
685 // If the task had focus before (or we're requested to move focus), move focus to the
686 // new stack by moving the stack to the front.
Winson Chung95f8f0e2017-03-24 09:20:17 -0700687 if (r != null) {
688 toStack.moveToFrontAndResumeStateIfNeeded(r, moveStackToFront, wasResumed,
689 wasPaused, reason);
690 }
Winson Chung74666102017-02-22 17:49:24 -0800691 if (!animate) {
692 toStack.mNoAnimActivities.add(topActivity);
693 }
694
695 // We might trigger a configuration change. Save the current task bounds for freezing.
696 // TODO: Should this call be moved inside the resize method in WM?
697 toStack.prepareFreezingTaskBounds();
698
699 // Make sure the task has the appropriate bounds/size for the stack it is in.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700700 final boolean toStackSplitScreenPrimary =
701 toStackWindowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700702 if ((toStackWindowingMode == WINDOWING_MODE_FULLSCREEN
703 || toStackWindowingMode == WINDOWING_MODE_SPLIT_SCREEN_SECONDARY)
Winson Chung74666102017-02-22 17:49:24 -0800704 && !Objects.equals(mBounds, toStack.mBounds)) {
705 kept = resize(toStack.mBounds, RESIZE_MODE_SYSTEM, !mightReplaceWindow,
706 deferResume);
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700707 } else if (toStackWindowingMode == WINDOWING_MODE_FREEFORM) {
Winson Chung74666102017-02-22 17:49:24 -0800708 Rect bounds = getLaunchBounds();
709 if (bounds == null) {
710 toStack.layoutTaskInStack(this, null);
711 bounds = mBounds;
712 }
713 kept = resize(bounds, RESIZE_MODE_FORCED, !mightReplaceWindow, deferResume);
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700714 } else if (toStackSplitScreenPrimary || toStackWindowingMode == WINDOWING_MODE_PINNED) {
715 if (toStackSplitScreenPrimary && moveStackMode == REPARENT_KEEP_STACK_AT_FRONT) {
Matthew Ng330757d2017-02-28 14:19:17 -0800716 // Move recents to front so it is not behind home stack when going into docked
717 // mode
718 mService.mStackSupervisor.moveRecentsStackToFront(reason);
719 }
Winson Chung74666102017-02-22 17:49:24 -0800720 kept = resize(toStack.mBounds, RESIZE_MODE_SYSTEM, !mightReplaceWindow,
721 deferResume);
722 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800723 } finally {
Winson Chung74666102017-02-22 17:49:24 -0800724 windowManager.continueSurfaceLayout();
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800725 }
Winson Chung74666102017-02-22 17:49:24 -0800726
727 if (mightReplaceWindow) {
728 // If we didn't actual do a relaunch (indicated by kept==true meaning we kept the old
729 // window), we need to clear the replace window settings. Otherwise, we schedule a
730 // timeout to remove the old window if the replacing window is not coming in time.
731 windowManager.scheduleClearWillReplaceWindows(topActivity.appToken, !kept);
732 }
733
734 if (!deferResume) {
735 // The task might have already been running and its visibility needs to be synchronized
736 // with the visibility of the stack / windows.
737 supervisor.ensureActivitiesVisibleLocked(null, 0, !mightReplaceWindow);
738 supervisor.resumeFocusedStackTopActivityLocked();
739 }
740
Andrii Kulian036e3ad2017-04-19 10:55:10 -0700741 // TODO: Handle incorrect request to move before the actual move, not after.
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700742 final boolean inSplitScreenMode = supervisor.getDefaultDisplay().hasSplitScreenStack();
743 supervisor.handleNonResizableTaskIfNeeded(this, preferredStack.getWindowingMode(),
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700744 DEFAULT_DISPLAY, toStack.mStackId);
Winson Chung74666102017-02-22 17:49:24 -0800745
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700746 boolean successful = (preferredStack == toStack);
747 if (successful && toStack.getWindowingMode() == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY) {
Matthew Ng330757d2017-02-28 14:19:17 -0800748 // If task moved to docked stack - show recents if needed.
749 mService.mWindowManager.showRecentApps(false /* fromHome */);
750 }
751 return successful;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800752 }
753
Wale Ogunwale44f036f2017-09-29 05:09:09 -0700754 /**
755 * Returns true if the windows of tasks being moved to the target stack from the source
756 * stack should be replaced, meaning that window manager will keep the old window around
757 * until the new is ready.
758 * @hide
759 */
760 private static boolean replaceWindowsOnTaskMove(
761 int sourceWindowingMode, int targetWindowingMode) {
762 return sourceWindowingMode == WINDOWING_MODE_FREEFORM
763 || targetWindowingMode == WINDOWING_MODE_FREEFORM;
764 }
765
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800766 void cancelWindowTransition() {
767 mWindowContainerController.cancelWindowTransition();
768 }
769
770 void cancelThumbnailTransition() {
771 mWindowContainerController.cancelThumbnailTransition();
772 }
773
Jorim Jaggi7361bab2017-01-16 17:17:58 +0100774 /**
775 * DO NOT HOLD THE ACTIVITY MANAGER LOCK WHEN CALLING THIS METHOD!
776 */
Jorim Jaggi35e3f532017-03-17 17:06:50 +0100777 TaskSnapshot getSnapshot(boolean reducedResolution) {
Jorim Jaggi7361bab2017-01-16 17:17:58 +0100778
779 // TODO: Move this to {@link TaskWindowContainerController} once recent tasks are more
780 // synchronized between AM and WM.
Jorim Jaggi35e3f532017-03-17 17:06:50 +0100781 return mService.mWindowManager.getTaskSnapshot(taskId, userId, reducedResolution);
Jorim Jaggi02886a82016-12-06 09:10:06 -0800782 }
783
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800784 void touchActiveTime() {
Winson Chungfb44d212017-10-04 11:39:10 -0700785 lastActiveTime = SystemClock.elapsedRealtime();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800786 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700787
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788 long getInactiveDuration() {
Winson Chungfb44d212017-10-04 11:39:10 -0700789 return SystemClock.elapsedRealtime() - lastActiveTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800790 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700791
Winson Chungfee26772014-08-05 12:21:52 -0700792 /** Sets the original intent, and the calling uid and package. */
793 void setIntent(ActivityRecord r) {
Winson Chungfee26772014-08-05 12:21:52 -0700794 mCallingUid = r.launchedFromUid;
795 mCallingPackage = r.launchedFromPackage;
Craig Mautner15df08a2015-04-01 12:17:18 -0700796 setIntent(r.intent, r.info);
Charles He2bf28322017-10-12 22:24:49 +0100797 setLockTaskAuth(r);
Winson Chungfee26772014-08-05 12:21:52 -0700798 }
799
800 /** Sets the original intent, _without_ updating the calling uid or package. */
801 private void setIntent(Intent _intent, ActivityInfo info) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700802 if (intent == null) {
803 mNeverRelinquishIdentity =
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700804 (info.flags & FLAG_RELINQUISH_TASK_IDENTITY) == 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700805 } else if (mNeverRelinquishIdentity) {
806 return;
807 }
808
809 affinity = info.taskAffinity;
Dianne Hackborn79228822014-09-16 11:11:23 -0700810 if (intent == null) {
811 // If this task already has an intent associated with it, don't set the root
812 // affinity -- we don't want it changing after initially set, but the initially
813 // set value may be null.
814 rootAffinity = affinity;
815 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700816 effectiveUid = info.applicationInfo.uid;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700817 stringName = null;
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800818
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800819 if (info.targetActivity == null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800820 if (_intent != null) {
821 // If this Intent has a selector, we want to clear it for the
822 // recent task since it is not relevant if the user later wants
823 // to re-launch the app.
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700824 if (_intent.getSelector() != null || _intent.getSourceBounds() != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800825 _intent = new Intent(_intent);
826 _intent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700827 _intent.setSourceBounds(null);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800828 }
829 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700830 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Setting Intent of " + this + " to " + _intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800831 intent = _intent;
832 realActivity = _intent != null ? _intent.getComponent() : null;
833 origActivity = null;
834 } else {
835 ComponentName targetComponent = new ComponentName(
836 info.packageName, info.targetActivity);
837 if (_intent != null) {
838 Intent targetIntent = new Intent(_intent);
839 targetIntent.setComponent(targetComponent);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800840 targetIntent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700841 targetIntent.setSourceBounds(null);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700842 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Dianne Hackborn7f96b792012-05-29 18:46:45 -0700843 "Setting Intent of " + this + " to target " + targetIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800844 intent = targetIntent;
845 realActivity = targetComponent;
846 origActivity = _intent.getComponent();
847 } else {
848 intent = null;
849 realActivity = targetComponent;
850 origActivity = new ComponentName(info.packageName, info.name);
851 }
852 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700853
Craig Mautner47b20ba2014-09-17 17:23:44 -0700854 final int intentFlags = intent == null ? 0 : intent.getFlags();
855 if ((intentFlags & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856 // Once we are set to an Intent with this flag, we count this
857 // task as having a true root activity.
858 rootWasReset = true;
859 }
Dianne Hackborn09233282014-04-30 11:33:59 -0700860 userId = UserHandle.getUserId(info.applicationInfo.uid);
Winson Chung36f3f032016-09-08 23:29:43 +0000861 mUserSetupComplete = Settings.Secure.getIntForUser(mService.mContext.getContentResolver(),
862 USER_SETUP_COMPLETE, 0, userId) != 0;
Craig Mautner41db4a72014-05-07 17:20:56 -0700863 if ((info.flags & ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS) != 0) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700864 // If the activity itself has requested auto-remove, then just always do it.
865 autoRemoveRecents = true;
Wale Ogunwale843bfb92015-03-27 11:06:48 -0700866 } else if ((intentFlags & (FLAG_ACTIVITY_NEW_DOCUMENT | FLAG_ACTIVITY_RETAIN_IN_RECENTS))
867 == FLAG_ACTIVITY_NEW_DOCUMENT) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700868 // If the caller has not asked for the document to be retained, then we may
869 // want to turn on auto-remove, depending on whether the target has set its
870 // own document launch mode.
871 if (info.documentLaunchMode != ActivityInfo.DOCUMENT_LAUNCH_NONE) {
872 autoRemoveRecents = false;
873 } else {
874 autoRemoveRecents = true;
875 }
876 } else {
877 autoRemoveRecents = false;
Craig Mautner41db4a72014-05-07 17:20:56 -0700878 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800879 mResizeMode = info.resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800880 mSupportsPictureInPicture = info.supportsPictureInPicture();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800881 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800882
Andrii Kulian2e751b82016-03-16 16:59:32 -0700883 /** Sets the original minimal width and height. */
884 private void setMinDimensions(ActivityInfo info) {
885 if (info != null && info.windowLayout != null) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700886 mMinWidth = info.windowLayout.minWidth;
887 mMinHeight = info.windowLayout.minHeight;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700888 } else {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700889 mMinWidth = INVALID_MIN_SIZE;
890 mMinHeight = INVALID_MIN_SIZE;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700891 }
892 }
893
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800894 /**
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700895 * Return true if the input activity has the same intent filter as the intent this task
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800896 * record is based on (normally the root activity intent).
897 */
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700898 boolean isSameIntentFilter(ActivityRecord r) {
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800899 final Intent intent = new Intent(r.intent);
900 // Correct the activity intent for aliasing. The task record intent will always be based on
901 // the real activity that will be launched not the alias, so we need to use an intent with
902 // the component name pointing to the real activity not the alias in the activity record.
903 intent.setComponent(r.realActivity);
904 return this.intent.filterEquals(intent);
905 }
906
Wale Ogunwaleeea34ee92017-08-31 20:07:45 -0700907 void setTaskToReturnTo(/*@WindowConfiguration.ActivityType*/ int taskToReturnTo) {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700908 mTaskToReturnTo = taskToReturnTo == ACTIVITY_TYPE_RECENTS
909 ? ACTIVITY_TYPE_HOME : taskToReturnTo;
Craig Mautner84984fa2014-06-19 11:19:20 -0700910 }
911
Winson Chung83471632016-12-13 11:02:12 -0800912 void setTaskToReturnTo(ActivityRecord source) {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700913 if (source.isActivityTypeRecents()) {
914 setTaskToReturnTo(ACTIVITY_TYPE_RECENTS);
915 } else if (source.isActivityTypeAssistant()) {
916 setTaskToReturnTo(ACTIVITY_TYPE_ASSISTANT);
Winson Chung83471632016-12-13 11:02:12 -0800917 }
918 }
919
Craig Mautner84984fa2014-06-19 11:19:20 -0700920 int getTaskToReturnTo() {
921 return mTaskToReturnTo;
922 }
923
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -0700924 boolean returnsToHomeTask() {
925 return mTaskToReturnTo == ACTIVITY_TYPE_HOME;
926 }
927
928 boolean returnsToStandardTask() {
929 return mTaskToReturnTo == ACTIVITY_TYPE_STANDARD;
930 }
931
Craig Mautnera228ae92014-07-09 05:44:55 -0700932 void setPrevAffiliate(TaskRecord prevAffiliate) {
933 mPrevAffiliate = prevAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800934 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700935 }
936
937 void setNextAffiliate(TaskRecord nextAffiliate) {
938 mNextAffiliate = nextAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800939 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700940 }
941
Wale Ogunwale04a05ac2017-09-17 21:35:02 -0700942 <T extends ActivityStack> T getStack() {
943 return (T) mStack;
Andrii Kulian02b7a832016-10-06 23:11:56 -0700944 }
945
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800946 /**
947 * Must be used for setting parent stack because it performs configuration updates.
948 * Must be called after adding task as a child to the stack.
949 */
Andrii Kulian02b7a832016-10-06 23:11:56 -0700950 void setStack(ActivityStack stack) {
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800951 if (stack != null && !stack.isInStackLocked(this)) {
952 throw new IllegalStateException("Task must be added as a Stack child first.");
953 }
Andrii Kulian02b7a832016-10-06 23:11:56 -0700954 mStack = stack;
Andrii Kulian1779e612016-10-12 21:58:25 -0700955 onParentChanged();
Andrii Kulian02b7a832016-10-06 23:11:56 -0700956 }
957
958 /**
959 * @return Id of current stack, {@link INVALID_STACK_ID} if no stack is set.
960 */
961 int getStackId() {
962 return mStack != null ? mStack.mStackId : INVALID_STACK_ID;
963 }
964
Andrii Kulian1779e612016-10-12 21:58:25 -0700965 @Override
966 protected int getChildCount() {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700967 return mActivities.size();
Andrii Kulian1779e612016-10-12 21:58:25 -0700968 }
969
970 @Override
971 protected ConfigurationContainer getChildAt(int index) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700972 return mActivities.get(index);
Andrii Kulian1779e612016-10-12 21:58:25 -0700973 }
974
975 @Override
976 protected ConfigurationContainer getParent() {
977 return mStack;
978 }
979
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800980 @Override
Wale Ogunwale98d62312017-07-12 09:24:56 -0700981 protected void onParentChanged() {
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800982 super.onParentChanged();
983 mService.mStackSupervisor.updateUIDsPresentOnDisplay();
984 }
985
Craig Mautnera228ae92014-07-09 05:44:55 -0700986 // Close up recents linked list.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700987 private void closeRecentsChain() {
Craig Mautnera228ae92014-07-09 05:44:55 -0700988 if (mPrevAffiliate != null) {
989 mPrevAffiliate.setNextAffiliate(mNextAffiliate);
990 }
991 if (mNextAffiliate != null) {
992 mNextAffiliate.setPrevAffiliate(mPrevAffiliate);
993 }
994 setPrevAffiliate(null);
995 setNextAffiliate(null);
996 }
997
Winson Chung740c3ac2014-11-12 16:14:38 -0800998 void removedFromRecents() {
Dianne Hackborn852975d2014-08-22 17:42:43 -0700999 closeRecentsChain();
1000 if (inRecents) {
1001 inRecents = false;
Winson Chung740c3ac2014-11-12 16:14:38 -08001002 mService.notifyTaskPersisterLocked(this, false);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001003 }
Jorim Jaggif9084ec2017-01-16 13:16:59 +01001004
1005 // TODO: Use window container controller once tasks are better synced between AM and WM
1006 mService.mWindowManager.notifyTaskRemovedFromRecents(taskId, userId);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001007 }
1008
Craig Mautnera228ae92014-07-09 05:44:55 -07001009 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
1010 closeRecentsChain();
1011 mAffiliatedTaskId = taskToAffiliateWith.mAffiliatedTaskId;
Winson Chungec396d62014-08-06 17:08:00 -07001012 mAffiliatedTaskColor = taskToAffiliateWith.mAffiliatedTaskColor;
Craig Mautnera228ae92014-07-09 05:44:55 -07001013 // Find the end
1014 while (taskToAffiliateWith.mNextAffiliate != null) {
1015 final TaskRecord nextRecents = taskToAffiliateWith.mNextAffiliate;
1016 if (nextRecents.mAffiliatedTaskId != mAffiliatedTaskId) {
1017 Slog.e(TAG, "setTaskToAffiliateWith: nextRecents=" + nextRecents + " affilTaskId="
1018 + nextRecents.mAffiliatedTaskId + " should be " + mAffiliatedTaskId);
1019 if (nextRecents.mPrevAffiliate == taskToAffiliateWith) {
1020 nextRecents.setPrevAffiliate(null);
1021 }
1022 taskToAffiliateWith.setNextAffiliate(null);
1023 break;
1024 }
1025 taskToAffiliateWith = nextRecents;
1026 }
1027 taskToAffiliateWith.setNextAffiliate(this);
1028 setPrevAffiliate(taskToAffiliateWith);
1029 setNextAffiliate(null);
1030 }
1031
Winson Chung1147c402014-05-14 11:05:00 -07001032 /** Returns the intent for the root activity for this task */
1033 Intent getBaseIntent() {
1034 return intent != null ? intent : affinityIntent;
1035 }
1036
Winson Chung3b3f4642014-04-22 10:08:18 -07001037 /** Returns the first non-finishing activity from the root. */
1038 ActivityRecord getRootActivity() {
1039 for (int i = 0; i < mActivities.size(); i++) {
1040 final ActivityRecord r = mActivities.get(i);
1041 if (r.finishing) {
1042 continue;
1043 }
1044 return r;
1045 }
1046 return null;
1047 }
1048
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001049 ActivityRecord getTopActivity() {
Bryce Lee9f6affd2017-09-01 09:18:35 -07001050 return getTopActivity(true /* includeOverlays */);
1051 }
1052
1053 ActivityRecord getTopActivity(boolean includeOverlays) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001054 for (int i = mActivities.size() - 1; i >= 0; --i) {
1055 final ActivityRecord r = mActivities.get(i);
Bryce Lee9f6affd2017-09-01 09:18:35 -07001056 if (r.finishing || (!includeOverlays && r.mTaskOverlay)) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001057 continue;
1058 }
1059 return r;
1060 }
1061 return null;
1062 }
1063
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001064 ActivityRecord topRunningActivityLocked() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001065 if (mStack != null) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001066 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1067 ActivityRecord r = mActivities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -07001068 if (!r.finishing && r.okToShowLocked()) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001069 return r;
1070 }
Craig Mautner6b74cb52013-09-27 17:02:21 -07001071 }
1072 }
1073 return null;
1074 }
1075
Jorim Jaggiea039a82017-08-02 14:37:49 +02001076 void getAllRunningVisibleActivitiesLocked(ArrayList<ActivityRecord> outActivities) {
1077 if (mStack != null) {
1078 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1079 ActivityRecord r = mActivities.get(activityNdx);
Jorim Jaggi02f1d2f2017-08-04 14:29:16 +02001080 if (!r.finishing && r.okToShowLocked() && r.visibleIgnoringKeyguard) {
Jorim Jaggiea039a82017-08-02 14:37:49 +02001081 outActivities.add(r);
1082 }
1083 }
1084 }
1085 }
1086
Wale Ogunwale3b232392016-05-13 15:37:13 -07001087 ActivityRecord topRunningActivityWithStartingWindowLocked() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001088 if (mStack != null) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07001089 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1090 ActivityRecord r = mActivities.get(activityNdx);
1091 if (r.mStartingWindowState != STARTING_WINDOW_SHOWN
Chong Zhang87761972016-08-22 13:53:24 -07001092 || r.finishing || !r.okToShowLocked()) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07001093 continue;
1094 }
1095 return r;
1096 }
1097 }
1098 return null;
1099 }
1100
Chong Zhang87761972016-08-22 13:53:24 -07001101 boolean okToShowLocked() {
1102 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
1103 // okay to show the activity when locked.
1104 return mService.mStackSupervisor.isCurrentProfileLocked(userId)
1105 || topRunningActivityLocked() != null;
1106 }
1107
Craig Mautner3b475fe2013-12-16 15:58:31 -08001108 /** Call after activity movement or finish to make sure that frontOfTask is set correctly */
Bryce Leed71317c2017-02-07 14:27:22 -08001109 final void setFrontOfTask() {
1110 boolean foundFront = false;
Craig Mautner3b475fe2013-12-16 15:58:31 -08001111 final int numActivities = mActivities.size();
Craig Mautner704e40b2013-12-18 16:43:51 -08001112 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
Craig Mautner3b475fe2013-12-16 15:58:31 -08001113 final ActivityRecord r = mActivities.get(activityNdx);
1114 if (foundFront || r.finishing) {
1115 r.frontOfTask = false;
1116 } else {
1117 r.frontOfTask = true;
1118 // Set frontOfTask false for every following activity.
1119 foundFront = true;
1120 }
1121 }
Craig Mautner9587ee02014-06-23 15:00:10 +00001122 if (!foundFront && numActivities > 0) {
1123 // All activities of this task are finishing. As we ought to have a frontOfTask
1124 // activity, make the bottom activity front.
1125 mActivities.get(0).frontOfTask = true;
1126 }
Craig Mautner3b475fe2013-12-16 15:58:31 -08001127 }
1128
Craig Mautnerde4ef022013-04-07 19:01:33 -07001129 /**
Craig Mautner3b475fe2013-12-16 15:58:31 -08001130 * Reorder the history stack so that the passed activity is brought to the front.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001131 */
1132 final void moveActivityToFrontLocked(ActivityRecord newTop) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001133 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
1134 "Removing and adding activity " + newTop
1135 + " to stack at top callers=" + Debug.getCallers(4));
Craig Mautnerde4ef022013-04-07 19:01:33 -07001136
Craig Mautnerde4ef022013-04-07 19:01:33 -07001137 mActivities.remove(newTop);
1138 mActivities.add(newTop);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001139 updateEffectiveIntent();
Craig Mautner3b475fe2013-12-16 15:58:31 -08001140
Bryce Leed71317c2017-02-07 14:27:22 -08001141 setFrontOfTask();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001142 }
1143
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001144 void addActivityAtBottom(ActivityRecord r) {
Craig Mautner77878772013-03-04 19:46:24 -08001145 addActivityAtIndex(0, r);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001146 }
1147
1148 void addActivityToTop(ActivityRecord r) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001149 addActivityAtIndex(mActivities.size(), r);
1150 }
1151
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001152 @Override
Wale Ogunwaleeea34ee92017-08-31 20:07:45 -07001153 /*@WindowConfiguration.ActivityType*/
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001154 public int getActivityType() {
1155 final int applicationType = super.getActivityType();
1156 if (applicationType != ACTIVITY_TYPE_UNDEFINED || mActivities.isEmpty()) {
1157 return applicationType;
1158 }
1159 return mActivities.get(0).getActivityType();
1160 }
1161
Winson Chung30480042017-01-26 10:55:34 -08001162 /**
1163 * Adds an activity {@param r} at the given {@param index}. The activity {@param r} must either
1164 * be in the current task or unparented to any task.
1165 */
Craig Mautner1602ec22013-05-12 10:24:27 -07001166 void addActivityAtIndex(int index, ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07001167 TaskRecord task = r.getTask();
1168 if (task != null && task != this) {
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001169 throw new IllegalArgumentException("Can not add r=" + " to task=" + this
Bryce Leeaf691c02017-03-20 14:20:22 -07001170 + " current parent=" + task);
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001171 }
Bryce Leeaf691c02017-03-20 14:20:22 -07001172
1173 r.setTask(this);
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001174
Craig Mautner6170f732013-04-02 13:05:23 -07001175 // Remove r first, and if it wasn't already in the list and it's fullscreen, count it.
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001176 if (!mActivities.remove(r) && r.fullscreen) {
1177 // Was not previously in list.
1178 numFullscreen++;
1179 }
Craig Mautner2c1faed2013-07-23 12:56:02 -07001180 // Only set this based on the first activity
1181 if (mActivities.isEmpty()) {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001182 if (r.getActivityType() == ACTIVITY_TYPE_UNDEFINED) {
1183 // Normally non-standard activity type for the activity record will be set when the
1184 // object is created, however we delay setting the standard application type until
1185 // this point so that the task can set the type for additional activities added in
1186 // the else condition below.
1187 r.setActivityType(ACTIVITY_TYPE_STANDARD);
1188 }
1189 setActivityType(r.getActivityType());
Craig Mautner21d24a22014-04-23 11:45:37 -07001190 isPersistable = r.isPersistable();
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001191 mCallingUid = r.launchedFromUid;
1192 mCallingPackage = r.launchedFromPackage;
Dianne Hackborn852975d2014-08-22 17:42:43 -07001193 // Clamp to [1, max].
1194 maxRecents = Math.min(Math.max(r.info.maxRecents, 1),
1195 ActivityManager.getMaxAppRecentsLimitStatic());
Craig Mautner2c1faed2013-07-23 12:56:02 -07001196 } else {
1197 // Otherwise make all added activities match this one.
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001198 r.setActivityType(getActivityType());
Craig Mautner78733002013-06-10 13:54:49 -07001199 }
Wale Ogunwale3b232392016-05-13 15:37:13 -07001200
1201 final int size = mActivities.size();
1202
1203 if (index == size && size > 0) {
1204 final ActivityRecord top = mActivities.get(size - 1);
1205 if (top.mTaskOverlay) {
1206 // Place below the task overlay activity since the overlay activity should always
1207 // be on top.
1208 index--;
1209 }
1210 }
1211
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001212 index = Math.min(size, index);
Craig Mautner77878772013-03-04 19:46:24 -08001213 mActivities.add(index, r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001214 updateEffectiveIntent();
Craig Mautner21d24a22014-04-23 11:45:37 -07001215 if (r.isPersistable()) {
1216 mService.notifyTaskPersisterLocked(this, false);
1217 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001218
1219 // Sync. with window manager
1220 updateOverrideConfigurationFromLaunchBounds();
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001221 final AppWindowContainerController appController = r.getWindowContainerController();
1222 if (appController != null) {
1223 // Only attempt to move in WM if the child has a controller. It is possible we haven't
1224 // created controller for the activity we are starting yet.
1225 mWindowContainerController.positionChildAt(appController, index);
1226 }
David Stevens82ea6cb2017-03-03 16:18:50 -08001227
1228 // Make sure the list of display UID whitelists is updated
1229 // now that this record is in a new task.
1230 mService.mStackSupervisor.updateUIDsPresentOnDisplay();
Craig Mautner77878772013-03-04 19:46:24 -08001231 }
1232
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001233 /**
Bryce Leeaf691c02017-03-20 14:20:22 -07001234 * Removes the specified activity from this task.
1235 * @param r The {@link ActivityRecord} to remove.
1236 * @return true if this was the last activity in the task.
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001237 */
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001238 boolean removeActivity(ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07001239 return removeActivity(r, false /*reparenting*/);
1240 }
1241
1242 boolean removeActivity(ActivityRecord r, boolean reparenting) {
1243 if (r.getTask() != this) {
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001244 throw new IllegalArgumentException(
1245 "Activity=" + r + " does not belong to task=" + this);
1246 }
1247
Bryce Leeaf691c02017-03-20 14:20:22 -07001248 r.setTask(null /*task*/, reparenting);
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001249
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001250 if (mActivities.remove(r) && r.fullscreen) {
1251 // Was previously in list.
1252 numFullscreen--;
1253 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001254 if (r.isPersistable()) {
1255 mService.notifyTaskPersisterLocked(this, false);
1256 }
Wale Ogunwale89182d52016-03-11 10:38:36 -08001257
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001258 if (inPinnedWindowingMode()) {
Wale Ogunwale89182d52016-03-11 10:38:36 -08001259 // We normally notify listeners of task stack changes on pause, however pinned stack
1260 // activities are normally in the paused state so no notification will be sent there
1261 // before the activity is removed. We send it here so instead.
Yorke Leebd54c2a2016-10-25 13:49:23 -07001262 mService.mTaskChangeNotificationController.notifyTaskStackChanged();
Wale Ogunwale89182d52016-03-11 10:38:36 -08001263 }
1264
Craig Mautner41326202014-06-20 14:38:21 -07001265 if (mActivities.isEmpty()) {
Craig Mautner5afcd4d2014-06-21 18:11:33 -07001266 return !mReuseTask;
Craig Mautner41326202014-06-20 14:38:21 -07001267 }
1268 updateEffectiveIntent();
1269 return false;
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001270 }
1271
Winson Chung6954fc92017-03-24 16:22:12 -07001272 /**
1273 * @return whether or not there are ONLY task overlay activities in the stack.
1274 * If {@param excludeFinishing} is set, then ignore finishing activities in the check.
1275 * If there are no task overlay activities, this call returns false.
1276 */
1277 boolean onlyHasTaskOverlayActivities(boolean excludeFinishing) {
1278 int count = 0;
1279 for (int i = mActivities.size() - 1; i >= 0; i--) {
1280 final ActivityRecord r = mActivities.get(i);
1281 if (excludeFinishing && r.finishing) {
1282 continue;
1283 }
1284 if (!r.mTaskOverlay) {
1285 return false;
1286 }
1287 count++;
1288 }
1289 return count > 0;
1290 }
1291
Craig Mautner41db4a72014-05-07 17:20:56 -07001292 boolean autoRemoveFromRecents() {
Dianne Hackbornd38aed82014-06-10 21:36:35 -07001293 // We will automatically remove the task either if it has explicitly asked for
1294 // this, or it is empty and has never contained an activity that got shown to
1295 // the user.
Dianne Hackborn13420f22014-07-18 15:43:56 -07001296 return autoRemoveRecents || (mActivities.isEmpty() && !hasBeenVisible);
Craig Mautner41db4a72014-05-07 17:20:56 -07001297 }
1298
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001299 /**
1300 * Completely remove all activities associated with an existing
1301 * task starting at a specified index.
1302 */
Winson Chung6954fc92017-03-24 16:22:12 -07001303 final void performClearTaskAtIndexLocked(int activityNdx, boolean pauseImmediately) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001304 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001305 for ( ; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001306 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001307 if (r.finishing) {
1308 continue;
1309 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07001310 if (mStack == null) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001311 // Task was restored from persistent storage.
1312 r.takeFromHistory();
1313 mActivities.remove(activityNdx);
1314 --activityNdx;
1315 --numActivities;
Winson Chung6954fc92017-03-24 16:22:12 -07001316 } else if (mStack.finishActivityLocked(r, Activity.RESULT_CANCELED, null,
1317 "clear-task-index", false, pauseImmediately)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001318 --activityNdx;
1319 --numActivities;
1320 }
1321 }
1322 }
1323
1324 /**
1325 * Completely remove all activities associated with an existing task.
1326 */
Benjamin Franza83859f2017-07-03 16:34:14 +01001327 void performClearTaskLocked() {
Craig Mautner362449a2014-06-20 14:04:39 -07001328 mReuseTask = true;
Winson Chung6954fc92017-03-24 16:22:12 -07001329 performClearTaskAtIndexLocked(0, !PAUSE_IMMEDIATELY);
Craig Mautner362449a2014-06-20 14:04:39 -07001330 mReuseTask = false;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001331 }
1332
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -08001333 ActivityRecord performClearTaskForReuseLocked(ActivityRecord newR, int launchFlags) {
1334 mReuseTask = true;
1335 final ActivityRecord result = performClearTaskLocked(newR, launchFlags);
1336 mReuseTask = false;
1337 return result;
1338 }
1339
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001340 /**
1341 * Perform clear operation as requested by
1342 * {@link Intent#FLAG_ACTIVITY_CLEAR_TOP}: search from the top of the
1343 * stack to the given task, then look for
1344 * an instance of that activity in the stack and, if found, finish all
1345 * activities on top of it and return the instance.
1346 *
1347 * @param newR Description of the new activity being started.
1348 * @return Returns the old activity that should be continued to be used,
1349 * or null if none was found.
1350 */
1351 final ActivityRecord performClearTaskLocked(ActivityRecord newR, int launchFlags) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001352 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001353 for (int activityNdx = numActivities - 1; activityNdx >= 0; --activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001354 ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001355 if (r.finishing) {
1356 continue;
1357 }
1358 if (r.realActivity.equals(newR.realActivity)) {
1359 // Here it is! Now finish everything in front...
Craig Mautner1602ec22013-05-12 10:24:27 -07001360 final ActivityRecord ret = r;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001361
1362 for (++activityNdx; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001363 r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001364 if (r.finishing) {
1365 continue;
1366 }
1367 ActivityOptions opts = r.takeOptionsLocked();
1368 if (opts != null) {
1369 ret.updateOptionsLocked(opts);
1370 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07001371 if (mStack != null && mStack.finishActivityLocked(
Todd Kennedy539db512014-12-15 09:57:55 -08001372 r, Activity.RESULT_CANCELED, null, "clear-task-stack", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001373 --activityNdx;
1374 --numActivities;
1375 }
1376 }
1377
1378 // Finally, if this is a normal launch mode (that is, not
1379 // expecting onNewIntent()), then we will finish the current
1380 // instance of the activity so a new fresh one can be started.
1381 if (ret.launchMode == ActivityInfo.LAUNCH_MULTIPLE
Daichi Hirono15a02992016-04-27 18:47:01 +09001382 && (launchFlags & Intent.FLAG_ACTIVITY_SINGLE_TOP) == 0
1383 && !ActivityStarter.isDocumentLaunchesIntoExisting(launchFlags)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001384 if (!ret.finishing) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001385 if (mStack != null) {
1386 mStack.finishActivityLocked(
Wale Ogunwale7d701172015-03-11 15:36:30 -07001387 ret, Activity.RESULT_CANCELED, null, "clear-task-top", false);
1388 }
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001389 return null;
1390 }
1391 }
1392
1393 return ret;
1394 }
1395 }
1396
1397 return null;
1398 }
1399
Winson Chung6954fc92017-03-24 16:22:12 -07001400 void removeTaskActivitiesLocked(boolean pauseImmediately) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001401 // Just remove the entire task.
Winson Chung6954fc92017-03-24 16:22:12 -07001402 performClearTaskAtIndexLocked(0, pauseImmediately);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07001403 }
1404
Craig Mautner432f64e2015-05-20 14:59:57 -07001405 String lockTaskAuthToString() {
1406 switch (mLockTaskAuth) {
1407 case LOCK_TASK_AUTH_DONT_LOCK: return "LOCK_TASK_AUTH_DONT_LOCK";
1408 case LOCK_TASK_AUTH_PINNABLE: return "LOCK_TASK_AUTH_PINNABLE";
1409 case LOCK_TASK_AUTH_LAUNCHABLE: return "LOCK_TASK_AUTH_LAUNCHABLE";
1410 case LOCK_TASK_AUTH_WHITELISTED: return "LOCK_TASK_AUTH_WHITELISTED";
Benjamin Franz469dd582015-06-09 14:24:36 +01001411 case LOCK_TASK_AUTH_LAUNCHABLE_PRIV: return "LOCK_TASK_AUTH_LAUNCHABLE_PRIV";
Craig Mautner432f64e2015-05-20 14:59:57 -07001412 default: return "unknown=" + mLockTaskAuth;
1413 }
1414 }
1415
Craig Mautner15df08a2015-04-01 12:17:18 -07001416 void setLockTaskAuth() {
Charles He2bf28322017-10-12 22:24:49 +01001417 setLockTaskAuth(getRootActivity());
1418 }
1419
1420 private void setLockTaskAuth(@Nullable ActivityRecord r) {
1421 if (r == null) {
1422 mLockTaskAuth = LOCK_TASK_AUTH_PINNABLE;
1423 return;
1424 }
1425
Charles He520b2832017-09-02 15:27:16 +01001426 final String pkg = (realActivity != null) ? realActivity.getPackageName() : null;
Charles He2bf28322017-10-12 22:24:49 +01001427 switch (r.lockTaskLaunchMode) {
Craig Mautner15df08a2015-04-01 12:17:18 -07001428 case LOCK_TASK_LAUNCH_MODE_DEFAULT:
Charles He520b2832017-09-02 15:27:16 +01001429 mLockTaskAuth = mService.mLockTaskController.isPackageWhitelisted(userId, pkg)
1430 ? LOCK_TASK_AUTH_WHITELISTED : LOCK_TASK_AUTH_PINNABLE;
Craig Mautner15df08a2015-04-01 12:17:18 -07001431 break;
1432
1433 case LOCK_TASK_LAUNCH_MODE_NEVER:
Benjamin Franz469dd582015-06-09 14:24:36 +01001434 mLockTaskAuth = LOCK_TASK_AUTH_DONT_LOCK;
Craig Mautner15df08a2015-04-01 12:17:18 -07001435 break;
1436
1437 case LOCK_TASK_LAUNCH_MODE_ALWAYS:
Benjamin Franz469dd582015-06-09 14:24:36 +01001438 mLockTaskAuth = LOCK_TASK_AUTH_LAUNCHABLE_PRIV;
Craig Mautner15df08a2015-04-01 12:17:18 -07001439 break;
1440
1441 case LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED:
Charles He520b2832017-09-02 15:27:16 +01001442 mLockTaskAuth = mService.mLockTaskController.isPackageWhitelisted(userId, pkg)
1443 ? LOCK_TASK_AUTH_LAUNCHABLE : LOCK_TASK_AUTH_PINNABLE;
Craig Mautner15df08a2015-04-01 12:17:18 -07001444 break;
1445 }
Craig Mautner432f64e2015-05-20 14:59:57 -07001446 if (DEBUG_LOCKTASK) Slog.d(TAG_LOCKTASK, "setLockTaskAuth: task=" + this +
1447 " mLockTaskAuth=" + lockTaskAuthToString());
Craig Mautner15df08a2015-04-01 12:17:18 -07001448 }
1449
Craig Mautner84984fa2014-06-19 11:19:20 -07001450 boolean isOverHomeStack() {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001451 return mTaskToReturnTo == ACTIVITY_TYPE_HOME;
Craig Mautner1602ec22013-05-12 10:24:27 -07001452 }
1453
Winson Chung83471632016-12-13 11:02:12 -08001454 boolean isOverAssistantStack() {
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001455 return mTaskToReturnTo == ACTIVITY_TYPE_ASSISTANT;
Winson Chung83471632016-12-13 11:02:12 -08001456 }
1457
Winson Chungd3395382016-12-13 11:49:09 -08001458 private boolean isResizeable(boolean checkSupportsPip) {
1459 return (mService.mForceResizableActivities || ActivityInfo.isResizeableMode(mResizeMode)
1460 || (checkSupportsPip && mSupportsPictureInPicture)) && !mTemporarilyUnresizable;
1461 }
1462
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001463 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -08001464 return isResizeable(true /* checkSupportsPip */);
1465 }
1466
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001467 @Override
1468 public boolean supportsSplitScreenWindowingMode() {
Winson Chungd3395382016-12-13 11:49:09 -08001469 // A task can not be docked even if it is considered resizeable because it only supports
1470 // picture-in-picture mode but has a non-resizeable resizeMode
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07001471 return super.supportsSplitScreenWindowingMode()
1472 && mService.mSupportsSplitScreenMultiWindow
Bryce Leec857a5b2017-08-16 10:04:52 -07001473 && (mService.mForceResizableActivities
1474 || (isResizeable(false /* checkSupportsPip */)
1475 && !ActivityInfo.isPreserveOrientationMode(mResizeMode)));
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001476 }
1477
skuhne@google.com322347b2016-12-02 12:54:03 -08001478 /**
Andrii Kulian036e3ad2017-04-19 10:55:10 -07001479 * Check whether this task can be launched on the specified display.
1480 * @param displayId Target display id.
1481 * @return {@code true} if either it is the default display or this activity is resizeable and
1482 * can be put a secondary screen.
1483 */
1484 boolean canBeLaunchedOnDisplay(int displayId) {
1485 return mService.mStackSupervisor.canPlaceEntityOnDisplay(displayId,
Andrii Kulian02689a72017-07-06 14:28:59 -07001486 isResizeable(false /* checkSupportsPip */), -1 /* don't check PID */,
1487 -1 /* don't check UID */, null /* activityInfo */);
Andrii Kulian036e3ad2017-04-19 10:55:10 -07001488 }
1489
1490 /**
skuhne@google.com322347b2016-12-02 12:54:03 -08001491 * Check that a given bounds matches the application requested orientation.
1492 *
1493 * @param bounds The bounds to be tested.
1494 * @return True if the requested bounds are okay for a resizing request.
1495 */
Wale Ogunwale069bbd32017-02-03 07:58:14 -08001496 private boolean canResizeToBounds(Rect bounds) {
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001497 if (bounds == null || !inFreeformWindowingMode()) {
skuhne@google.com322347b2016-12-02 12:54:03 -08001498 // Note: If not on the freeform workspace, we ignore the bounds.
1499 return true;
1500 }
1501 final boolean landscape = bounds.width() > bounds.height();
1502 if (mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION) {
1503 return mBounds == null || landscape == (mBounds.width() > mBounds.height());
1504 }
1505 return (mResizeMode != RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY || !landscape)
1506 && (mResizeMode != RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY || landscape);
1507 }
1508
Craig Mautner525f3d92013-05-07 14:01:50 -07001509 /**
Yorke Leebdef5372017-04-10 16:38:51 -07001510 * @return {@code true} if the task is being cleared for the purposes of being reused.
1511 */
1512 boolean isClearingToReuseTask() {
1513 return mReuseTask;
1514 }
1515
1516 /**
Craig Mautner525f3d92013-05-07 14:01:50 -07001517 * Find the activity in the history stack within the given task. Returns
1518 * the index within the history at which it's found, or < 0 if not found.
1519 */
1520 final ActivityRecord findActivityInHistoryLocked(ActivityRecord r) {
1521 final ComponentName realActivity = r.realActivity;
1522 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1523 ActivityRecord candidate = mActivities.get(activityNdx);
1524 if (candidate.finishing) {
1525 continue;
1526 }
1527 if (candidate.realActivity.equals(realActivity)) {
1528 return candidate;
1529 }
1530 }
1531 return null;
1532 }
1533
Winson Chunga449dc02014-05-16 11:15:04 -07001534 /** Updates the last task description values. */
1535 void updateTaskDescription() {
1536 // Traverse upwards looking for any break between main task activities and
1537 // utility activities.
1538 int activityNdx;
1539 final int numActivities = mActivities.size();
Wale Ogunwale3eadad72016-10-13 09:16:59 -07001540 final boolean relinquish = numActivities != 0 &&
1541 (mActivities.get(0).info.flags & FLAG_RELINQUISH_TASK_IDENTITY) != 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001542 for (activityNdx = Math.min(numActivities, 1); activityNdx < numActivities;
Craig Mautner21d24a22014-04-23 11:45:37 -07001543 ++activityNdx) {
Winson Chunga449dc02014-05-16 11:15:04 -07001544 final ActivityRecord r = mActivities.get(activityNdx);
Wale Ogunwale3eadad72016-10-13 09:16:59 -07001545 if (relinquish && (r.info.flags & FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001546 // This will be the top activity for determining taskDescription. Pre-inc to
1547 // overcome initial decrement below.
1548 ++activityNdx;
1549 break;
1550 }
Winson Chunga449dc02014-05-16 11:15:04 -07001551 if (r.intent != null &&
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001552 (r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Winson Chunga449dc02014-05-16 11:15:04 -07001553 break;
1554 }
1555 }
1556 if (activityNdx > 0) {
1557 // Traverse downwards starting below break looking for set label, icon.
1558 // Note that if there are activities in the task but none of them set the
1559 // recent activity values, then we do not fall back to the last set
1560 // values in the TaskRecord.
1561 String label = null;
Craig Mautner648f69b2014-09-18 14:16:26 -07001562 String iconFilename = null;
Winson Chunga449dc02014-05-16 11:15:04 -07001563 int colorPrimary = 0;
Winson Chung1af8eda2016-02-05 17:55:56 +00001564 int colorBackground = 0;
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001565 int statusBarColor = 0;
1566 int navigationBarColor = 0;
1567 boolean topActivity = true;
Winson Chunga449dc02014-05-16 11:15:04 -07001568 for (--activityNdx; activityNdx >= 0; --activityNdx) {
1569 final ActivityRecord r = mActivities.get(activityNdx);
1570 if (r.taskDescription != null) {
1571 if (label == null) {
1572 label = r.taskDescription.getLabel();
1573 }
Craig Mautner648f69b2014-09-18 14:16:26 -07001574 if (iconFilename == null) {
1575 iconFilename = r.taskDescription.getIconFilename();
Winson Chunga449dc02014-05-16 11:15:04 -07001576 }
1577 if (colorPrimary == 0) {
1578 colorPrimary = r.taskDescription.getPrimaryColor();
Winson Chunga449dc02014-05-16 11:15:04 -07001579 }
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001580 if (topActivity) {
Winson Chung1af8eda2016-02-05 17:55:56 +00001581 colorBackground = r.taskDescription.getBackgroundColor();
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001582 statusBarColor = r.taskDescription.getStatusBarColor();
1583 navigationBarColor = r.taskDescription.getNavigationBarColor();
Winson Chung1af8eda2016-02-05 17:55:56 +00001584 }
Winson Chunga449dc02014-05-16 11:15:04 -07001585 }
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001586 topActivity = false;
Winson Chunga449dc02014-05-16 11:15:04 -07001587 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001588 lastTaskDescription = new TaskDescription(label, null, iconFilename, colorPrimary,
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001589 colorBackground, statusBarColor, navigationBarColor);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +01001590 if (mWindowContainerController != null) {
1591 mWindowContainerController.setTaskDescription(lastTaskDescription);
1592 }
Winson Chungec396d62014-08-06 17:08:00 -07001593 // Update the task affiliation color if we are the parent of the group
1594 if (taskId == mAffiliatedTaskId) {
1595 mAffiliatedTaskColor = lastTaskDescription.getPrimaryColor();
1596 }
Winson Chunga449dc02014-05-16 11:15:04 -07001597 }
1598 }
1599
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001600 int findEffectiveRootIndex() {
Craig Mautner4767f4b2014-09-18 15:38:33 -07001601 int effectiveNdx = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001602 final int topActivityNdx = mActivities.size() - 1;
Dianne Hackborn39569af2014-09-23 10:56:58 -07001603 for (int activityNdx = 0; activityNdx <= topActivityNdx; ++activityNdx) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001604 final ActivityRecord r = mActivities.get(activityNdx);
1605 if (r.finishing) {
1606 continue;
1607 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001608 effectiveNdx = activityNdx;
Wale Ogunwale3eadad72016-10-13 09:16:59 -07001609 if ((r.info.flags & FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001610 break;
1611 }
1612 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001613 return effectiveNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001614 }
1615
1616 void updateEffectiveIntent() {
1617 final int effectiveRootIndex = findEffectiveRootIndex();
1618 final ActivityRecord r = mActivities.get(effectiveRootIndex);
Winson Chungfee26772014-08-05 12:21:52 -07001619 setIntent(r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001620 }
1621
Craig Mautner21d24a22014-04-23 11:45:37 -07001622 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001623 if (DEBUG_RECENTS) Slog.i(TAG_RECENTS, "Saving task=" + this);
Craig Mautner21d24a22014-04-23 11:45:37 -07001624
1625 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
1626 if (realActivity != null) {
1627 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
1628 }
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001629 out.attribute(null, ATTR_REALACTIVITY_SUSPENDED, String.valueOf(realActivitySuspended));
Craig Mautner21d24a22014-04-23 11:45:37 -07001630 if (origActivity != null) {
1631 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
1632 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001633 // Write affinity, and root affinity if it is different from affinity.
1634 // We use the special string "@" for a null root affinity, so we can identify
1635 // later whether we were given a root affinity or should just make it the
1636 // same as the affinity.
Craig Mautner21d24a22014-04-23 11:45:37 -07001637 if (affinity != null) {
1638 out.attribute(null, ATTR_AFFINITY, affinity);
Dianne Hackborn79228822014-09-16 11:11:23 -07001639 if (!affinity.equals(rootAffinity)) {
1640 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
1641 }
1642 } else if (rootAffinity != null) {
1643 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
Craig Mautner21d24a22014-04-23 11:45:37 -07001644 }
1645 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
Dianne Hackborn13420f22014-07-18 15:43:56 -07001646 out.attribute(null, ATTR_AUTOREMOVERECENTS, String.valueOf(autoRemoveRecents));
Craig Mautner21d24a22014-04-23 11:45:37 -07001647 out.attribute(null, ATTR_ASKEDCOMPATMODE, String.valueOf(askedCompatMode));
1648 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001649 out.attribute(null, ATTR_USER_SETUP_COMPLETE, String.valueOf(mUserSetupComplete));
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001650 out.attribute(null, ATTR_EFFECTIVE_UID, String.valueOf(effectiveUid));
Craig Mautner21d24a22014-04-23 11:45:37 -07001651 out.attribute(null, ATTR_LASTTIMEMOVED, String.valueOf(mLastTimeMoved));
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001652 out.attribute(null, ATTR_NEVERRELINQUISH, String.valueOf(mNeverRelinquishIdentity));
Craig Mautner21d24a22014-04-23 11:45:37 -07001653 if (lastDescription != null) {
1654 out.attribute(null, ATTR_LASTDESCRIPTION, lastDescription.toString());
1655 }
Winson Chung2cb86c72014-06-25 12:03:30 -07001656 if (lastTaskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001657 lastTaskDescription.saveToXml(out);
Winson Chung2cb86c72014-06-25 12:03:30 -07001658 }
Winson Chungec396d62014-08-06 17:08:00 -07001659 out.attribute(null, ATTR_TASK_AFFILIATION_COLOR, String.valueOf(mAffiliatedTaskColor));
Craig Mautnera228ae92014-07-09 05:44:55 -07001660 out.attribute(null, ATTR_TASK_AFFILIATION, String.valueOf(mAffiliatedTaskId));
1661 out.attribute(null, ATTR_PREV_AFFILIATION, String.valueOf(mPrevAffiliateTaskId));
1662 out.attribute(null, ATTR_NEXT_AFFILIATION, String.valueOf(mNextAffiliateTaskId));
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001663 out.attribute(null, ATTR_CALLING_UID, String.valueOf(mCallingUid));
1664 out.attribute(null, ATTR_CALLING_PACKAGE, mCallingPackage == null ? "" : mCallingPackage);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001665 out.attribute(null, ATTR_RESIZE_MODE, String.valueOf(mResizeMode));
Winson Chungd3395382016-12-13 11:49:09 -08001666 out.attribute(null, ATTR_SUPPORTS_PICTURE_IN_PICTURE,
1667 String.valueOf(mSupportsPictureInPicture));
Wale Ogunwale706ed792015-08-02 10:29:44 -07001668 if (mLastNonFullscreenBounds != null) {
1669 out.attribute(
1670 null, ATTR_NON_FULLSCREEN_BOUNDS, mLastNonFullscreenBounds.flattenToString());
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001671 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001672 out.attribute(null, ATTR_MIN_WIDTH, String.valueOf(mMinWidth));
1673 out.attribute(null, ATTR_MIN_HEIGHT, String.valueOf(mMinHeight));
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001674 out.attribute(null, ATTR_PERSIST_TASK_VERSION, String.valueOf(PERSIST_TASK_VERSION));
Winson Chung2cb86c72014-06-25 12:03:30 -07001675
Craig Mautner21d24a22014-04-23 11:45:37 -07001676 if (affinityIntent != null) {
1677 out.startTag(null, TAG_AFFINITYINTENT);
1678 affinityIntent.saveToXml(out);
1679 out.endTag(null, TAG_AFFINITYINTENT);
1680 }
1681
Winson Chung36f3f032016-09-08 23:29:43 +00001682 out.startTag(null, TAG_INTENT);
1683 intent.saveToXml(out);
1684 out.endTag(null, TAG_INTENT);
Craig Mautner21d24a22014-04-23 11:45:37 -07001685
1686 final ArrayList<ActivityRecord> activities = mActivities;
1687 final int numActivities = activities.size();
1688 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1689 final ActivityRecord r = activities.get(activityNdx);
Craig Mautner43e52ed2014-06-16 17:18:52 -07001690 if (r.info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY || !r.isPersistable() ||
Wale Ogunwale843bfb92015-03-27 11:06:48 -07001691 ((r.intent.getFlags() & FLAG_ACTIVITY_NEW_DOCUMENT
1692 | FLAG_ACTIVITY_RETAIN_IN_RECENTS) == FLAG_ACTIVITY_NEW_DOCUMENT) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -07001693 activityNdx > 0) {
Craig Mautnerf357c0c2014-06-09 09:23:27 -07001694 // Stop at first non-persistable or first break in task (CLEAR_WHEN_TASK_RESET).
Craig Mautner21d24a22014-04-23 11:45:37 -07001695 break;
1696 }
1697 out.startTag(null, TAG_ACTIVITY);
1698 r.saveToXml(out);
1699 out.endTag(null, TAG_ACTIVITY);
1700 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001701 }
1702
Winson Chung36f3f032016-09-08 23:29:43 +00001703 static TaskRecord restoreFromXml(XmlPullParser in, ActivityStackSupervisor stackSupervisor)
1704 throws IOException, XmlPullParserException {
Craig Mautner21d24a22014-04-23 11:45:37 -07001705 Intent intent = null;
1706 Intent affinityIntent = null;
Winsonc809cbb2015-11-02 12:06:15 -08001707 ArrayList<ActivityRecord> activities = new ArrayList<>();
Craig Mautner21d24a22014-04-23 11:45:37 -07001708 ComponentName realActivity = null;
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001709 boolean realActivitySuspended = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001710 ComponentName origActivity = null;
1711 String affinity = null;
Dianne Hackborn79228822014-09-16 11:11:23 -07001712 String rootAffinity = null;
1713 boolean hasRootAffinity = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001714 boolean rootHasReset = false;
Dianne Hackborn13420f22014-07-18 15:43:56 -07001715 boolean autoRemoveRecents = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001716 boolean askedCompatMode = false;
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001717 int taskType = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07001718 int userId = 0;
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001719 boolean userSetupComplete = true;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001720 int effectiveUid = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001721 String lastDescription = null;
1722 long lastTimeOnTop = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001723 boolean neverRelinquishIdentity = true;
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001724 int taskId = INVALID_TASK_ID;
Craig Mautner21d24a22014-04-23 11:45:37 -07001725 final int outerDepth = in.getDepth();
Craig Mautner648f69b2014-09-18 14:16:26 -07001726 TaskDescription taskDescription = new TaskDescription();
Wale Ogunwale18795a22014-12-03 11:38:33 -08001727 int taskAffiliation = INVALID_TASK_ID;
Winson Chungec396d62014-08-06 17:08:00 -07001728 int taskAffiliationColor = 0;
Wale Ogunwale18795a22014-12-03 11:38:33 -08001729 int prevTaskId = INVALID_TASK_ID;
1730 int nextTaskId = INVALID_TASK_ID;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001731 int callingUid = -1;
1732 String callingPackage = "";
Wale Ogunwaled829d362016-02-10 19:24:49 -08001733 int resizeMode = RESIZE_MODE_FORCE_RESIZEABLE;
Winson Chungd3395382016-12-13 11:49:09 -08001734 boolean supportsPictureInPicture = false;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001735 Rect bounds = null;
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001736 int minWidth = INVALID_MIN_SIZE;
1737 int minHeight = INVALID_MIN_SIZE;
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001738 int persistTaskVersion = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07001739
1740 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1741 final String attrName = in.getAttributeName(attrNdx);
1742 final String attrValue = in.getAttributeValue(attrNdx);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001743 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: attribute name=" +
1744 attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001745 if (ATTR_TASKID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001746 if (taskId == INVALID_TASK_ID) taskId = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001747 } else if (ATTR_REALACTIVITY.equals(attrName)) {
1748 realActivity = ComponentName.unflattenFromString(attrValue);
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001749 } else if (ATTR_REALACTIVITY_SUSPENDED.equals(attrName)) {
1750 realActivitySuspended = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001751 } else if (ATTR_ORIGACTIVITY.equals(attrName)) {
1752 origActivity = ComponentName.unflattenFromString(attrValue);
1753 } else if (ATTR_AFFINITY.equals(attrName)) {
1754 affinity = attrValue;
Dianne Hackborn79228822014-09-16 11:11:23 -07001755 } else if (ATTR_ROOT_AFFINITY.equals(attrName)) {
1756 rootAffinity = attrValue;
1757 hasRootAffinity = true;
Craig Mautner21d24a22014-04-23 11:45:37 -07001758 } else if (ATTR_ROOTHASRESET.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001759 rootHasReset = Boolean.parseBoolean(attrValue);
Dianne Hackborn13420f22014-07-18 15:43:56 -07001760 } else if (ATTR_AUTOREMOVERECENTS.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001761 autoRemoveRecents = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001762 } else if (ATTR_ASKEDCOMPATMODE.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001763 askedCompatMode = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001764 } else if (ATTR_USERID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001765 userId = Integer.parseInt(attrValue);
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001766 } else if (ATTR_USER_SETUP_COMPLETE.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001767 userSetupComplete = Boolean.parseBoolean(attrValue);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001768 } else if (ATTR_EFFECTIVE_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001769 effectiveUid = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001770 } else if (ATTR_TASKTYPE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001771 taskType = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001772 } else if (ATTR_LASTDESCRIPTION.equals(attrName)) {
1773 lastDescription = attrValue;
1774 } else if (ATTR_LASTTIMEMOVED.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001775 lastTimeOnTop = Long.parseLong(attrValue);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001776 } else if (ATTR_NEVERRELINQUISH.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001777 neverRelinquishIdentity = Boolean.parseBoolean(attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001778 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1779 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001780 } else if (ATTR_TASK_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001781 taskAffiliation = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001782 } else if (ATTR_PREV_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001783 prevTaskId = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001784 } else if (ATTR_NEXT_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001785 nextTaskId = Integer.parseInt(attrValue);
Winson Chungec396d62014-08-06 17:08:00 -07001786 } else if (ATTR_TASK_AFFILIATION_COLOR.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001787 taskAffiliationColor = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001788 } else if (ATTR_CALLING_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001789 callingUid = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001790 } else if (ATTR_CALLING_PACKAGE.equals(attrName)) {
1791 callingPackage = attrValue;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001792 } else if (ATTR_RESIZE_MODE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001793 resizeMode = Integer.parseInt(attrValue);
Winson Chungd3395382016-12-13 11:49:09 -08001794 } else if (ATTR_SUPPORTS_PICTURE_IN_PICTURE.equals(attrName)) {
1795 supportsPictureInPicture = Boolean.parseBoolean(attrValue);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001796 } else if (ATTR_NON_FULLSCREEN_BOUNDS.equals(attrName)) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001797 bounds = Rect.unflattenFromString(attrValue);
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001798 } else if (ATTR_MIN_WIDTH.equals(attrName)) {
1799 minWidth = Integer.parseInt(attrValue);
1800 } else if (ATTR_MIN_HEIGHT.equals(attrName)) {
1801 minHeight = Integer.parseInt(attrValue);
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001802 } else if (ATTR_PERSIST_TASK_VERSION.equals(attrName)) {
1803 persistTaskVersion = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001804 } else {
1805 Slog.w(TAG, "TaskRecord: Unknown attribute=" + attrName);
1806 }
1807 }
1808
1809 int event;
1810 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
Ben Kwa8814cf42015-07-08 10:54:56 -07001811 (event != XmlPullParser.END_TAG || in.getDepth() >= outerDepth)) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001812 if (event == XmlPullParser.START_TAG) {
1813 final String name = in.getName();
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001814 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: START_TAG name=" +
1815 name);
Craig Mautner21d24a22014-04-23 11:45:37 -07001816 if (TAG_AFFINITYINTENT.equals(name)) {
1817 affinityIntent = Intent.restoreFromXml(in);
1818 } else if (TAG_INTENT.equals(name)) {
1819 intent = Intent.restoreFromXml(in);
1820 } else if (TAG_ACTIVITY.equals(name)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001821 ActivityRecord activity = ActivityRecord.restoreFromXml(in, stackSupervisor);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001822 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: activity=" +
1823 activity);
Craig Mautner21d24a22014-04-23 11:45:37 -07001824 if (activity != null) {
1825 activities.add(activity);
1826 }
1827 } else {
1828 Slog.e(TAG, "restoreTask: Unexpected name=" + name);
1829 XmlUtils.skipCurrentTag(in);
1830 }
1831 }
1832 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001833 if (!hasRootAffinity) {
1834 rootAffinity = affinity;
1835 } else if ("@".equals(rootAffinity)) {
1836 rootAffinity = null;
1837 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001838 if (effectiveUid <= 0) {
1839 Intent checkIntent = intent != null ? intent : affinityIntent;
1840 effectiveUid = 0;
1841 if (checkIntent != null) {
1842 IPackageManager pm = AppGlobals.getPackageManager();
1843 try {
1844 ApplicationInfo ai = pm.getApplicationInfo(
1845 checkIntent.getComponent().getPackageName(),
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07001846 PackageManager.MATCH_UNINSTALLED_PACKAGES
1847 | PackageManager.MATCH_DISABLED_COMPONENTS, userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001848 if (ai != null) {
1849 effectiveUid = ai.uid;
1850 }
1851 } catch (RemoteException e) {
1852 }
1853 }
1854 Slog.w(TAG, "Updating task #" + taskId + " for " + checkIntent
1855 + ": effectiveUid=" + effectiveUid);
1856 }
1857
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001858 if (persistTaskVersion < 1) {
1859 // We need to convert the resize mode of home activities saved before version one if
1860 // they are marked as RESIZE_MODE_RESIZEABLE to RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION
1861 // since we didn't have that differentiation before version 1 and the system didn't
1862 // resize home activities before then.
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001863 if (taskType == 1 /* old home type */ && resizeMode == RESIZE_MODE_RESIZEABLE) {
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001864 resizeMode = RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
1865 }
Winson Chungd3395382016-12-13 11:49:09 -08001866 } else {
1867 // This activity has previously marked itself explicitly as both resizeable and
1868 // supporting picture-in-picture. Since there is no longer a requirement for
1869 // picture-in-picture activities to be resizeable, we can mark this simply as
1870 // resizeable and supporting picture-in-picture separately.
1871 if (resizeMode == RESIZE_MODE_RESIZEABLE_AND_PIPABLE_DEPRECATED) {
1872 resizeMode = RESIZE_MODE_RESIZEABLE;
1873 supportsPictureInPicture = true;
1874 }
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001875 }
1876
Winson Chung36f3f032016-09-08 23:29:43 +00001877 final TaskRecord task = new TaskRecord(stackSupervisor.mService, taskId, intent,
Dianne Hackborn79228822014-09-16 11:11:23 -07001878 affinityIntent, affinity, rootAffinity, realActivity, origActivity, rootHasReset,
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07001879 autoRemoveRecents, askedCompatMode, userId, effectiveUid, lastDescription,
Winson Chungfb44d212017-10-04 11:39:10 -07001880 activities, lastTimeOnTop, neverRelinquishIdentity, taskDescription,
1881 taskAffiliation, prevTaskId, nextTaskId, taskAffiliationColor, callingUid,
Charles He2bf28322017-10-12 22:24:49 +01001882 callingPackage, resizeMode, supportsPictureInPicture, realActivitySuspended,
1883 userSetupComplete, minWidth, minHeight);
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07001884 task.updateOverrideConfiguration(bounds);
Craig Mautner21d24a22014-04-23 11:45:37 -07001885
1886 for (int activityNdx = activities.size() - 1; activityNdx >=0; --activityNdx) {
Bryce Leeaf691c02017-03-20 14:20:22 -07001887 activities.get(activityNdx).setTask(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001888 }
1889
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001890 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "Restored task=" + task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001891 return task;
1892 }
1893
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001894 private void adjustForMinimalTaskDimensions(Rect bounds) {
1895 if (bounds == null) {
1896 return;
1897 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001898 int minWidth = mMinWidth;
1899 int minHeight = mMinHeight;
Robert Carr9c5867d2016-03-10 15:52:46 -08001900 // If the task has no requested minimal size, we'd like to enforce a minimal size
1901 // so that the user can not render the task too small to manipulate. We don't need
1902 // to do this for the pinned stack as the bounds are controlled by the system.
Wale Ogunwale44f036f2017-09-29 05:09:09 -07001903 if (!inPinnedWindowingMode()) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001904 if (minWidth == INVALID_MIN_SIZE) {
1905 minWidth = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07001906 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001907 if (minHeight == INVALID_MIN_SIZE) {
1908 minHeight = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07001909 }
Robert Carr9c5867d2016-03-10 15:52:46 -08001910 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001911 final boolean adjustWidth = minWidth > bounds.width();
1912 final boolean adjustHeight = minHeight > bounds.height();
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001913 if (!(adjustWidth || adjustHeight)) {
1914 return;
1915 }
1916
1917 if (adjustWidth) {
1918 if (mBounds != null && bounds.right == mBounds.right) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001919 bounds.left = bounds.right - minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001920 } else {
1921 // Either left bounds match, or neither match, or the previous bounds were
1922 // fullscreen and we default to keeping left.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001923 bounds.right = bounds.left + minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001924 }
1925 }
1926 if (adjustHeight) {
1927 if (mBounds != null && bounds.bottom == mBounds.bottom) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001928 bounds.top = bounds.bottom - minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001929 } else {
1930 // Either top bounds match, or neither match, or the previous bounds were
1931 // fullscreen and we default to keeping top.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001932 bounds.bottom = bounds.top + minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001933 }
1934 }
1935 }
1936
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001937 /**
Winson Chung5af42fc2017-03-24 17:11:33 -07001938 * @return a new Configuration for this Task, given the provided {@param bounds} and
1939 * {@param insetBounds}.
1940 */
1941 Configuration computeNewOverrideConfigurationForBounds(Rect bounds, Rect insetBounds) {
1942 // Compute a new override configuration for the given bounds, if fullscreen bounds
1943 // (bounds == null), then leave the override config unset
1944 final Configuration newOverrideConfig = new Configuration();
1945 if (bounds != null) {
1946 newOverrideConfig.setTo(getOverrideConfiguration());
1947 mTmpRect.set(bounds);
1948 adjustForMinimalTaskDimensions(mTmpRect);
1949 computeOverrideConfiguration(newOverrideConfig, mTmpRect, insetBounds,
1950 mTmpRect.right != bounds.right, mTmpRect.bottom != bounds.bottom);
1951 }
1952
1953 return newOverrideConfig;
1954 }
1955
1956 /**
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001957 * Update task's override configuration based on the bounds.
Jorim Jaggi0a932142016-02-01 17:42:25 -08001958 * @param bounds The bounds of the task.
Andrii Kulian8072d112016-09-16 11:11:01 -07001959 * @return True if the override configuration was updated.
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001960 */
Andrii Kulian8072d112016-09-16 11:11:01 -07001961 boolean updateOverrideConfiguration(Rect bounds) {
Jorim Jaggi0a932142016-02-01 17:42:25 -08001962 return updateOverrideConfiguration(bounds, null /* insetBounds */);
1963 }
1964
1965 /**
1966 * Update task's override configuration based on the bounds.
1967 * @param bounds The bounds of the task.
1968 * @param insetBounds The bounds used to calculate the system insets, which is used here to
1969 * subtract the navigation bar/status bar size from the screen size reported
1970 * to the application. See {@link IActivityManager#resizeDockedStack}.
Andrii Kulian8072d112016-09-16 11:11:01 -07001971 * @return True if the override configuration was updated.
Jorim Jaggi0a932142016-02-01 17:42:25 -08001972 */
Andrii Kulian8072d112016-09-16 11:11:01 -07001973 boolean updateOverrideConfiguration(Rect bounds, @Nullable Rect insetBounds) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001974 if (Objects.equals(mBounds, bounds)) {
Andrii Kulian8072d112016-09-16 11:11:01 -07001975 return false;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001976 }
Andrii Kulian1779e612016-10-12 21:58:25 -07001977 mTmpConfig.setTo(getOverrideConfiguration());
Wale Ogunwale5f986092015-12-04 15:35:38 -08001978 final boolean oldFullscreen = mFullscreen;
Andrii Kulian1779e612016-10-12 21:58:25 -07001979 final Configuration newConfig = getOverrideConfiguration();
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001980
1981 mFullscreen = bounds == null;
Wale Ogunwale3382ab12017-07-27 08:55:03 -07001982 final boolean persistBounds = getWindowConfiguration().persistTaskBounds();
Wale Ogunwale706ed792015-08-02 10:29:44 -07001983 if (mFullscreen) {
Wale Ogunwale3382ab12017-07-27 08:55:03 -07001984 if (mBounds != null && persistBounds) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001985 mLastNonFullscreenBounds = mBounds;
1986 }
1987 mBounds = null;
Andrii Kulian1779e612016-10-12 21:58:25 -07001988 newConfig.unset();
Wale Ogunwale706ed792015-08-02 10:29:44 -07001989 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001990 mTmpRect.set(bounds);
1991 adjustForMinimalTaskDimensions(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001992 if (mBounds == null) {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001993 mBounds = new Rect(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001994 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001995 mBounds.set(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001996 }
Wale Ogunwale3382ab12017-07-27 08:55:03 -07001997 if (mStack == null || persistBounds) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001998 mLastNonFullscreenBounds = mBounds;
1999 }
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002000 computeOverrideConfiguration(newConfig, mTmpRect, insetBounds,
Andrii Kuliandaea3572016-04-08 13:20:51 -07002001 mTmpRect.right != bounds.right, mTmpRect.bottom != bounds.bottom);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002002 }
Andrii Kulian1779e612016-10-12 21:58:25 -07002003 onOverrideConfigurationChanged(newConfig);
Wale Ogunwale5f986092015-12-04 15:35:38 -08002004
2005 if (mFullscreen != oldFullscreen) {
Winson Chung5af42fc2017-03-24 17:11:33 -07002006 mService.mStackSupervisor.scheduleUpdateMultiWindowMode(this);
Wale Ogunwale5f986092015-12-04 15:35:38 -08002007 }
2008
Andrii Kulian1779e612016-10-12 21:58:25 -07002009 return !mTmpConfig.equals(newConfig);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002010 }
2011
Andrii Kulian1779e612016-10-12 21:58:25 -07002012 /** Clears passed config and fills it with new override values. */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002013 // TODO(b/36505427): TaskRecord.computeOverrideConfiguration() is a utility method that doesn't
2014 // depend on task or stacks, but uses those object to get the display to base the calculation
2015 // on. Probably best to centralize calculations like this in ConfigurationContainer.
2016 void computeOverrideConfiguration(Configuration config, Rect bounds, Rect insetBounds,
Andrii Kuliana8a9bc52016-10-14 11:00:13 -07002017 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002018 mTmpNonDecorBounds.set(bounds);
2019 mTmpStableBounds.set(bounds);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002020
Andrii Kulian1779e612016-10-12 21:58:25 -07002021 config.unset();
Winson Chungbdc646f2017-02-13 12:12:22 -08002022 final Configuration parentConfig = getParent().getConfiguration();
Bryce Lee7566d762017-03-30 09:34:15 -07002023
Andrii Kulian1779e612016-10-12 21:58:25 -07002024 final float density = parentConfig.densityDpi * DisplayMetrics.DENSITY_DEFAULT_SCALE;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002025
Winson Chungbdc646f2017-02-13 12:12:22 -08002026 if (mStack != null) {
2027 final StackWindowController stackController = mStack.getWindowContainerController();
2028 stackController.adjustConfigurationForBounds(bounds, insetBounds,
2029 mTmpNonDecorBounds, mTmpStableBounds, overrideWidth, overrideHeight, density,
2030 config, parentConfig);
2031 } else {
Bryce Lee7566d762017-03-30 09:34:15 -07002032 throw new IllegalArgumentException("Expected stack when calculating override config");
Winson Chungbdc646f2017-02-13 12:12:22 -08002033 }
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002034
Winson Chung60c1aba2017-03-14 17:47:42 -07002035 config.orientation = (config.screenWidthDp <= config.screenHeightDp)
2036 ? Configuration.ORIENTATION_PORTRAIT
2037 : Configuration.ORIENTATION_LANDSCAPE;
2038
Jorim Jaggi85639432016-05-06 17:27:55 -07002039 // For calculating screen layout, we need to use the non-decor inset screen area for the
2040 // calculation for compatibility reasons, i.e. screen area without system bars that could
2041 // never go away in Honeycomb.
Winson Chungbdc646f2017-02-13 12:12:22 -08002042 final int compatScreenWidthDp = (int) (mTmpNonDecorBounds.width() / density);
2043 final int compatScreenHeightDp = (int) (mTmpNonDecorBounds.height() / density);
Andrii Kulian1779e612016-10-12 21:58:25 -07002044 // We're only overriding LONG, SIZE and COMPAT parts of screenLayout, so we start override
2045 // calculation with partial default.
2046 final int sl = Configuration.SCREENLAYOUT_LONG_YES | Configuration.SCREENLAYOUT_SIZE_XLARGE;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002047 final int longSize = Math.max(compatScreenHeightDp, compatScreenWidthDp);
Andrii Kulian1779e612016-10-12 21:58:25 -07002048 final int shortSize = Math.min(compatScreenHeightDp, compatScreenWidthDp);
Jorim Jaggi85639432016-05-06 17:27:55 -07002049 config.screenLayout = Configuration.reduceScreenLayout(sl, longSize, shortSize);
2050
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08002051 }
2052
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08002053 Rect updateOverrideConfigurationFromLaunchBounds() {
2054 final Rect bounds = validateBounds(getLaunchBounds());
2055 updateOverrideConfiguration(bounds);
Andrii Kulian73336d812016-03-24 12:56:08 -07002056 if (bounds != null) {
2057 bounds.set(mBounds);
2058 }
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08002059 return bounds;
2060 }
2061
2062 static Rect validateBounds(Rect bounds) {
2063 if (bounds != null && bounds.isEmpty()) {
2064 Slog.wtf(TAG, "Received strange task bounds: " + bounds, new Throwable());
2065 return null;
2066 }
2067 return bounds;
2068 }
2069
Wale Ogunwale935e5022015-11-10 12:36:10 -08002070 /** Updates the task's bounds and override configuration to match what is expected for the
2071 * input stack. */
2072 void updateOverrideConfigurationForStack(ActivityStack inStack) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002073 if (mStack != null && mStack == inStack) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08002074 return;
2075 }
2076
Wale Ogunwale44f036f2017-09-29 05:09:09 -07002077 if (inStack.inFreeformWindowingMode()) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002078 if (!isResizeable()) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08002079 throw new IllegalArgumentException("Can not position non-resizeable task="
2080 + this + " in stack=" + inStack);
2081 }
2082 if (mBounds != null) {
2083 return;
2084 }
2085 if (mLastNonFullscreenBounds != null) {
2086 updateOverrideConfiguration(mLastNonFullscreenBounds);
2087 } else {
2088 inStack.layoutTaskInStack(this, null);
2089 }
2090 } else {
2091 updateOverrideConfiguration(inStack.mBounds);
2092 }
2093 }
2094
Wale Ogunwale706ed792015-08-02 10:29:44 -07002095 /** Returns the bounds that should be used to launch this task. */
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002096 private Rect getLaunchBounds() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002097 if (mStack == null) {
Chong Zhang7d5f5102016-01-13 10:29:24 -08002098 return null;
2099 }
2100
Wale Ogunwale04a05ac2017-09-17 21:35:02 -07002101 final int windowingMode = getWindowingMode();
2102 if (!isActivityTypeStandardOrUndefined()
2103 || windowingMode == WINDOWING_MODE_FULLSCREEN
2104 || (windowingMode == WINDOWING_MODE_SPLIT_SCREEN_PRIMARY && !isResizeable())) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002105 return isResizeable() ? mStack.mBounds : null;
Wale Ogunwale3382ab12017-07-27 08:55:03 -07002106 } else if (!getWindowConfiguration().persistTaskBounds()) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002107 return mStack.mBounds;
Wale Ogunwale706ed792015-08-02 10:29:44 -07002108 }
2109 return mLastNonFullscreenBounds;
2110 }
2111
Jorim Jaggi8b702ed2017-01-20 16:59:03 +01002112 void addStartingWindowsForVisibleActivities(boolean taskSwitch) {
2113 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2114 final ActivityRecord r = mActivities.get(activityNdx);
2115 if (r.visible) {
2116 r.showStartingWindow(null /* prev */, false /* newTask */, taskSwitch);
2117 }
2118 }
2119 }
2120
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002121 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002122 pw.print(prefix); pw.print("userId="); pw.print(userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07002123 pw.print(" effectiveUid="); UserHandle.formatUid(pw, effectiveUid);
2124 pw.print(" mCallingUid="); UserHandle.formatUid(pw, mCallingUid);
Suprabh Shukla7745c142016-03-07 18:21:10 -08002125 pw.print(" mUserSetupComplete="); pw.print(mUserSetupComplete);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002126 pw.print(" mCallingPackage="); pw.println(mCallingPackage);
Dianne Hackborn79228822014-09-16 11:11:23 -07002127 if (affinity != null || rootAffinity != null) {
2128 pw.print(prefix); pw.print("affinity="); pw.print(affinity);
2129 if (affinity == null || !affinity.equals(rootAffinity)) {
2130 pw.print(" root="); pw.println(rootAffinity);
2131 } else {
2132 pw.println();
2133 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002134 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07002135 if (voiceSession != null || voiceInteractor != null) {
2136 pw.print(prefix); pw.print("VOICE: session=0x");
2137 pw.print(Integer.toHexString(System.identityHashCode(voiceSession)));
2138 pw.print(" interactor=0x");
2139 pw.println(Integer.toHexString(System.identityHashCode(voiceInteractor)));
2140 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002141 if (intent != null) {
2142 StringBuilder sb = new StringBuilder(128);
2143 sb.append(prefix); sb.append("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08002144 intent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002145 sb.append('}');
2146 pw.println(sb.toString());
2147 }
2148 if (affinityIntent != null) {
2149 StringBuilder sb = new StringBuilder(128);
2150 sb.append(prefix); sb.append("affinityIntent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08002151 affinityIntent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002152 sb.append('}');
2153 pw.println(sb.toString());
2154 }
2155 if (origActivity != null) {
2156 pw.print(prefix); pw.print("origActivity=");
2157 pw.println(origActivity.flattenToShortString());
2158 }
2159 if (realActivity != null) {
2160 pw.print(prefix); pw.print("realActivity=");
2161 pw.println(realActivity.flattenToShortString());
2162 }
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07002163 if (autoRemoveRecents || isPersistable || !isActivityTypeStandard()
2164 || mTaskToReturnTo != ACTIVITY_TYPE_STANDARD || numFullscreen != 0) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002165 pw.print(prefix); pw.print("autoRemoveRecents="); pw.print(autoRemoveRecents);
Dianne Hackborn852975d2014-08-22 17:42:43 -07002166 pw.print(" isPersistable="); pw.print(isPersistable);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002167 pw.print(" numFullscreen="); pw.print(numFullscreen);
Wale Ogunwale6fbde9f2017-08-24 07:24:12 -07002168 pw.print(" activityType="); pw.print(getActivityType());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002169 pw.print(" mTaskToReturnTo="); pw.println(mTaskToReturnTo);
2170 }
Craig Mautner432f64e2015-05-20 14:59:57 -07002171 if (rootWasReset || mNeverRelinquishIdentity || mReuseTask
2172 || mLockTaskAuth != LOCK_TASK_AUTH_PINNABLE) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002173 pw.print(prefix); pw.print("rootWasReset="); pw.print(rootWasReset);
2174 pw.print(" mNeverRelinquishIdentity="); pw.print(mNeverRelinquishIdentity);
Craig Mautner432f64e2015-05-20 14:59:57 -07002175 pw.print(" mReuseTask="); pw.print(mReuseTask);
2176 pw.print(" mLockTaskAuth="); pw.println(lockTaskAuthToString());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002177 }
Wale Ogunwale18795a22014-12-03 11:38:33 -08002178 if (mAffiliatedTaskId != taskId || mPrevAffiliateTaskId != INVALID_TASK_ID
2179 || mPrevAffiliate != null || mNextAffiliateTaskId != INVALID_TASK_ID
2180 || mNextAffiliate != null) {
Dianne Hackborn852975d2014-08-22 17:42:43 -07002181 pw.print(prefix); pw.print("affiliation="); pw.print(mAffiliatedTaskId);
2182 pw.print(" prevAffiliation="); pw.print(mPrevAffiliateTaskId);
2183 pw.print(" (");
2184 if (mPrevAffiliate == null) {
2185 pw.print("null");
2186 } else {
2187 pw.print(Integer.toHexString(System.identityHashCode(mPrevAffiliate)));
2188 }
2189 pw.print(") nextAffiliation="); pw.print(mNextAffiliateTaskId);
2190 pw.print(" (");
2191 if (mNextAffiliate == null) {
2192 pw.print("null");
2193 } else {
2194 pw.print(Integer.toHexString(System.identityHashCode(mNextAffiliate)));
2195 }
2196 pw.println(")");
2197 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002198 pw.print(prefix); pw.print("Activities="); pw.println(mActivities);
Dianne Hackborn852975d2014-08-22 17:42:43 -07002199 if (!askedCompatMode || !inRecents || !isAvailable) {
2200 pw.print(prefix); pw.print("askedCompatMode="); pw.print(askedCompatMode);
2201 pw.print(" inRecents="); pw.print(inRecents);
2202 pw.print(" isAvailable="); pw.println(isAvailable);
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07002203 }
Dianne Hackborn852975d2014-08-22 17:42:43 -07002204 if (lastDescription != null) {
2205 pw.print(prefix); pw.print("lastDescription="); pw.println(lastDescription);
2206 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07002207 pw.print(prefix); pw.print("stackId="); pw.println(getStackId());
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002208 pw.print(prefix + "hasBeenVisible=" + hasBeenVisible);
2209 pw.print(" mResizeMode=" + ActivityInfo.resizeModeToString(mResizeMode));
Winson Chungd3395382016-12-13 11:49:09 -08002210 pw.print(" mSupportsPictureInPicture=" + mSupportsPictureInPicture);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002211 pw.print(" isResizeable=" + isResizeable());
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002212 pw.print(" lastActiveTime=" + lastActiveTime);
2213 pw.println(" (inactive for " + (getInactiveDuration() / 1000) + "s)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002214 }
2215
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002216 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002217 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002218 StringBuilder sb = new StringBuilder(128);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002219 if (stringName != null) {
2220 sb.append(stringName);
2221 sb.append(" U=");
2222 sb.append(userId);
Wale Ogunwale6c5eb1c2015-11-10 07:52:22 -08002223 sb.append(" StackId=");
Andrii Kulian02b7a832016-10-06 23:11:56 -07002224 sb.append(getStackId());
Craig Mautnerde4ef022013-04-07 19:01:33 -07002225 sb.append(" sz=");
2226 sb.append(mActivities.size());
2227 sb.append('}');
2228 return sb.toString();
2229 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002230 sb.append("TaskRecord{");
2231 sb.append(Integer.toHexString(System.identityHashCode(this)));
2232 sb.append(" #");
2233 sb.append(taskId);
2234 if (affinity != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002235 sb.append(" A=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002236 sb.append(affinity);
2237 } else if (intent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002238 sb.append(" I=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002239 sb.append(intent.getComponent().flattenToShortString());
2240 } else if (affinityIntent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002241 sb.append(" aI=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002242 sb.append(affinityIntent.getComponent().flattenToShortString());
2243 } else {
2244 sb.append(" ??");
2245 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002246 stringName = sb.toString();
2247 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002248 }
Steven Timotius4346f0a2017-09-12 11:07:21 -07002249
2250 public void writeToProto(ProtoOutputStream proto, long fieldId) {
2251 final long token = proto.start(fieldId);
2252 super.writeToProto(proto, CONFIGURATION_CONTAINER);
2253 proto.write(ID, taskId);
2254 for (int i = mActivities.size() - 1; i >= 0; i--) {
2255 ActivityRecord activity = mActivities.get(i);
2256 activity.writeToProto(proto, ACTIVITIES);
2257 }
2258 proto.write(STACK_ID, mStack.mStackId);
2259 if (mLastNonFullscreenBounds != null) {
2260 mLastNonFullscreenBounds.writeToProto(proto, LAST_NON_FULLSCREEN_BOUNDS);
2261 }
2262 if (realActivity != null) {
2263 proto.write(REAL_ACTIVITY, realActivity.flattenToShortString());
2264 }
2265 if (origActivity != null) {
2266 proto.write(ORIG_ACTIVITY, origActivity.flattenToShortString());
2267 }
2268 proto.write(ACTIVITY_TYPE, getActivityType());
2269 proto.write(RETURN_TO_TYPE, mTaskToReturnTo);
2270 proto.write(RESIZE_MODE, mResizeMode);
2271 proto.write(FULLSCREEN, mFullscreen);
2272 if (mBounds != null) {
2273 mBounds.writeToProto(proto, BOUNDS);
2274 }
2275 proto.write(MIN_WIDTH, mMinWidth);
2276 proto.write(MIN_HEIGHT, mMinHeight);
2277 proto.end(token);
2278 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002279}