blob: 24e069292f8a1089072ca392d6dbf7f35b316b06 [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
Winson Chung74666102017-02-22 17:49:24 -080019import android.annotation.IntDef;
Jorim Jaggi0a932142016-02-01 17:42:25 -080020import android.annotation.Nullable;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -070021import android.app.Activity;
Craig Mautner9db9a0b2013-04-29 17:05:56 -070022import android.app.ActivityManager;
Wale Ogunwale3797c222015-10-27 14:21:58 -070023import android.app.ActivityManager.StackId;
Craig Mautner648f69b2014-09-18 14:16:26 -070024import android.app.ActivityManager.TaskDescription;
Jorim Jaggie2c77f92016-12-29 14:57:22 +010025import android.app.ActivityManager.TaskSnapshot;
Wale Ogunwaleff3c66c2015-11-18 19:22:49 -080026import android.app.ActivityManager.TaskThumbnail;
Winsonc809cbb2015-11-02 12:06:15 -080027import android.app.ActivityManager.TaskThumbnailInfo;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -070028import android.app.ActivityOptions;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070029import android.app.AppGlobals;
Jorim Jaggi0a932142016-02-01 17:42:25 -080030import android.app.IActivityManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.content.ComponentName;
32import android.content.Intent;
33import android.content.pm.ActivityInfo;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070034import android.content.pm.ApplicationInfo;
35import android.content.pm.IPackageManager;
36import android.content.pm.PackageManager;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070037import android.content.res.Configuration;
Craig Mautner9db9a0b2013-04-29 17:05:56 -070038import android.graphics.Bitmap;
Winsonc809cbb2015-11-02 12:06:15 -080039import android.graphics.Point;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070040import android.graphics.Rect;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070041import android.os.Debug;
Craig Mautnerc0ffce52014-07-01 12:38:52 -070042import android.os.ParcelFileDescriptor;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070043import android.os.RemoteException;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080044import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070045import android.os.UserHandle;
Suprabh Shukla7745c142016-03-07 18:21:10 -080046import android.provider.Settings;
Dianne Hackborn91097de2014-04-04 18:02:06 -070047import android.service.voice.IVoiceInteractionSession;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070048import android.util.DisplayMetrics;
Dianne Hackborn7f96b792012-05-29 18:46:45 -070049import android.util.Slog;
Suprabh Shukla23593142015-11-03 17:31:15 -080050
Bryce Lee04ab3462017-04-10 15:06:33 -070051import com.android.internal.annotations.VisibleForTesting;
Dianne Hackborn91097de2014-04-04 18:02:06 -070052import com.android.internal.app.IVoiceInteractor;
Craig Mautner21d24a22014-04-23 11:45:37 -070053import com.android.internal.util.XmlUtils;
Suprabh Shukla23593142015-11-03 17:31:15 -080054
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -080055import com.android.server.wm.AppWindowContainerController;
Winson Chungbdc646f2017-02-13 12:12:22 -080056import com.android.server.wm.StackWindowController;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080057import com.android.server.wm.TaskWindowContainerController;
Jorim Jaggifb9d78a2017-01-05 18:57:12 +010058import com.android.server.wm.TaskWindowContainerListener;
Winson Chung74666102017-02-22 17:49:24 -080059import com.android.server.wm.WindowManagerService;
Jorim Jaggifb9d78a2017-01-05 18:57:12 +010060
Craig Mautner21d24a22014-04-23 11:45:37 -070061import org.xmlpull.v1.XmlPullParser;
62import org.xmlpull.v1.XmlPullParserException;
63import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064
Craig Mautnerc0ffce52014-07-01 12:38:52 -070065import java.io.File;
Craig Mautner21d24a22014-04-23 11:45:37 -070066import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080067import java.io.PrintWriter;
Winson Chung74666102017-02-22 17:49:24 -080068import java.lang.annotation.Retention;
69import java.lang.annotation.RetentionPolicy;
Craig Mautner5d9c7be2013-02-15 14:02:56 -080070import java.util.ArrayList;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070071import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080072
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080073import static android.app.ActivityManager.RESIZE_MODE_FORCED;
Winson Chung74666102017-02-22 17:49:24 -080074import static android.app.ActivityManager.RESIZE_MODE_SYSTEM;
Winson Chung83471632016-12-13 11:02:12 -080075import static android.app.ActivityManager.StackId.ASSISTANT_STACK_ID;
Jorim Jaggi0a932142016-02-01 17:42:25 -080076import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
77import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
78import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
79import static android.app.ActivityManager.StackId.HOME_STACK_ID;
80import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
81import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Matthew Ngae1ff4f2016-11-10 15:49:14 -080082import static android.app.ActivityManager.StackId.RECENTS_STACK_ID;
Jorim Jaggi0a932142016-02-01 17:42:25 -080083import static android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT;
84import static android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS;
Wale Ogunwale3eadad72016-10-13 09:16:59 -070085import static android.content.pm.ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY;
Jorim Jaggi0a932142016-02-01 17:42:25 -080086import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_ALWAYS;
87import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_DEFAULT;
88import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED;
89import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_NEVER;
skuhne@google.com322347b2016-12-02 12:54:03 -080090import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY;
91import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY;
92import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION;
Wale Ogunwaled829d362016-02-10 19:24:49 -080093import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZEABLE;
Wale Ogunwale625ed0c2016-10-18 08:50:31 -070094import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE;
Winson Chungd3395382016-12-13 11:49:09 -080095import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE_AND_PIPABLE_DEPRECATED;
Wale Ogunwale625ed0c2016-10-18 08:50:31 -070096import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
Jorim Jaggi0a932142016-02-01 17:42:25 -080097import static android.content.pm.ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -080098import static android.os.Trace.TRACE_TAG_ACTIVITY_MANAGER;
Suprabh Shukla7745c142016-03-07 18:21:10 -080099import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
Andrii Kulian036e3ad2017-04-19 10:55:10 -0700100import static android.view.Display.DEFAULT_DISPLAY;
101
Jorim Jaggi0a932142016-02-01 17:42:25 -0800102import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ADD_REMOVE;
103import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_LOCKTASK;
104import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RECENTS;
105import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
106import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_ADD_REMOVE;
107import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_LOCKTASK;
108import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RECENTS;
109import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
110import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
111import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Jorim Jaggi0a932142016-02-01 17:42:25 -0800112import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Winson Chung83471632016-12-13 11:02:12 -0800113import static com.android.server.am.ActivityRecord.ASSISTANT_ACTIVITY_TYPE;
Jorim Jaggi0a932142016-02-01 17:42:25 -0800114import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
115import static com.android.server.am.ActivityRecord.RECENTS_ACTIVITY_TYPE;
Wale Ogunwale3b232392016-05-13 15:37:13 -0700116import static com.android.server.am.ActivityRecord.STARTING_WINDOW_SHOWN;
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800117import static com.android.server.am.ActivityStack.REMOVE_TASK_MODE_MOVING;
Wale Ogunwale56d8d162017-05-30 11:12:20 -0700118import static com.android.server.am.ActivityStack.REMOVE_TASK_MODE_MOVING_TO_TOP;
Winson Chung6954fc92017-03-24 16:22:12 -0700119import static com.android.server.am.ActivityStackSupervisor.PAUSE_IMMEDIATELY;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800120import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
Jorim Jaggi0a932142016-02-01 17:42:25 -0800121
Winson Chung74666102017-02-22 17:49:24 -0800122import static java.lang.Integer.MAX_VALUE;
123
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100124final class TaskRecord extends ConfigurationContainer implements TaskWindowContainerListener {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800125 private static final String TAG = TAG_WITH_CLASS_NAME ? "TaskRecord" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700126 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700127 private static final String TAG_RECENTS = TAG + POSTFIX_RECENTS;
Craig Mautnere0570202015-05-13 13:06:11 -0700128 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700129 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800130
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700131 private static final String ATTR_TASKID = "task_id";
Craig Mautner21d24a22014-04-23 11:45:37 -0700132 private static final String TAG_INTENT = "intent";
133 private static final String TAG_AFFINITYINTENT = "affinity_intent";
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700134 private static final String ATTR_REALACTIVITY = "real_activity";
135 private static final String ATTR_REALACTIVITY_SUSPENDED = "real_activity_suspended";
Craig Mautner21d24a22014-04-23 11:45:37 -0700136 private static final String ATTR_ORIGACTIVITY = "orig_activity";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700137 private static final String TAG_ACTIVITY = "activity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700138 private static final String ATTR_AFFINITY = "affinity";
Dianne Hackborn79228822014-09-16 11:11:23 -0700139 private static final String ATTR_ROOT_AFFINITY = "root_affinity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700140 private static final String ATTR_ROOTHASRESET = "root_has_reset";
Dianne Hackborn13420f22014-07-18 15:43:56 -0700141 private static final String ATTR_AUTOREMOVERECENTS = "auto_remove_recents";
Craig Mautner21d24a22014-04-23 11:45:37 -0700142 private static final String ATTR_ASKEDCOMPATMODE = "asked_compat_mode";
143 private static final String ATTR_USERID = "user_id";
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800144 private static final String ATTR_USER_SETUP_COMPLETE = "user_setup_complete";
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700145 private static final String ATTR_EFFECTIVE_UID = "effective_uid";
Craig Mautner21d24a22014-04-23 11:45:37 -0700146 private static final String ATTR_TASKTYPE = "task_type";
Winson Chungffa2ec62014-07-03 15:54:42 -0700147 private static final String ATTR_FIRSTACTIVETIME = "first_active_time";
Winson Chungf1fbd772014-06-24 18:06:58 -0700148 private static final String ATTR_LASTACTIVETIME = "last_active_time";
Craig Mautner21d24a22014-04-23 11:45:37 -0700149 private static final String ATTR_LASTDESCRIPTION = "last_description";
150 private static final String ATTR_LASTTIMEMOVED = "last_time_moved";
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700151 private static final String ATTR_NEVERRELINQUISH = "never_relinquish_identity";
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700152 private static final String ATTR_TASK_AFFILIATION = "task_affiliation";
Craig Mautnera228ae92014-07-09 05:44:55 -0700153 private static final String ATTR_PREV_AFFILIATION = "prev_affiliation";
154 private static final String ATTR_NEXT_AFFILIATION = "next_affiliation";
Winson Chungec396d62014-08-06 17:08:00 -0700155 private static final String ATTR_TASK_AFFILIATION_COLOR = "task_affiliation_color";
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700156 private static final String ATTR_CALLING_UID = "calling_uid";
157 private static final String ATTR_CALLING_PACKAGE = "calling_package";
Winson Chungd3395382016-12-13 11:49:09 -0800158 private static final String ATTR_SUPPORTS_PICTURE_IN_PICTURE = "supports_picture_in_picture";
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800159 private static final String ATTR_RESIZE_MODE = "resize_mode";
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700160 private static final String ATTR_PRIVILEGED = "privileged";
Wale Ogunwale706ed792015-08-02 10:29:44 -0700161 private static final String ATTR_NON_FULLSCREEN_BOUNDS = "non_fullscreen_bounds";
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700162 private static final String ATTR_MIN_WIDTH = "min_width";
163 private static final String ATTR_MIN_HEIGHT = "min_height";
Wale Ogunwale625ed0c2016-10-18 08:50:31 -0700164 private static final String ATTR_PERSIST_TASK_VERSION = "persist_task_version";
Andrii Kulian18d75122016-03-27 20:20:28 -0700165
Wale Ogunwale625ed0c2016-10-18 08:50:31 -0700166 // Current version of the task record we persist. Used to check if we need to run any upgrade
167 // code.
168 private static final int PERSIST_TASK_VERSION = 1;
Craig Mautner21d24a22014-04-23 11:45:37 -0700169 private static final String TASK_THUMBNAIL_SUFFIX = "_task_thumbnail";
170
Wale Ogunwale18795a22014-12-03 11:38:33 -0800171 static final int INVALID_TASK_ID = -1;
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700172 private static final int INVALID_MIN_SIZE = -1;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800173
Winson Chung74666102017-02-22 17:49:24 -0800174 /**
175 * The modes to control how the stack is moved to the front when calling
176 * {@link TaskRecord#reparent}.
177 */
178 @Retention(RetentionPolicy.SOURCE)
179 @IntDef({
180 REPARENT_MOVE_STACK_TO_FRONT,
181 REPARENT_KEEP_STACK_AT_FRONT,
182 REPARENT_LEAVE_STACK_IN_PLACE
183 })
184 public @interface ReparentMoveStackMode {}
185 // Moves the stack to the front if it was not at the front
186 public static final int REPARENT_MOVE_STACK_TO_FRONT = 0;
187 // Only moves the stack to the front if it was focused or front most already
188 public static final int REPARENT_KEEP_STACK_AT_FRONT = 1;
189 // Do not move the stack as a part of reparenting
190 public static final int REPARENT_LEAVE_STACK_IN_PLACE = 2;
191
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800192 final int taskId; // Unique identifier for this task.
Dianne Hackborn79228822014-09-16 11:11:23 -0700193 String affinity; // The affinity name for this task, or null; may change identity.
194 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
Dianne Hackborn91097de2014-04-04 18:02:06 -0700195 final IVoiceInteractionSession voiceSession; // Voice interaction session driving task
196 final IVoiceInteractor voiceInteractor; // Associated interactor to provide to app
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800197 Intent intent; // The original intent that started the task.
198 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700199 int effectiveUid; // The current effective uid of the identity of this task.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 ComponentName origActivity; // The non-alias activity component of the intent.
201 ComponentName realActivity; // The actual activity component that started the task.
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +0000202 boolean realActivitySuspended; // True if the actual activity component that started the
203 // task is suspended.
Winson Chung36f3f032016-09-08 23:29:43 +0000204 long firstActiveTime; // First time this task was active.
205 long lastActiveTime; // Last time this task was active, including sleep.
Dianne Hackborn852975d2014-08-22 17:42:43 -0700206 boolean inRecents; // Actually in the recents list?
207 boolean isAvailable; // Is the activity available to be launched?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208 boolean rootWasReset; // True if the intent at the root of the task had
209 // the FLAG_ACTIVITY_RESET_TASK_IF_NEEDED flag.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700210 boolean autoRemoveRecents; // If true, we should automatically remove the task from
211 // recents when activity finishes
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700212 boolean askedCompatMode;// Have asked the user about compat mode for this task.
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700213 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 -0800214
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700215 String stringName; // caching of toString() result.
Dianne Hackborn9da2d402012-03-15 13:43:08 -0700216 int userId; // user for which this task was created
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800217 boolean mUserSetupComplete; // The user set-up is complete as of the last time the task activity
218 // was changed.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800219
220 int numFullscreen; // Number of fullscreen activities.
221
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800222 int mResizeMode; // The resize mode of this task and its activities.
223 // Based on the {@link ActivityInfo#resizeMode} of the root activity.
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800224 private boolean mSupportsPictureInPicture; // Whether or not this task and its activities
225 // support PiP. Based on the {@link ActivityInfo#FLAG_SUPPORTS_PICTURE_IN_PICTURE} flag
226 // of the root activity.
Jorim Jaggi8202b2a2016-02-03 19:24:31 -0800227 boolean mTemporarilyUnresizable; // Separate flag from mResizeMode used to suppress resize
228 // changes on a temporary basis.
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700229 private int mLockTaskMode; // Which tasklock mode to launch this task in. One of
230 // ActivityManager.LOCK_TASK_LAUNCH_MODE_*
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700231 private boolean mPrivileged; // The root activity application of this task holds
232 // privileged permissions.
233
Craig Mautner15df08a2015-04-01 12:17:18 -0700234 /** Can't be put in lockTask mode. */
235 final static int LOCK_TASK_AUTH_DONT_LOCK = 0;
Benjamin Franz469dd582015-06-09 14:24:36 +0100236 /** Can enter app pinning with user approval. Can never start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700237 final static int LOCK_TASK_AUTH_PINNABLE = 1;
238 /** Starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing lockTask task. */
239 final static int LOCK_TASK_AUTH_LAUNCHABLE = 2;
Benjamin Franz469dd582015-06-09 14:24:36 +0100240 /** Can enter lockTask without user approval. Can start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700241 final static int LOCK_TASK_AUTH_WHITELISTED = 3;
Benjamin Franz469dd582015-06-09 14:24:36 +0100242 /** Priv-app that starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing
243 * lockTask task. */
244 final static int LOCK_TASK_AUTH_LAUNCHABLE_PRIV = 4;
Craig Mautner15df08a2015-04-01 12:17:18 -0700245 int mLockTaskAuth = LOCK_TASK_AUTH_PINNABLE;
246
247 int mLockTaskUid = -1; // The uid of the application that called startLockTask().
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800248
Winson Chung03a9bae2014-05-02 09:56:12 -0700249 // This represents the last resolved activity values for this task
250 // NOTE: This value needs to be persisted with each task
Craig Mautner648f69b2014-09-18 14:16:26 -0700251 TaskDescription lastTaskDescription = new TaskDescription();
Winson Chung03a9bae2014-05-02 09:56:12 -0700252
Craig Mautnerd2328952013-03-05 12:46:26 -0800253 /** List of all activities in the task arranged in history order */
Craig Mautner21d24a22014-04-23 11:45:37 -0700254 final ArrayList<ActivityRecord> mActivities;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800255
Andrii Kulian02b7a832016-10-06 23:11:56 -0700256 /** Current stack. Setter must always be used to update the value. */
257 private ActivityStack mStack;
Craig Mautnerd2328952013-03-05 12:46:26 -0800258
Craig Mautner2c1faed2013-07-23 12:56:02 -0700259 /** Takes on same set of values as ActivityRecord.mActivityType */
Craig Mautner21d24a22014-04-23 11:45:37 -0700260 int taskType;
Craig Mautner1602ec22013-05-12 10:24:27 -0700261
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
Craig Mautner84984fa2014-06-19 11:19:20 -0700271 /** Indication of what to run next when task exits. Use ActivityRecord types.
272 * ActivityRecord.APPLICATION_ACTIVITY_TYPE indicates to resume the task below this one in the
273 * task stack. */
274 private int mTaskToReturnTo = APPLICATION_ACTIVITY_TYPE;
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700275
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700276 /** If original intent did not allow relinquishing task identity, save that information */
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700277 private boolean mNeverRelinquishIdentity = true;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700278
Craig Mautner362449a2014-06-20 14:04:39 -0700279 // Used in the unique case where we are clearing the task in order to reuse it. In that case we
280 // do not want to delete the stack when the task goes empty.
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800281 private boolean mReuseTask = false;
Craig Mautner362449a2014-06-20 14:04:39 -0700282
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700283 private Bitmap mLastThumbnail; // Last thumbnail captured for this item.
Wale Ogunwalebe23ff42014-10-21 16:29:51 -0700284 private final File mLastThumbnailFile; // File containing last thumbnail.
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700285 private final String mFilename;
Winsonc809cbb2015-11-02 12:06:15 -0800286 private TaskThumbnailInfo mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700287 CharSequence lastDescription; // Last description captured for this item.
288
Craig Mautnera228ae92014-07-09 05:44:55 -0700289 int mAffiliatedTaskId; // taskId of parent affiliation or self if no parent.
Winson Chungec396d62014-08-06 17:08:00 -0700290 int mAffiliatedTaskColor; // color of the parent task affiliation.
Craig Mautnera228ae92014-07-09 05:44:55 -0700291 TaskRecord mPrevAffiliate; // previous task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800292 int mPrevAffiliateTaskId = INVALID_TASK_ID; // previous id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700293 TaskRecord mNextAffiliate; // next task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800294 int mNextAffiliateTaskId = INVALID_TASK_ID; // next id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700295
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700296 // For relaunching the task from recents as though it was launched by the original launcher.
297 int mCallingUid;
298 String mCallingPackage;
299
Craig Mautner21d24a22014-04-23 11:45:37 -0700300 final ActivityManagerService mService;
301
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700302 // Whether or not this task covers the entire screen; by default tasks are fullscreen.
303 boolean mFullscreen = true;
304
305 // Bounds of the Task. null for fullscreen tasks.
306 Rect mBounds = null;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -0800307 private final Rect mTmpStableBounds = new Rect();
308 private final Rect mTmpNonDecorBounds = new Rect();
Wale Ogunwale9a08f822016-02-17 19:03:58 -0800309 private final Rect mTmpRect = new Rect();
Jorim Jaggi0a932142016-02-01 17:42:25 -0800310
Wale Ogunwale706ed792015-08-02 10:29:44 -0700311 // Last non-fullscreen bounds the task was launched in or resized to.
312 // The information is persisted and used to determine the appropriate stack to launch the
313 // task into on restore.
314 Rect mLastNonFullscreenBounds = null;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700315 // Minimal width and height of this task when it's resizeable. -1 means it should use the
316 // default minimal width/height.
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700317 int mMinWidth;
318 int mMinHeight;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700319
Chong Zhangfdcc4d42015-10-14 16:50:12 -0700320 // Ranking (from top) of this task among all visible tasks. (-1 means it's not visible)
321 // This number will be assigned when we evaluate OOM scores for all visible tasks.
322 int mLayerRank = -1;
323
Andrii Kulian1779e612016-10-12 21:58:25 -0700324 /** Helper object used for updating override configuration. */
325 private Configuration mTmpConfig = new Configuration();
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700326
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800327 private TaskWindowContainerController mWindowContainerController;
328
Craig Mautner21d24a22014-04-23 11:45:37 -0700329 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Wale Ogunwale72919d22016-12-08 18:58:50 -0800330 IVoiceInteractionSession _voiceSession, IVoiceInteractor _voiceInteractor, int type) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700331 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700332 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
333 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800334 userId = UserHandle.getUserId(info.applicationInfo.uid);
335 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800336 mLastThumbnailInfo = new TaskThumbnailInfo();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800337 taskId = _taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700338 mAffiliatedTaskId = _taskId;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700339 voiceSession = _voiceSession;
340 voiceInteractor = _voiceInteractor;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700341 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800342 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700343 mCallingUid = info.applicationInfo.uid;
344 mCallingPackage = info.packageName;
Wale Ogunwale72919d22016-12-08 18:58:50 -0800345 taskType = type;
Martijn Coenend4a69702014-06-30 11:12:17 -0700346 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700347 setMinDimensions(info);
Winson730bf062016-03-31 18:04:56 -0700348 touchActiveTime();
Yorke Leebd54c2a2016-10-25 13:49:23 -0700349 mService.mTaskChangeNotificationController.notifyTaskCreated(_taskId, realActivity);
Craig Mautner21d24a22014-04-23 11:45:37 -0700350 }
351
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700352 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Winsonc809cbb2015-11-02 12:06:15 -0800353 TaskDescription _taskDescription, TaskThumbnailInfo thumbnailInfo) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700354 mService = service;
355 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
356 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800357 userId = UserHandle.getUserId(info.applicationInfo.uid);
358 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800359 mLastThumbnailInfo = thumbnailInfo;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700360 taskId = _taskId;
361 mAffiliatedTaskId = _taskId;
362 voiceSession = null;
363 voiceInteractor = null;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700364 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800365 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700366 mCallingUid = info.applicationInfo.uid;
367 mCallingPackage = info.packageName;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700368 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700369 setMinDimensions(info);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700370
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700371 isPersistable = true;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700372 // Clamp to [1, max].
373 maxRecents = Math.min(Math.max(info.maxRecents, 1),
374 ActivityManager.getMaxAppRecentsLimitStatic());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700375
376 taskType = APPLICATION_ACTIVITY_TYPE;
377 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700378 lastTaskDescription = _taskDescription;
Winson730bf062016-03-31 18:04:56 -0700379 touchActiveTime();
Yorke Leebd54c2a2016-10-25 13:49:23 -0700380 mService.mTaskChangeNotificationController.notifyTaskCreated(_taskId, realActivity);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700381 }
382
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800383 private TaskRecord(ActivityManagerService service, int _taskId, Intent _intent,
384 Intent _affinityIntent, String _affinity, String _rootAffinity,
385 ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset,
386 boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId,
387 int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities,
388 long _firstActiveTime, long _lastActiveTime, long lastTimeMoved,
389 boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription,
Winsonc809cbb2015-11-02 12:06:15 -0800390 TaskThumbnailInfo lastThumbnailInfo, int taskAffiliation, int prevTaskId,
391 int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage,
Winson Chungd3395382016-12-13 11:49:09 -0800392 int resizeMode, boolean supportsPictureInPicture, boolean privileged,
393 boolean _realActivitySuspended, boolean userSetupComplete, int minWidth,
394 int minHeight) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700395 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700396 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
397 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800398 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(_userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800399 mLastThumbnailInfo = lastThumbnailInfo;
Craig Mautner21d24a22014-04-23 11:45:37 -0700400 taskId = _taskId;
401 intent = _intent;
402 affinityIntent = _affinityIntent;
403 affinity = _affinity;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800404 rootAffinity = _rootAffinity;
Craig Mautner21d24a22014-04-23 11:45:37 -0700405 voiceSession = null;
406 voiceInteractor = null;
407 realActivity = _realActivity;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800408 realActivitySuspended = _realActivitySuspended;
Craig Mautner21d24a22014-04-23 11:45:37 -0700409 origActivity = _origActivity;
410 rootWasReset = _rootWasReset;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700411 isAvailable = true;
Dianne Hackborn13420f22014-07-18 15:43:56 -0700412 autoRemoveRecents = _autoRemoveRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700413 askedCompatMode = _askedCompatMode;
414 taskType = _taskType;
Craig Mautner84984fa2014-06-19 11:19:20 -0700415 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -0700416 userId = _userId;
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800417 mUserSetupComplete = userSetupComplete;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700418 effectiveUid = _effectiveUid;
Winson Chungffa2ec62014-07-03 15:54:42 -0700419 firstActiveTime = _firstActiveTime;
Winson Chungf1fbd772014-06-24 18:06:58 -0700420 lastActiveTime = _lastActiveTime;
Craig Mautner21d24a22014-04-23 11:45:37 -0700421 lastDescription = _lastDescription;
422 mActivities = activities;
423 mLastTimeMoved = lastTimeMoved;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700424 mNeverRelinquishIdentity = neverRelinquishIdentity;
Winson Chung2cb86c72014-06-25 12:03:30 -0700425 lastTaskDescription = _lastTaskDescription;
Craig Mautnera228ae92014-07-09 05:44:55 -0700426 mAffiliatedTaskId = taskAffiliation;
Winson Chungec396d62014-08-06 17:08:00 -0700427 mAffiliatedTaskColor = taskAffiliationColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700428 mPrevAffiliateTaskId = prevTaskId;
429 mNextAffiliateTaskId = nextTaskId;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700430 mCallingUid = callingUid;
431 mCallingPackage = callingPackage;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800432 mResizeMode = resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800433 mSupportsPictureInPicture = supportsPictureInPicture;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700434 mPrivileged = privileged;
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700435 mMinWidth = minWidth;
436 mMinHeight = minHeight;
Yorke Leebd54c2a2016-10-25 13:49:23 -0700437 mService.mTaskChangeNotificationController.notifyTaskCreated(_taskId, realActivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800438 }
439
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800440 TaskWindowContainerController getWindowContainerController() {
441 return mWindowContainerController;
442 }
443
444 void createWindowContainer(boolean onTop, boolean showForAllUsers) {
445 if (mWindowContainerController != null) {
446 throw new IllegalArgumentException("Window container=" + mWindowContainerController
447 + " already created for task=" + this);
448 }
449
450 final Rect bounds = updateOverrideConfigurationFromLaunchBounds();
451 final Configuration overrideConfig = getOverrideConfiguration();
Bryce Lee04ab3462017-04-10 15:06:33 -0700452 setWindowContainerController(new TaskWindowContainerController(taskId, this,
Wale Ogunwale1666e312016-12-16 11:27:18 -0800453 getStack().getWindowContainerController(), userId, bounds, overrideConfig,
Wale Ogunwale069bbd32017-02-03 07:58:14 -0800454 mResizeMode, mSupportsPictureInPicture, isHomeTask(), onTop, showForAllUsers,
Bryce Lee04ab3462017-04-10 15:06:33 -0700455 lastTaskDescription));
456 }
457
458 /**
459 * Should only be invoked from {@link #createWindowContainer(boolean, boolean)}.
460 */
461 @VisibleForTesting
462 protected void setWindowContainerController(TaskWindowContainerController controller) {
463 if (mWindowContainerController != null) {
464 throw new IllegalArgumentException("Window container=" + mWindowContainerController
465 + " already created for task=" + this);
466 }
467
468 mWindowContainerController = controller;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800469 }
470
471 void removeWindowContainer() {
472 mService.mStackSupervisor.removeLockedTaskLocked(this);
473 mWindowContainerController.removeContainer();
474 if (!StackId.persistTaskBounds(getStackId())) {
475 // Reset current bounds for task whose bounds shouldn't be persisted so it uses
476 // default configuration the next time it launches.
477 updateOverrideConfiguration(null);
478 }
479 mService.mTaskChangeNotificationController.notifyTaskRemoved(taskId);
480 mWindowContainerController = null;
481 }
482
Jorim Jaggifb9d78a2017-01-05 18:57:12 +0100483 @Override
484 public void onSnapshotChanged(TaskSnapshot snapshot) {
485 mService.mTaskChangeNotificationController.notifyTaskSnapshotChanged(taskId, snapshot);
486 }
487
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800488 void setResizeMode(int resizeMode) {
489 if (mResizeMode == resizeMode) {
490 return;
491 }
492 mResizeMode = resizeMode;
493 mWindowContainerController.setResizeable(resizeMode);
494 mService.mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
495 mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
496 }
497
498 void setTaskDockedResizing(boolean resizing) {
499 mWindowContainerController.setTaskDockedResizing(resizing);
500 }
501
Wale Ogunwale1666e312016-12-16 11:27:18 -0800502 // TODO: Consolidate this with the resize() method below.
503 @Override
504 public void requestResize(Rect bounds, int resizeMode) {
505 mService.resizeTask(taskId, bounds, resizeMode);
506 }
507
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800508 boolean resize(Rect bounds, int resizeMode, boolean preserveWindow, boolean deferResume) {
509 if (!isResizeable()) {
510 Slog.w(TAG, "resizeTask: task " + this + " not resizeable.");
511 return true;
512 }
513
514 // If this is a forced resize, let it go through even if the bounds is not changing,
515 // as we might need a relayout due to surface size change (to/from fullscreen).
516 final boolean forced = (resizeMode & RESIZE_MODE_FORCED) != 0;
517 if (Objects.equals(mBounds, bounds) && !forced) {
518 // Nothing to do here...
519 return true;
520 }
521 bounds = validateBounds(bounds);
522
523 if (mWindowContainerController == null) {
524 // Task doesn't exist in window manager yet (e.g. was restored from recents).
525 // All we can do for now is update the bounds so it can be used when the task is
526 // added to window manager.
527 updateOverrideConfiguration(bounds);
528 if (getStackId() != FREEFORM_WORKSPACE_STACK_ID) {
529 // re-restore the task so it can have the proper stack association.
530 mService.mStackSupervisor.restoreRecentTaskLocked(this,
531 FREEFORM_WORKSPACE_STACK_ID);
532 }
533 return true;
534 }
535
536 if (!canResizeToBounds(bounds)) {
537 throw new IllegalArgumentException("resizeTask: Can not resize task=" + this
538 + " to bounds=" + bounds + " resizeMode=" + mResizeMode);
539 }
540
541 // Do not move the task to another stack here.
542 // This method assumes that the task is already placed in the right stack.
543 // we do not mess with that decision and we only do the resize!
544
545 Trace.traceBegin(TRACE_TAG_ACTIVITY_MANAGER, "am.resizeTask_" + taskId);
546
547 final boolean updatedConfig = updateOverrideConfiguration(bounds);
548 // This variable holds information whether the configuration didn't change in a significant
549 // way and the activity was kept the way it was. If it's false, it means the activity had
550 // to be relaunched due to configuration change.
551 boolean kept = true;
552 if (updatedConfig) {
553 final ActivityRecord r = topRunningActivityLocked();
Wale Ogunwaleea3d3fd2017-05-01 07:41:08 -0700554 if (r != null && !deferResume) {
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800555 kept = r.ensureActivityConfigurationLocked(0 /* globalChanges */, preserveWindow);
Wale Ogunwaleea3d3fd2017-05-01 07:41:08 -0700556 mService.mStackSupervisor.ensureActivitiesVisibleLocked(r, 0, !PRESERVE_WINDOWS);
557 if (!kept) {
558 mService.mStackSupervisor.resumeFocusedStackTopActivityLocked();
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800559 }
560 }
561 }
562 mWindowContainerController.resize(mBounds, getOverrideConfiguration(), kept, forced);
563
564 Trace.traceEnd(TRACE_TAG_ACTIVITY_MANAGER);
565 return kept;
566 }
567
568 // TODO: Investigate combining with the resize() method above.
569 void resizeWindowContainer() {
570 mWindowContainerController.resize(mBounds, getOverrideConfiguration(), false /* relayout */,
571 false /* forced */);
572 }
573
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800574 void getWindowContainerBounds(Rect bounds) {
575 mWindowContainerController.getBounds(bounds);
576 }
577
Winson Chung74666102017-02-22 17:49:24 -0800578 /**
579 * Convenience method to reparent a task to the top or bottom position of the stack.
580 */
581 boolean reparent(int preferredStackId, boolean toTop, @ReparentMoveStackMode int moveStackMode,
582 boolean animate, boolean deferResume, String reason) {
583 return reparent(preferredStackId, toTop ? MAX_VALUE : 0, moveStackMode, animate,
Winson Chung5af42fc2017-03-24 17:11:33 -0700584 deferResume, true /* schedulePictureInPictureModeChange */, reason);
585 }
586
587 /**
588 * Convenience method to reparent a task to the top or bottom position of the stack, with
589 * an option to skip scheduling the picture-in-picture mode change.
590 */
591 boolean reparent(int preferredStackId, boolean toTop, @ReparentMoveStackMode int moveStackMode,
592 boolean animate, boolean deferResume, boolean schedulePictureInPictureModeChange,
593 String reason) {
594 return reparent(preferredStackId, toTop ? MAX_VALUE : 0, moveStackMode, animate,
595 deferResume, schedulePictureInPictureModeChange, reason);
596 }
597
598 /**
599 * Convenience method to reparent a task to a specific position of the stack.
600 */
601 boolean reparent(int preferredStackId, int position, @ReparentMoveStackMode int moveStackMode,
602 boolean animate, boolean deferResume, String reason) {
603 return reparent(preferredStackId, position, moveStackMode, animate, deferResume,
604 true /* schedulePictureInPictureModeChange */, reason);
Winson Chung74666102017-02-22 17:49:24 -0800605 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800606
Winson Chung74666102017-02-22 17:49:24 -0800607 /**
608 * Reparents the task into a preferred stack, creating it if necessary.
609 *
610 * @param preferredStackId the stack id of the target stack to move this task
611 * @param position the position to place this task in the new stack
612 * @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 -0700613 * reparenting to be drawn and animated in
Winson Chung74666102017-02-22 17:49:24 -0800614 * @param moveStackMode whether or not to move the stack to the front always, only if it was
Winson Chung5af42fc2017-03-24 17:11:33 -0700615 * previously focused & in front, or never
Winson Chung74666102017-02-22 17:49:24 -0800616 * @param deferResume whether or not to update the visibility of other tasks and stacks that may
Winson Chung5af42fc2017-03-24 17:11:33 -0700617 * have changed as a result of this reparenting
618 * @param schedulePictureInPictureModeChange specifies whether or not to schedule the PiP mode
619 * change. Callers may set this to false if they are explicitly scheduling PiP mode
620 * changes themselves, like during the PiP animation
Winson Chung74666102017-02-22 17:49:24 -0800621 * @param reason the caller of this reparenting
Winson Chung5af42fc2017-03-24 17:11:33 -0700622 * @return whether the task was reparented
Winson Chung74666102017-02-22 17:49:24 -0800623 */
624 boolean reparent(int preferredStackId, int position, @ReparentMoveStackMode int moveStackMode,
Winson Chung5af42fc2017-03-24 17:11:33 -0700625 boolean animate, boolean deferResume, boolean schedulePictureInPictureModeChange,
626 String reason) {
Winson Chung74666102017-02-22 17:49:24 -0800627 final ActivityStackSupervisor supervisor = mService.mStackSupervisor;
628 final WindowManagerService windowManager = mService.mWindowManager;
629 final ActivityStack sourceStack = getStack();
630 final ActivityStack toStack = supervisor.getReparentTargetStack(this, preferredStackId,
631 position == MAX_VALUE);
632 if (toStack == sourceStack) {
633 return false;
634 }
635
636 final int sourceStackId = getStackId();
637 final int stackId = toStack.getStackId();
638 final ActivityRecord topActivity = getTopActivity();
639
640 final boolean mightReplaceWindow = StackId.replaceWindowsOnTaskMove(sourceStackId, stackId)
641 && topActivity != null;
642 if (mightReplaceWindow) {
643 // We are about to relaunch the activity because its configuration changed due to
644 // being maximized, i.e. size change. The activity will first remove the old window
645 // and then add a new one. This call will tell window manager about this, so it can
646 // preserve the old window until the new one is drawn. This prevents having a gap
647 // between the removal and addition, in which no window is visible. We also want the
648 // entrance of the new window to be properly animated.
649 // Note here we always set the replacing window first, as the flags might be needed
650 // during the relaunch. If we end up not doing any relaunch, we clear the flags later.
651 windowManager.setWillReplaceWindow(topActivity.appToken, animate);
652 }
653
654 windowManager.deferSurfaceLayout();
655 boolean kept = true;
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800656 try {
Winson Chung74666102017-02-22 17:49:24 -0800657 final ActivityRecord r = topRunningActivityLocked();
Winson Chung95f8f0e2017-03-24 09:20:17 -0700658 final boolean wasFocused = r != null && supervisor.isFocusedStack(sourceStack)
Winson Chung74666102017-02-22 17:49:24 -0800659 && (topRunningActivityLocked() == r);
Winson Chung95f8f0e2017-03-24 09:20:17 -0700660 final boolean wasResumed = r != null && sourceStack.mResumedActivity == r;
661 final boolean wasPaused = r != null && sourceStack.mPausingActivity == r;
Winson Chung74666102017-02-22 17:49:24 -0800662
663 // In some cases the focused stack isn't the front stack. E.g. pinned stack.
664 // Whenever we are moving the top activity from the front stack we want to make sure to
665 // move the stack to the front.
Winson Chung95f8f0e2017-03-24 09:20:17 -0700666 final boolean wasFront = r != null && supervisor.isFrontStackOnDisplay(sourceStack)
Winson Chung74666102017-02-22 17:49:24 -0800667 && (sourceStack.topRunningActivityLocked() == r);
668
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800669 // Adjust the position for the new parent stack as needed.
Winson Chung74666102017-02-22 17:49:24 -0800670 position = toStack.getAdjustedPositionForTask(this, position, null /* starting */);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800671
672 // Must reparent first in window manager to avoid a situation where AM can delete the
673 // we are coming from in WM before we reparent because it became empty.
Wale Ogunwale2719cc12017-04-14 09:45:27 -0700674 mWindowContainerController.reparent(toStack.getWindowContainerController(), position,
675 moveStackMode == REPARENT_MOVE_STACK_TO_FRONT);
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800676
Wale Ogunwale56d8d162017-05-30 11:12:20 -0700677 final boolean moveStackToFront = moveStackMode == REPARENT_MOVE_STACK_TO_FRONT
678 || (moveStackMode == REPARENT_KEEP_STACK_AT_FRONT && (wasFocused || wasFront));
Winson Chung74666102017-02-22 17:49:24 -0800679 // Move the task
Wale Ogunwale56d8d162017-05-30 11:12:20 -0700680 sourceStack.removeTask(this, reason, moveStackToFront
681 ? REMOVE_TASK_MODE_MOVING_TO_TOP : REMOVE_TASK_MODE_MOVING);
Winson Chung5af42fc2017-03-24 17:11:33 -0700682 toStack.addTask(this, position, false /* schedulePictureInPictureModeChange */, reason);
Winson Chung74666102017-02-22 17:49:24 -0800683
Winson Chung5af42fc2017-03-24 17:11:33 -0700684 if (schedulePictureInPictureModeChange) {
685 // Notify of picture-in-picture mode changes
686 supervisor.scheduleUpdatePictureInPictureModeIfNeeded(this, sourceStack);
687 }
Winson Chung74666102017-02-22 17:49:24 -0800688
689 // TODO: Ensure that this is actually necessary here
690 // Notify the voice session if required
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800691 if (voiceSession != null) {
692 try {
693 voiceSession.taskStarted(intent, taskId);
694 } catch (RemoteException e) {
695 }
696 }
Winson Chung74666102017-02-22 17:49:24 -0800697
698 // If the task had focus before (or we're requested to move focus), move focus to the
699 // new stack by moving the stack to the front.
Winson Chung95f8f0e2017-03-24 09:20:17 -0700700 if (r != null) {
701 toStack.moveToFrontAndResumeStateIfNeeded(r, moveStackToFront, wasResumed,
702 wasPaused, reason);
703 }
Winson Chung74666102017-02-22 17:49:24 -0800704 if (!animate) {
705 toStack.mNoAnimActivities.add(topActivity);
706 }
707
708 // We might trigger a configuration change. Save the current task bounds for freezing.
709 // TODO: Should this call be moved inside the resize method in WM?
710 toStack.prepareFreezingTaskBounds();
711
712 // Make sure the task has the appropriate bounds/size for the stack it is in.
713 if (stackId == FULLSCREEN_WORKSPACE_STACK_ID
714 && !Objects.equals(mBounds, toStack.mBounds)) {
715 kept = resize(toStack.mBounds, RESIZE_MODE_SYSTEM, !mightReplaceWindow,
716 deferResume);
717 } else if (stackId == FREEFORM_WORKSPACE_STACK_ID) {
718 Rect bounds = getLaunchBounds();
719 if (bounds == null) {
720 toStack.layoutTaskInStack(this, null);
721 bounds = mBounds;
722 }
723 kept = resize(bounds, RESIZE_MODE_FORCED, !mightReplaceWindow, deferResume);
724 } else if (stackId == DOCKED_STACK_ID || stackId == PINNED_STACK_ID) {
Matthew Ng330757d2017-02-28 14:19:17 -0800725 if (stackId == DOCKED_STACK_ID && moveStackMode == REPARENT_KEEP_STACK_AT_FRONT) {
726 // Move recents to front so it is not behind home stack when going into docked
727 // mode
728 mService.mStackSupervisor.moveRecentsStackToFront(reason);
729 }
Winson Chung74666102017-02-22 17:49:24 -0800730 kept = resize(toStack.mBounds, RESIZE_MODE_SYSTEM, !mightReplaceWindow,
731 deferResume);
732 }
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800733 } finally {
Winson Chung74666102017-02-22 17:49:24 -0800734 windowManager.continueSurfaceLayout();
Wale Ogunwalec5cc3012017-01-13 13:26:16 -0800735 }
Winson Chung74666102017-02-22 17:49:24 -0800736
737 if (mightReplaceWindow) {
738 // If we didn't actual do a relaunch (indicated by kept==true meaning we kept the old
739 // window), we need to clear the replace window settings. Otherwise, we schedule a
740 // timeout to remove the old window if the replacing window is not coming in time.
741 windowManager.scheduleClearWillReplaceWindows(topActivity.appToken, !kept);
742 }
743
744 if (!deferResume) {
745 // The task might have already been running and its visibility needs to be synchronized
746 // with the visibility of the stack / windows.
747 supervisor.ensureActivitiesVisibleLocked(null, 0, !mightReplaceWindow);
748 supervisor.resumeFocusedStackTopActivityLocked();
749 }
750
Andrii Kulian036e3ad2017-04-19 10:55:10 -0700751 // TODO: Handle incorrect request to move before the actual move, not after.
752 supervisor.handleNonResizableTaskIfNeeded(this, preferredStackId, DEFAULT_DISPLAY, stackId);
Winson Chung74666102017-02-22 17:49:24 -0800753
Matthew Ng330757d2017-02-28 14:19:17 -0800754 boolean successful = (preferredStackId == stackId);
755 if (successful && stackId == DOCKED_STACK_ID) {
756 // If task moved to docked stack - show recents if needed.
757 mService.mWindowManager.showRecentApps(false /* fromHome */);
758 }
759 return successful;
Wale Ogunwalee1fe7fa22016-12-15 18:27:00 -0800760 }
761
762 void cancelWindowTransition() {
763 mWindowContainerController.cancelWindowTransition();
764 }
765
766 void cancelThumbnailTransition() {
767 mWindowContainerController.cancelThumbnailTransition();
768 }
769
Jorim Jaggi7361bab2017-01-16 17:17:58 +0100770 /**
771 * DO NOT HOLD THE ACTIVITY MANAGER LOCK WHEN CALLING THIS METHOD!
772 */
Jorim Jaggi35e3f532017-03-17 17:06:50 +0100773 TaskSnapshot getSnapshot(boolean reducedResolution) {
Jorim Jaggi7361bab2017-01-16 17:17:58 +0100774
775 // TODO: Move this to {@link TaskWindowContainerController} once recent tasks are more
776 // synchronized between AM and WM.
Jorim Jaggi35e3f532017-03-17 17:06:50 +0100777 return mService.mWindowManager.getTaskSnapshot(taskId, userId, reducedResolution);
Jorim Jaggi02886a82016-12-06 09:10:06 -0800778 }
779
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800780 void touchActiveTime() {
Winson Chung36f3f032016-09-08 23:29:43 +0000781 lastActiveTime = System.currentTimeMillis();
Winson Chungffa2ec62014-07-03 15:54:42 -0700782 if (firstActiveTime == 0) {
783 firstActiveTime = lastActiveTime;
784 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800785 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700786
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800787 long getInactiveDuration() {
Winson Chung36f3f032016-09-08 23:29:43 +0000788 return System.currentTimeMillis() - lastActiveTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800789 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700790
Winson Chungfee26772014-08-05 12:21:52 -0700791 /** Sets the original intent, and the calling uid and package. */
792 void setIntent(ActivityRecord r) {
Winson Chungfee26772014-08-05 12:21:52 -0700793 mCallingUid = r.launchedFromUid;
794 mCallingPackage = r.launchedFromPackage;
Craig Mautner15df08a2015-04-01 12:17:18 -0700795 setIntent(r.intent, r.info);
Winson Chungfee26772014-08-05 12:21:52 -0700796 }
797
798 /** Sets the original intent, _without_ updating the calling uid or package. */
799 private void setIntent(Intent _intent, ActivityInfo info) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700800 if (intent == null) {
801 mNeverRelinquishIdentity =
Wale Ogunwale3eadad72016-10-13 09:16:59 -0700802 (info.flags & FLAG_RELINQUISH_TASK_IDENTITY) == 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700803 } else if (mNeverRelinquishIdentity) {
804 return;
805 }
806
807 affinity = info.taskAffinity;
Dianne Hackborn79228822014-09-16 11:11:23 -0700808 if (intent == null) {
809 // If this task already has an intent associated with it, don't set the root
810 // affinity -- we don't want it changing after initially set, but the initially
811 // set value may be null.
812 rootAffinity = affinity;
813 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700814 effectiveUid = info.applicationInfo.uid;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700815 stringName = null;
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800816
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800817 if (info.targetActivity == null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800818 if (_intent != null) {
819 // If this Intent has a selector, we want to clear it for the
820 // recent task since it is not relevant if the user later wants
821 // to re-launch the app.
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700822 if (_intent.getSelector() != null || _intent.getSourceBounds() != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800823 _intent = new Intent(_intent);
824 _intent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700825 _intent.setSourceBounds(null);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800826 }
827 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700828 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Setting Intent of " + this + " to " + _intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829 intent = _intent;
830 realActivity = _intent != null ? _intent.getComponent() : null;
831 origActivity = null;
832 } else {
833 ComponentName targetComponent = new ComponentName(
834 info.packageName, info.targetActivity);
835 if (_intent != null) {
836 Intent targetIntent = new Intent(_intent);
837 targetIntent.setComponent(targetComponent);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800838 targetIntent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700839 targetIntent.setSourceBounds(null);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700840 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Dianne Hackborn7f96b792012-05-29 18:46:45 -0700841 "Setting Intent of " + this + " to target " + targetIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800842 intent = targetIntent;
843 realActivity = targetComponent;
844 origActivity = _intent.getComponent();
845 } else {
846 intent = null;
847 realActivity = targetComponent;
848 origActivity = new ComponentName(info.packageName, info.name);
849 }
850 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700851
Craig Mautner47b20ba2014-09-17 17:23:44 -0700852 final int intentFlags = intent == null ? 0 : intent.getFlags();
853 if ((intentFlags & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800854 // Once we are set to an Intent with this flag, we count this
855 // task as having a true root activity.
856 rootWasReset = true;
857 }
Dianne Hackborn09233282014-04-30 11:33:59 -0700858 userId = UserHandle.getUserId(info.applicationInfo.uid);
Winson Chung36f3f032016-09-08 23:29:43 +0000859 mUserSetupComplete = Settings.Secure.getIntForUser(mService.mContext.getContentResolver(),
860 USER_SETUP_COMPLETE, 0, userId) != 0;
Craig Mautner41db4a72014-05-07 17:20:56 -0700861 if ((info.flags & ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS) != 0) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700862 // If the activity itself has requested auto-remove, then just always do it.
863 autoRemoveRecents = true;
Wale Ogunwale843bfb92015-03-27 11:06:48 -0700864 } else if ((intentFlags & (FLAG_ACTIVITY_NEW_DOCUMENT | FLAG_ACTIVITY_RETAIN_IN_RECENTS))
865 == FLAG_ACTIVITY_NEW_DOCUMENT) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700866 // If the caller has not asked for the document to be retained, then we may
867 // want to turn on auto-remove, depending on whether the target has set its
868 // own document launch mode.
869 if (info.documentLaunchMode != ActivityInfo.DOCUMENT_LAUNCH_NONE) {
870 autoRemoveRecents = false;
871 } else {
872 autoRemoveRecents = true;
873 }
874 } else {
875 autoRemoveRecents = false;
Craig Mautner41db4a72014-05-07 17:20:56 -0700876 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800877 mResizeMode = info.resizeMode;
Winson Chungd3395382016-12-13 11:49:09 -0800878 mSupportsPictureInPicture = info.supportsPictureInPicture();
Craig Mautner15df08a2015-04-01 12:17:18 -0700879 mLockTaskMode = info.lockTaskLaunchMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700880 mPrivileged = (info.applicationInfo.privateFlags & PRIVATE_FLAG_PRIVILEGED) != 0;
Craig Mautner15df08a2015-04-01 12:17:18 -0700881 setLockTaskAuth();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800882 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800883
Andrii Kulian2e751b82016-03-16 16:59:32 -0700884 /** Sets the original minimal width and height. */
885 private void setMinDimensions(ActivityInfo info) {
886 if (info != null && info.windowLayout != null) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700887 mMinWidth = info.windowLayout.minWidth;
888 mMinHeight = info.windowLayout.minHeight;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700889 } else {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700890 mMinWidth = INVALID_MIN_SIZE;
891 mMinHeight = INVALID_MIN_SIZE;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700892 }
893 }
894
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800895 /**
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700896 * Return true if the input activity has the same intent filter as the intent this task
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800897 * record is based on (normally the root activity intent).
898 */
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700899 boolean isSameIntentFilter(ActivityRecord r) {
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800900 final Intent intent = new Intent(r.intent);
901 // Correct the activity intent for aliasing. The task record intent will always be based on
902 // the real activity that will be launched not the alias, so we need to use an intent with
903 // the component name pointing to the real activity not the alias in the activity record.
904 intent.setComponent(r.realActivity);
905 return this.intent.filterEquals(intent);
906 }
907
Craig Mautner84984fa2014-06-19 11:19:20 -0700908 void setTaskToReturnTo(int taskToReturnTo) {
Wale Ogunwale673cbd22016-01-30 18:30:55 -0800909 mTaskToReturnTo = (taskToReturnTo == RECENTS_ACTIVITY_TYPE)
910 ? HOME_ACTIVITY_TYPE : taskToReturnTo;
Craig Mautner84984fa2014-06-19 11:19:20 -0700911 }
912
Winson Chung83471632016-12-13 11:02:12 -0800913 void setTaskToReturnTo(ActivityRecord source) {
914 if (source.isRecentsActivity()) {
915 setTaskToReturnTo(RECENTS_ACTIVITY_TYPE);
916 } else if (source.isAssistantActivity()) {
917 setTaskToReturnTo(ASSISTANT_ACTIVITY_TYPE);
918 }
919 }
920
Craig Mautner84984fa2014-06-19 11:19:20 -0700921 int getTaskToReturnTo() {
922 return mTaskToReturnTo;
923 }
924
Craig Mautnera228ae92014-07-09 05:44:55 -0700925 void setPrevAffiliate(TaskRecord prevAffiliate) {
926 mPrevAffiliate = prevAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800927 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700928 }
929
930 void setNextAffiliate(TaskRecord nextAffiliate) {
931 mNextAffiliate = nextAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800932 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700933 }
934
Andrii Kulian02b7a832016-10-06 23:11:56 -0700935 ActivityStack getStack() {
936 return mStack;
937 }
938
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800939 /**
940 * Must be used for setting parent stack because it performs configuration updates.
941 * Must be called after adding task as a child to the stack.
942 */
Andrii Kulian02b7a832016-10-06 23:11:56 -0700943 void setStack(ActivityStack stack) {
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800944 if (stack != null && !stack.isInStackLocked(this)) {
945 throw new IllegalStateException("Task must be added as a Stack child first.");
946 }
Andrii Kulian02b7a832016-10-06 23:11:56 -0700947 mStack = stack;
Andrii Kulian1779e612016-10-12 21:58:25 -0700948 onParentChanged();
Andrii Kulian02b7a832016-10-06 23:11:56 -0700949 }
950
951 /**
952 * @return Id of current stack, {@link INVALID_STACK_ID} if no stack is set.
953 */
954 int getStackId() {
955 return mStack != null ? mStack.mStackId : INVALID_STACK_ID;
956 }
957
Andrii Kulian1779e612016-10-12 21:58:25 -0700958 @Override
959 protected int getChildCount() {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700960 return mActivities.size();
Andrii Kulian1779e612016-10-12 21:58:25 -0700961 }
962
963 @Override
964 protected ConfigurationContainer getChildAt(int index) {
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700965 return mActivities.get(index);
Andrii Kulian1779e612016-10-12 21:58:25 -0700966 }
967
968 @Override
969 protected ConfigurationContainer getParent() {
970 return mStack;
971 }
972
Andrii Kulianfb1bf692017-01-17 11:17:34 -0800973 @Override
974 void onParentChanged() {
975 super.onParentChanged();
976 mService.mStackSupervisor.updateUIDsPresentOnDisplay();
977 }
978
Craig Mautnera228ae92014-07-09 05:44:55 -0700979 // Close up recents linked list.
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -0700980 private void closeRecentsChain() {
Craig Mautnera228ae92014-07-09 05:44:55 -0700981 if (mPrevAffiliate != null) {
982 mPrevAffiliate.setNextAffiliate(mNextAffiliate);
983 }
984 if (mNextAffiliate != null) {
985 mNextAffiliate.setPrevAffiliate(mPrevAffiliate);
986 }
987 setPrevAffiliate(null);
988 setNextAffiliate(null);
989 }
990
Winson Chung740c3ac2014-11-12 16:14:38 -0800991 void removedFromRecents() {
Dianne Hackborn852975d2014-08-22 17:42:43 -0700992 disposeThumbnail();
993 closeRecentsChain();
994 if (inRecents) {
995 inRecents = false;
Winson Chung740c3ac2014-11-12 16:14:38 -0800996 mService.notifyTaskPersisterLocked(this, false);
Dianne Hackborn852975d2014-08-22 17:42:43 -0700997 }
Jorim Jaggif9084ec2017-01-16 13:16:59 +0100998
999 // TODO: Use window container controller once tasks are better synced between AM and WM
1000 mService.mWindowManager.notifyTaskRemovedFromRecents(taskId, userId);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001001 }
1002
Craig Mautnera228ae92014-07-09 05:44:55 -07001003 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
1004 closeRecentsChain();
1005 mAffiliatedTaskId = taskToAffiliateWith.mAffiliatedTaskId;
Winson Chungec396d62014-08-06 17:08:00 -07001006 mAffiliatedTaskColor = taskToAffiliateWith.mAffiliatedTaskColor;
Craig Mautnera228ae92014-07-09 05:44:55 -07001007 // Find the end
1008 while (taskToAffiliateWith.mNextAffiliate != null) {
1009 final TaskRecord nextRecents = taskToAffiliateWith.mNextAffiliate;
1010 if (nextRecents.mAffiliatedTaskId != mAffiliatedTaskId) {
1011 Slog.e(TAG, "setTaskToAffiliateWith: nextRecents=" + nextRecents + " affilTaskId="
1012 + nextRecents.mAffiliatedTaskId + " should be " + mAffiliatedTaskId);
1013 if (nextRecents.mPrevAffiliate == taskToAffiliateWith) {
1014 nextRecents.setPrevAffiliate(null);
1015 }
1016 taskToAffiliateWith.setNextAffiliate(null);
1017 break;
1018 }
1019 taskToAffiliateWith = nextRecents;
1020 }
1021 taskToAffiliateWith.setNextAffiliate(this);
1022 setPrevAffiliate(taskToAffiliateWith);
1023 setNextAffiliate(null);
1024 }
1025
Winson Chung096f36b2014-08-20 15:39:01 -07001026 /**
Winsonc809cbb2015-11-02 12:06:15 -08001027 * Sets the last thumbnail with the current task bounds and the system orientation.
Winson Chung096f36b2014-08-20 15:39:01 -07001028 * @return whether the thumbnail was set
1029 */
Winsonc809cbb2015-11-02 12:06:15 -08001030 boolean setLastThumbnailLocked(Bitmap thumbnail) {
Winsonc809cbb2015-11-02 12:06:15 -08001031 int taskWidth = 0;
1032 int taskHeight = 0;
1033 if (mBounds != null) {
1034 // Non-fullscreen tasks
1035 taskWidth = mBounds.width();
1036 taskHeight = mBounds.height();
Andrii Kulian02b7a832016-10-06 23:11:56 -07001037 } else if (mStack != null) {
Winsonc809cbb2015-11-02 12:06:15 -08001038 // Fullscreen tasks
1039 final Point displaySize = new Point();
Andrii Kulian02b7a832016-10-06 23:11:56 -07001040 mStack.getDisplaySize(displaySize);
Winsonc809cbb2015-11-02 12:06:15 -08001041 taskWidth = displaySize.x;
1042 taskHeight = displaySize.y;
1043 } else {
1044 Slog.e(TAG, "setLastThumbnailLocked() called on Task without stack");
1045 }
Andrii Kulian1779e612016-10-12 21:58:25 -07001046 // We need to provide the current orientation of the display on which this task resides,
1047 // not the orientation of the task.
1048 final int orientation =
1049 getStack().mActivityContainer.mActivityDisplay.getConfiguration().orientation;
1050 return setLastThumbnailLocked(thumbnail, taskWidth, taskHeight, orientation);
Winsonc809cbb2015-11-02 12:06:15 -08001051 }
1052
1053 /**
1054 * Sets the last thumbnail with the current task bounds.
1055 * @return whether the thumbnail was set
1056 */
1057 private boolean setLastThumbnailLocked(Bitmap thumbnail, int taskWidth, int taskHeight,
1058 int screenOrientation) {
Winson Chung096f36b2014-08-20 15:39:01 -07001059 if (mLastThumbnail != thumbnail) {
1060 mLastThumbnail = thumbnail;
Winsonc809cbb2015-11-02 12:06:15 -08001061 mLastThumbnailInfo.taskWidth = taskWidth;
1062 mLastThumbnailInfo.taskHeight = taskHeight;
1063 mLastThumbnailInfo.screenOrientation = screenOrientation;
Winson Chung096f36b2014-08-20 15:39:01 -07001064 if (thumbnail == null) {
1065 if (mLastThumbnailFile != null) {
1066 mLastThumbnailFile.delete();
1067 }
1068 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08001069 mService.mRecentTasks.saveImage(thumbnail, mLastThumbnailFile.getAbsolutePath());
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001070 }
Winson Chung096f36b2014-08-20 15:39:01 -07001071 return true;
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001072 }
Winson Chung096f36b2014-08-20 15:39:01 -07001073 return false;
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001074 }
1075
1076 void getLastThumbnail(TaskThumbnail thumbs) {
1077 thumbs.mainThumbnail = mLastThumbnail;
Winsonc809cbb2015-11-02 12:06:15 -08001078 thumbs.thumbnailInfo = mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001079 thumbs.thumbnailFileDescriptor = null;
Craig Mautnerf4f8bb72014-07-29 10:41:40 -07001080 if (mLastThumbnail == null) {
Suprabh Shukla09a88f52015-12-02 14:36:31 -08001081 thumbs.mainThumbnail = mService.mRecentTasks.getImageFromWriteQueue(
Suprabh Shukla23593142015-11-03 17:31:15 -08001082 mLastThumbnailFile.getAbsolutePath());
Craig Mautnerf4f8bb72014-07-29 10:41:40 -07001083 }
Winson Chung096f36b2014-08-20 15:39:01 -07001084 // Only load the thumbnail file if we don't have a thumbnail
1085 if (thumbs.mainThumbnail == null && mLastThumbnailFile.exists()) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001086 try {
1087 thumbs.thumbnailFileDescriptor = ParcelFileDescriptor.open(mLastThumbnailFile,
1088 ParcelFileDescriptor.MODE_READ_ONLY);
1089 } catch (IOException e) {
Dianne Hackborn9844d292013-10-04 16:44:22 -07001090 }
1091 }
1092 }
1093
Winsonc809cbb2015-11-02 12:06:15 -08001094 /**
1095 * Removes in-memory thumbnail data when the max number of in-memory task thumbnails is reached.
1096 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001097 void freeLastThumbnail() {
1098 mLastThumbnail = null;
1099 }
1100
Winsonc809cbb2015-11-02 12:06:15 -08001101 /**
1102 * Removes all associated thumbnail data when a task is removed or pruned from recents.
1103 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001104 void disposeThumbnail() {
Winsonc6a2da02015-11-11 18:11:59 -08001105 mLastThumbnailInfo.reset();
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001106 mLastThumbnail = null;
1107 lastDescription = null;
1108 }
1109
Winson Chung1147c402014-05-14 11:05:00 -07001110 /** Returns the intent for the root activity for this task */
1111 Intent getBaseIntent() {
1112 return intent != null ? intent : affinityIntent;
1113 }
1114
Winson Chung942a85c2017-07-11 15:07:45 -07001115 /**
1116 * @return Whether there are only fullscreen activities in this task.
1117 */
1118 boolean containsOnlyFullscreenActivities() {
1119 for (int i = 0; i < mActivities.size(); i++) {
1120 final ActivityRecord r = mActivities.get(i);
1121 if (!r.finishing && !r.fullscreen) {
1122 return false;
1123 }
1124 }
1125 return true;
1126 }
1127
Winson Chung3b3f4642014-04-22 10:08:18 -07001128 /** Returns the first non-finishing activity from the root. */
1129 ActivityRecord getRootActivity() {
1130 for (int i = 0; i < mActivities.size(); i++) {
1131 final ActivityRecord r = mActivities.get(i);
1132 if (r.finishing) {
1133 continue;
1134 }
1135 return r;
1136 }
1137 return null;
1138 }
1139
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001140 ActivityRecord getTopActivity() {
1141 for (int i = mActivities.size() - 1; i >= 0; --i) {
1142 final ActivityRecord r = mActivities.get(i);
1143 if (r.finishing) {
1144 continue;
1145 }
1146 return r;
1147 }
1148 return null;
1149 }
1150
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -07001151 ActivityRecord topRunningActivityLocked() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001152 if (mStack != null) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001153 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1154 ActivityRecord r = mActivities.get(activityNdx);
Chong Zhang87761972016-08-22 13:53:24 -07001155 if (!r.finishing && r.okToShowLocked()) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001156 return r;
1157 }
Craig Mautner6b74cb52013-09-27 17:02:21 -07001158 }
1159 }
1160 return null;
1161 }
1162
Jorim Jaggiea039a82017-08-02 14:37:49 +02001163 void getAllRunningVisibleActivitiesLocked(ArrayList<ActivityRecord> outActivities) {
1164 if (mStack != null) {
1165 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1166 ActivityRecord r = mActivities.get(activityNdx);
1167 if (!r.finishing && r.okToShowLocked() && r.visible) {
1168 outActivities.add(r);
1169 }
1170 }
1171 }
1172 }
1173
Wale Ogunwale3b232392016-05-13 15:37:13 -07001174 ActivityRecord topRunningActivityWithStartingWindowLocked() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001175 if (mStack != null) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07001176 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1177 ActivityRecord r = mActivities.get(activityNdx);
1178 if (r.mStartingWindowState != STARTING_WINDOW_SHOWN
Chong Zhang87761972016-08-22 13:53:24 -07001179 || r.finishing || !r.okToShowLocked()) {
Wale Ogunwale3b232392016-05-13 15:37:13 -07001180 continue;
1181 }
1182 return r;
1183 }
1184 }
1185 return null;
1186 }
1187
Chong Zhang87761972016-08-22 13:53:24 -07001188 boolean okToShowLocked() {
1189 // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
1190 // okay to show the activity when locked.
1191 return mService.mStackSupervisor.isCurrentProfileLocked(userId)
1192 || topRunningActivityLocked() != null;
1193 }
1194
Craig Mautner3b475fe2013-12-16 15:58:31 -08001195 /** Call after activity movement or finish to make sure that frontOfTask is set correctly */
Bryce Leed71317c2017-02-07 14:27:22 -08001196 final void setFrontOfTask() {
1197 boolean foundFront = false;
Craig Mautner3b475fe2013-12-16 15:58:31 -08001198 final int numActivities = mActivities.size();
Craig Mautner704e40b2013-12-18 16:43:51 -08001199 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
Craig Mautner3b475fe2013-12-16 15:58:31 -08001200 final ActivityRecord r = mActivities.get(activityNdx);
1201 if (foundFront || r.finishing) {
1202 r.frontOfTask = false;
1203 } else {
1204 r.frontOfTask = true;
1205 // Set frontOfTask false for every following activity.
1206 foundFront = true;
1207 }
1208 }
Craig Mautner9587ee02014-06-23 15:00:10 +00001209 if (!foundFront && numActivities > 0) {
1210 // All activities of this task are finishing. As we ought to have a frontOfTask
1211 // activity, make the bottom activity front.
1212 mActivities.get(0).frontOfTask = true;
1213 }
Craig Mautner3b475fe2013-12-16 15:58:31 -08001214 }
1215
Craig Mautnerde4ef022013-04-07 19:01:33 -07001216 /**
Craig Mautner3b475fe2013-12-16 15:58:31 -08001217 * Reorder the history stack so that the passed activity is brought to the front.
Craig Mautnerde4ef022013-04-07 19:01:33 -07001218 */
1219 final void moveActivityToFrontLocked(ActivityRecord newTop) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001220 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
1221 "Removing and adding activity " + newTop
1222 + " to stack at top callers=" + Debug.getCallers(4));
Craig Mautnerde4ef022013-04-07 19:01:33 -07001223
Craig Mautnerde4ef022013-04-07 19:01:33 -07001224 mActivities.remove(newTop);
1225 mActivities.add(newTop);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001226 updateEffectiveIntent();
Craig Mautner3b475fe2013-12-16 15:58:31 -08001227
Bryce Leed71317c2017-02-07 14:27:22 -08001228 setFrontOfTask();
Craig Mautnerde4ef022013-04-07 19:01:33 -07001229 }
1230
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001231 void addActivityAtBottom(ActivityRecord r) {
Craig Mautner77878772013-03-04 19:46:24 -08001232 addActivityAtIndex(0, r);
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001233 }
1234
1235 void addActivityToTop(ActivityRecord r) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001236 addActivityAtIndex(mActivities.size(), r);
1237 }
1238
Winson Chung30480042017-01-26 10:55:34 -08001239 /**
1240 * Adds an activity {@param r} at the given {@param index}. The activity {@param r} must either
1241 * be in the current task or unparented to any task.
1242 */
Craig Mautner1602ec22013-05-12 10:24:27 -07001243 void addActivityAtIndex(int index, ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07001244 TaskRecord task = r.getTask();
1245 if (task != null && task != this) {
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001246 throw new IllegalArgumentException("Can not add r=" + " to task=" + this
Bryce Leeaf691c02017-03-20 14:20:22 -07001247 + " current parent=" + task);
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001248 }
Bryce Leeaf691c02017-03-20 14:20:22 -07001249
1250 r.setTask(this);
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001251
Craig Mautner6170f732013-04-02 13:05:23 -07001252 // 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 -08001253 if (!mActivities.remove(r) && r.fullscreen) {
1254 // Was not previously in list.
1255 numFullscreen++;
1256 }
Craig Mautner2c1faed2013-07-23 12:56:02 -07001257 // Only set this based on the first activity
1258 if (mActivities.isEmpty()) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001259 taskType = r.mActivityType;
1260 isPersistable = r.isPersistable();
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001261 mCallingUid = r.launchedFromUid;
1262 mCallingPackage = r.launchedFromPackage;
Dianne Hackborn852975d2014-08-22 17:42:43 -07001263 // Clamp to [1, max].
1264 maxRecents = Math.min(Math.max(r.info.maxRecents, 1),
1265 ActivityManager.getMaxAppRecentsLimitStatic());
Craig Mautner2c1faed2013-07-23 12:56:02 -07001266 } else {
1267 // Otherwise make all added activities match this one.
Craig Mautner21d24a22014-04-23 11:45:37 -07001268 r.mActivityType = taskType;
Craig Mautner78733002013-06-10 13:54:49 -07001269 }
Wale Ogunwale3b232392016-05-13 15:37:13 -07001270
1271 final int size = mActivities.size();
1272
1273 if (index == size && size > 0) {
1274 final ActivityRecord top = mActivities.get(size - 1);
1275 if (top.mTaskOverlay) {
1276 // Place below the task overlay activity since the overlay activity should always
1277 // be on top.
1278 index--;
1279 }
1280 }
1281
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001282 index = Math.min(size, index);
Craig Mautner77878772013-03-04 19:46:24 -08001283 mActivities.add(index, r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001284 updateEffectiveIntent();
Craig Mautner21d24a22014-04-23 11:45:37 -07001285 if (r.isPersistable()) {
1286 mService.notifyTaskPersisterLocked(this, false);
1287 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001288
1289 // Sync. with window manager
1290 updateOverrideConfigurationFromLaunchBounds();
Wale Ogunwalea0cd15e2017-02-01 15:33:08 -08001291 final AppWindowContainerController appController = r.getWindowContainerController();
1292 if (appController != null) {
1293 // Only attempt to move in WM if the child has a controller. It is possible we haven't
1294 // created controller for the activity we are starting yet.
1295 mWindowContainerController.positionChildAt(appController, index);
1296 }
Wale Ogunwale26c0dfe2016-12-14 14:42:30 -08001297 r.onOverrideConfigurationSent();
David Stevens82ea6cb2017-03-03 16:18:50 -08001298
1299 // Make sure the list of display UID whitelists is updated
1300 // now that this record is in a new task.
1301 mService.mStackSupervisor.updateUIDsPresentOnDisplay();
Craig Mautner77878772013-03-04 19:46:24 -08001302 }
1303
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001304 /**
Bryce Leeaf691c02017-03-20 14:20:22 -07001305 * Removes the specified activity from this task.
1306 * @param r The {@link ActivityRecord} to remove.
1307 * @return true if this was the last activity in the task.
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001308 */
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001309 boolean removeActivity(ActivityRecord r) {
Bryce Leeaf691c02017-03-20 14:20:22 -07001310 return removeActivity(r, false /*reparenting*/);
1311 }
1312
1313 boolean removeActivity(ActivityRecord r, boolean reparenting) {
1314 if (r.getTask() != this) {
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001315 throw new IllegalArgumentException(
1316 "Activity=" + r + " does not belong to task=" + this);
1317 }
1318
Bryce Leeaf691c02017-03-20 14:20:22 -07001319 r.setTask(null /*task*/, reparenting);
Bryce Leeaa5e8c32017-03-01 16:01:06 -08001320
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001321 if (mActivities.remove(r) && r.fullscreen) {
1322 // Was previously in list.
1323 numFullscreen--;
1324 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001325 if (r.isPersistable()) {
1326 mService.notifyTaskPersisterLocked(this, false);
1327 }
Wale Ogunwale89182d52016-03-11 10:38:36 -08001328
Andrii Kulian02b7a832016-10-06 23:11:56 -07001329 if (getStackId() == PINNED_STACK_ID) {
Wale Ogunwale89182d52016-03-11 10:38:36 -08001330 // We normally notify listeners of task stack changes on pause, however pinned stack
1331 // activities are normally in the paused state so no notification will be sent there
1332 // before the activity is removed. We send it here so instead.
Yorke Leebd54c2a2016-10-25 13:49:23 -07001333 mService.mTaskChangeNotificationController.notifyTaskStackChanged();
Wale Ogunwale89182d52016-03-11 10:38:36 -08001334 }
1335
Craig Mautner41326202014-06-20 14:38:21 -07001336 if (mActivities.isEmpty()) {
Craig Mautner5afcd4d2014-06-21 18:11:33 -07001337 return !mReuseTask;
Craig Mautner41326202014-06-20 14:38:21 -07001338 }
1339 updateEffectiveIntent();
1340 return false;
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001341 }
1342
Winson Chung6954fc92017-03-24 16:22:12 -07001343 /**
1344 * @return whether or not there are ONLY task overlay activities in the stack.
1345 * If {@param excludeFinishing} is set, then ignore finishing activities in the check.
1346 * If there are no task overlay activities, this call returns false.
1347 */
1348 boolean onlyHasTaskOverlayActivities(boolean excludeFinishing) {
1349 int count = 0;
1350 for (int i = mActivities.size() - 1; i >= 0; i--) {
1351 final ActivityRecord r = mActivities.get(i);
1352 if (excludeFinishing && r.finishing) {
1353 continue;
1354 }
1355 if (!r.mTaskOverlay) {
1356 return false;
1357 }
1358 count++;
1359 }
1360 return count > 0;
1361 }
1362
Craig Mautner41db4a72014-05-07 17:20:56 -07001363 boolean autoRemoveFromRecents() {
Dianne Hackbornd38aed82014-06-10 21:36:35 -07001364 // We will automatically remove the task either if it has explicitly asked for
1365 // this, or it is empty and has never contained an activity that got shown to
1366 // the user.
Dianne Hackborn13420f22014-07-18 15:43:56 -07001367 return autoRemoveRecents || (mActivities.isEmpty() && !hasBeenVisible);
Craig Mautner41db4a72014-05-07 17:20:56 -07001368 }
1369
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001370 /**
1371 * Completely remove all activities associated with an existing
1372 * task starting at a specified index.
1373 */
Winson Chung6954fc92017-03-24 16:22:12 -07001374 final void performClearTaskAtIndexLocked(int activityNdx, boolean pauseImmediately) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001375 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001376 for ( ; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001377 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001378 if (r.finishing) {
1379 continue;
1380 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07001381 if (mStack == null) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001382 // Task was restored from persistent storage.
1383 r.takeFromHistory();
1384 mActivities.remove(activityNdx);
1385 --activityNdx;
1386 --numActivities;
Winson Chung6954fc92017-03-24 16:22:12 -07001387 } else if (mStack.finishActivityLocked(r, Activity.RESULT_CANCELED, null,
1388 "clear-task-index", false, pauseImmediately)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001389 --activityNdx;
1390 --numActivities;
1391 }
1392 }
1393 }
1394
1395 /**
1396 * Completely remove all activities associated with an existing task.
1397 */
1398 final void performClearTaskLocked() {
Craig Mautner362449a2014-06-20 14:04:39 -07001399 mReuseTask = true;
Winson Chung6954fc92017-03-24 16:22:12 -07001400 performClearTaskAtIndexLocked(0, !PAUSE_IMMEDIATELY);
Craig Mautner362449a2014-06-20 14:04:39 -07001401 mReuseTask = false;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001402 }
1403
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -08001404 ActivityRecord performClearTaskForReuseLocked(ActivityRecord newR, int launchFlags) {
1405 mReuseTask = true;
1406 final ActivityRecord result = performClearTaskLocked(newR, launchFlags);
1407 mReuseTask = false;
1408 return result;
1409 }
1410
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001411 /**
1412 * Perform clear operation as requested by
1413 * {@link Intent#FLAG_ACTIVITY_CLEAR_TOP}: search from the top of the
1414 * stack to the given task, then look for
1415 * an instance of that activity in the stack and, if found, finish all
1416 * activities on top of it and return the instance.
1417 *
1418 * @param newR Description of the new activity being started.
1419 * @return Returns the old activity that should be continued to be used,
1420 * or null if none was found.
1421 */
1422 final ActivityRecord performClearTaskLocked(ActivityRecord newR, int launchFlags) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001423 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001424 for (int activityNdx = numActivities - 1; activityNdx >= 0; --activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001425 ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001426 if (r.finishing) {
1427 continue;
1428 }
1429 if (r.realActivity.equals(newR.realActivity)) {
1430 // Here it is! Now finish everything in front...
Craig Mautner1602ec22013-05-12 10:24:27 -07001431 final ActivityRecord ret = r;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001432
1433 for (++activityNdx; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -07001434 r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001435 if (r.finishing) {
1436 continue;
1437 }
1438 ActivityOptions opts = r.takeOptionsLocked();
1439 if (opts != null) {
1440 ret.updateOptionsLocked(opts);
1441 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07001442 if (mStack != null && mStack.finishActivityLocked(
Todd Kennedy539db512014-12-15 09:57:55 -08001443 r, Activity.RESULT_CANCELED, null, "clear-task-stack", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001444 --activityNdx;
1445 --numActivities;
1446 }
1447 }
1448
1449 // Finally, if this is a normal launch mode (that is, not
1450 // expecting onNewIntent()), then we will finish the current
1451 // instance of the activity so a new fresh one can be started.
1452 if (ret.launchMode == ActivityInfo.LAUNCH_MULTIPLE
Daichi Hirono15a02992016-04-27 18:47:01 +09001453 && (launchFlags & Intent.FLAG_ACTIVITY_SINGLE_TOP) == 0
1454 && !ActivityStarter.isDocumentLaunchesIntoExisting(launchFlags)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001455 if (!ret.finishing) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001456 if (mStack != null) {
1457 mStack.finishActivityLocked(
Wale Ogunwale7d701172015-03-11 15:36:30 -07001458 ret, Activity.RESULT_CANCELED, null, "clear-task-top", false);
1459 }
Craig Mautnerb0f7dc72013-04-01 16:34:45 -07001460 return null;
1461 }
1462 }
1463
1464 return ret;
1465 }
1466 }
1467
1468 return null;
1469 }
1470
Andrii Kulian21713ac2016-10-12 22:05:05 -07001471 TaskThumbnail getTaskThumbnailLocked() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07001472 if (mStack != null) {
1473 final ActivityRecord resumedActivity = mStack.mResumedActivity;
Bryce Leeaf691c02017-03-20 14:20:22 -07001474 if (resumedActivity != null && resumedActivity.getTask() == this) {
Andrii Kulian21713ac2016-10-12 22:05:05 -07001475 final Bitmap thumbnail = resumedActivity.screenshotActivityLocked();
Winsonc809cbb2015-11-02 12:06:15 -08001476 setLastThumbnailLocked(thumbnail);
Craig Mautner21d24a22014-04-23 11:45:37 -07001477 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -07001478 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001479 final TaskThumbnail taskThumbnail = new TaskThumbnail();
1480 getLastThumbnail(taskThumbnail);
1481 return taskThumbnail;
Craig Mautner9db9a0b2013-04-29 17:05:56 -07001482 }
1483
Winson Chung6954fc92017-03-24 16:22:12 -07001484 void removeTaskActivitiesLocked(boolean pauseImmediately) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001485 // Just remove the entire task.
Winson Chung6954fc92017-03-24 16:22:12 -07001486 performClearTaskAtIndexLocked(0, pauseImmediately);
Craig Mautner9db9a0b2013-04-29 17:05:56 -07001487 }
1488
Craig Mautner432f64e2015-05-20 14:59:57 -07001489 String lockTaskAuthToString() {
1490 switch (mLockTaskAuth) {
1491 case LOCK_TASK_AUTH_DONT_LOCK: return "LOCK_TASK_AUTH_DONT_LOCK";
1492 case LOCK_TASK_AUTH_PINNABLE: return "LOCK_TASK_AUTH_PINNABLE";
1493 case LOCK_TASK_AUTH_LAUNCHABLE: return "LOCK_TASK_AUTH_LAUNCHABLE";
1494 case LOCK_TASK_AUTH_WHITELISTED: return "LOCK_TASK_AUTH_WHITELISTED";
Benjamin Franz469dd582015-06-09 14:24:36 +01001495 case LOCK_TASK_AUTH_LAUNCHABLE_PRIV: return "LOCK_TASK_AUTH_LAUNCHABLE_PRIV";
Craig Mautner432f64e2015-05-20 14:59:57 -07001496 default: return "unknown=" + mLockTaskAuth;
1497 }
1498 }
1499
Craig Mautner15df08a2015-04-01 12:17:18 -07001500 void setLockTaskAuth() {
Benjamin Franz469dd582015-06-09 14:24:36 +01001501 if (!mPrivileged &&
1502 (mLockTaskMode == LOCK_TASK_LAUNCH_MODE_ALWAYS ||
1503 mLockTaskMode == LOCK_TASK_LAUNCH_MODE_NEVER)) {
1504 // Non-priv apps are not allowed to use always or never, fall back to default
1505 mLockTaskMode = LOCK_TASK_LAUNCH_MODE_DEFAULT;
1506 }
Craig Mautner15df08a2015-04-01 12:17:18 -07001507 switch (mLockTaskMode) {
1508 case LOCK_TASK_LAUNCH_MODE_DEFAULT:
1509 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
1510 LOCK_TASK_AUTH_WHITELISTED : LOCK_TASK_AUTH_PINNABLE;
1511 break;
1512
1513 case LOCK_TASK_LAUNCH_MODE_NEVER:
Benjamin Franz469dd582015-06-09 14:24:36 +01001514 mLockTaskAuth = LOCK_TASK_AUTH_DONT_LOCK;
Craig Mautner15df08a2015-04-01 12:17:18 -07001515 break;
1516
1517 case LOCK_TASK_LAUNCH_MODE_ALWAYS:
Benjamin Franz469dd582015-06-09 14:24:36 +01001518 mLockTaskAuth = LOCK_TASK_AUTH_LAUNCHABLE_PRIV;
Craig Mautner15df08a2015-04-01 12:17:18 -07001519 break;
1520
1521 case LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED:
1522 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
1523 LOCK_TASK_AUTH_LAUNCHABLE : LOCK_TASK_AUTH_PINNABLE;
1524 break;
1525 }
Craig Mautner432f64e2015-05-20 14:59:57 -07001526 if (DEBUG_LOCKTASK) Slog.d(TAG_LOCKTASK, "setLockTaskAuth: task=" + this +
1527 " mLockTaskAuth=" + lockTaskAuthToString());
Craig Mautner15df08a2015-04-01 12:17:18 -07001528 }
1529
1530 boolean isLockTaskWhitelistedLocked() {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +01001531 String pkg = (realActivity != null) ? realActivity.getPackageName() : null;
1532 if (pkg == null) {
Craig Mautner15df08a2015-04-01 12:17:18 -07001533 return false;
1534 }
1535 String[] packages = mService.mLockTaskPackages.get(userId);
1536 if (packages == null) {
1537 return false;
1538 }
1539 for (int i = packages.length - 1; i >= 0; --i) {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +01001540 if (pkg.equals(packages[i])) {
Craig Mautner15df08a2015-04-01 12:17:18 -07001541 return true;
1542 }
1543 }
1544 return false;
1545 }
Wale Ogunwale74e26592016-02-05 11:48:37 -08001546
Craig Mautnera82aa092013-09-13 15:34:08 -07001547 boolean isHomeTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -07001548 return taskType == HOME_ACTIVITY_TYPE;
Craig Mautnera82aa092013-09-13 15:34:08 -07001549 }
1550
Wale Ogunwale74e26592016-02-05 11:48:37 -08001551 boolean isRecentsTask() {
1552 return taskType == RECENTS_ACTIVITY_TYPE;
1553 }
1554
Winson Chung83471632016-12-13 11:02:12 -08001555 boolean isAssistantTask() {
1556 return taskType == ASSISTANT_ACTIVITY_TYPE;
1557 }
1558
Craig Mautner86d67a42013-05-14 10:34:38 -07001559 boolean isApplicationTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -07001560 return taskType == APPLICATION_ACTIVITY_TYPE;
1561 }
1562
1563 boolean isOverHomeStack() {
Matthew Ngae1ff4f2016-11-10 15:49:14 -08001564 return mTaskToReturnTo == HOME_ACTIVITY_TYPE;
Craig Mautner1602ec22013-05-12 10:24:27 -07001565 }
1566
Winson Chung83471632016-12-13 11:02:12 -08001567 boolean isOverAssistantStack() {
1568 return mTaskToReturnTo == ASSISTANT_ACTIVITY_TYPE;
1569 }
1570
Winson Chungd3395382016-12-13 11:49:09 -08001571 private boolean isResizeable(boolean checkSupportsPip) {
1572 return (mService.mForceResizableActivities || ActivityInfo.isResizeableMode(mResizeMode)
1573 || (checkSupportsPip && mSupportsPictureInPicture)) && !mTemporarilyUnresizable;
1574 }
1575
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001576 boolean isResizeable() {
Winson Chungd3395382016-12-13 11:49:09 -08001577 return isResizeable(true /* checkSupportsPip */);
1578 }
1579
1580 boolean supportsSplitScreen() {
1581 // A task can not be docked even if it is considered resizeable because it only supports
1582 // picture-in-picture mode but has a non-resizeable resizeMode
1583 return mService.mSupportsSplitScreenMultiWindow
1584 && isResizeable(false /* checkSupportsPip */)
1585 && !ActivityInfo.isPreserveOrientationMode(mResizeMode);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001586 }
1587
skuhne@google.com322347b2016-12-02 12:54:03 -08001588 /**
Andrii Kulian036e3ad2017-04-19 10:55:10 -07001589 * Check whether this task can be launched on the specified display.
1590 * @param displayId Target display id.
1591 * @return {@code true} if either it is the default display or this activity is resizeable and
1592 * can be put a secondary screen.
1593 */
1594 boolean canBeLaunchedOnDisplay(int displayId) {
1595 return mService.mStackSupervisor.canPlaceEntityOnDisplay(displayId,
1596 isResizeable(false /* checkSupportsPip */));
1597 }
1598
1599 /**
skuhne@google.com322347b2016-12-02 12:54:03 -08001600 * Check that a given bounds matches the application requested orientation.
1601 *
1602 * @param bounds The bounds to be tested.
1603 * @return True if the requested bounds are okay for a resizing request.
1604 */
Wale Ogunwale069bbd32017-02-03 07:58:14 -08001605 private boolean canResizeToBounds(Rect bounds) {
skuhne@google.com322347b2016-12-02 12:54:03 -08001606 if (bounds == null || getStackId() != FREEFORM_WORKSPACE_STACK_ID) {
1607 // Note: If not on the freeform workspace, we ignore the bounds.
1608 return true;
1609 }
1610 final boolean landscape = bounds.width() > bounds.height();
1611 if (mResizeMode == RESIZE_MODE_FORCE_RESIZABLE_PRESERVE_ORIENTATION) {
1612 return mBounds == null || landscape == (mBounds.width() > mBounds.height());
1613 }
1614 return (mResizeMode != RESIZE_MODE_FORCE_RESIZABLE_PORTRAIT_ONLY || !landscape)
1615 && (mResizeMode != RESIZE_MODE_FORCE_RESIZABLE_LANDSCAPE_ONLY || landscape);
1616 }
1617
Craig Mautner525f3d92013-05-07 14:01:50 -07001618 /**
Yorke Leebdef5372017-04-10 16:38:51 -07001619 * @return {@code true} if the task is being cleared for the purposes of being reused.
1620 */
1621 boolean isClearingToReuseTask() {
1622 return mReuseTask;
1623 }
1624
1625 /**
Craig Mautner525f3d92013-05-07 14:01:50 -07001626 * Find the activity in the history stack within the given task. Returns
1627 * the index within the history at which it's found, or < 0 if not found.
1628 */
1629 final ActivityRecord findActivityInHistoryLocked(ActivityRecord r) {
1630 final ComponentName realActivity = r.realActivity;
1631 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1632 ActivityRecord candidate = mActivities.get(activityNdx);
1633 if (candidate.finishing) {
1634 continue;
1635 }
1636 if (candidate.realActivity.equals(realActivity)) {
1637 return candidate;
1638 }
1639 }
1640 return null;
1641 }
1642
Winson Chunga449dc02014-05-16 11:15:04 -07001643 /** Updates the last task description values. */
1644 void updateTaskDescription() {
1645 // Traverse upwards looking for any break between main task activities and
1646 // utility activities.
1647 int activityNdx;
1648 final int numActivities = mActivities.size();
Wale Ogunwale3eadad72016-10-13 09:16:59 -07001649 final boolean relinquish = numActivities != 0 &&
1650 (mActivities.get(0).info.flags & FLAG_RELINQUISH_TASK_IDENTITY) != 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001651 for (activityNdx = Math.min(numActivities, 1); activityNdx < numActivities;
Craig Mautner21d24a22014-04-23 11:45:37 -07001652 ++activityNdx) {
Winson Chunga449dc02014-05-16 11:15:04 -07001653 final ActivityRecord r = mActivities.get(activityNdx);
Wale Ogunwale3eadad72016-10-13 09:16:59 -07001654 if (relinquish && (r.info.flags & FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001655 // This will be the top activity for determining taskDescription. Pre-inc to
1656 // overcome initial decrement below.
1657 ++activityNdx;
1658 break;
1659 }
Winson Chunga449dc02014-05-16 11:15:04 -07001660 if (r.intent != null &&
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001661 (r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Winson Chunga449dc02014-05-16 11:15:04 -07001662 break;
1663 }
1664 }
1665 if (activityNdx > 0) {
1666 // Traverse downwards starting below break looking for set label, icon.
1667 // Note that if there are activities in the task but none of them set the
1668 // recent activity values, then we do not fall back to the last set
1669 // values in the TaskRecord.
1670 String label = null;
Craig Mautner648f69b2014-09-18 14:16:26 -07001671 String iconFilename = null;
Winson Chunga449dc02014-05-16 11:15:04 -07001672 int colorPrimary = 0;
Winson Chung1af8eda2016-02-05 17:55:56 +00001673 int colorBackground = 0;
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001674 int statusBarColor = 0;
1675 int navigationBarColor = 0;
1676 boolean topActivity = true;
Winson Chunga449dc02014-05-16 11:15:04 -07001677 for (--activityNdx; activityNdx >= 0; --activityNdx) {
1678 final ActivityRecord r = mActivities.get(activityNdx);
1679 if (r.taskDescription != null) {
1680 if (label == null) {
1681 label = r.taskDescription.getLabel();
1682 }
Craig Mautner648f69b2014-09-18 14:16:26 -07001683 if (iconFilename == null) {
1684 iconFilename = r.taskDescription.getIconFilename();
Winson Chunga449dc02014-05-16 11:15:04 -07001685 }
1686 if (colorPrimary == 0) {
1687 colorPrimary = r.taskDescription.getPrimaryColor();
Winson Chunga449dc02014-05-16 11:15:04 -07001688 }
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001689 if (topActivity) {
Winson Chung1af8eda2016-02-05 17:55:56 +00001690 colorBackground = r.taskDescription.getBackgroundColor();
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001691 statusBarColor = r.taskDescription.getStatusBarColor();
1692 navigationBarColor = r.taskDescription.getNavigationBarColor();
Winson Chung1af8eda2016-02-05 17:55:56 +00001693 }
Winson Chunga449dc02014-05-16 11:15:04 -07001694 }
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001695 topActivity = false;
Winson Chunga449dc02014-05-16 11:15:04 -07001696 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001697 lastTaskDescription = new TaskDescription(label, null, iconFilename, colorPrimary,
Jorim Jaggi30d64f32017-04-07 16:33:17 +02001698 colorBackground, statusBarColor, navigationBarColor);
Jorim Jaggi829b9cd2017-01-23 16:20:53 +01001699 if (mWindowContainerController != null) {
1700 mWindowContainerController.setTaskDescription(lastTaskDescription);
1701 }
Winson Chungec396d62014-08-06 17:08:00 -07001702 // Update the task affiliation color if we are the parent of the group
1703 if (taskId == mAffiliatedTaskId) {
1704 mAffiliatedTaskColor = lastTaskDescription.getPrimaryColor();
1705 }
Winson Chunga449dc02014-05-16 11:15:04 -07001706 }
1707 }
1708
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001709 int findEffectiveRootIndex() {
Craig Mautner4767f4b2014-09-18 15:38:33 -07001710 int effectiveNdx = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001711 final int topActivityNdx = mActivities.size() - 1;
Dianne Hackborn39569af2014-09-23 10:56:58 -07001712 for (int activityNdx = 0; activityNdx <= topActivityNdx; ++activityNdx) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001713 final ActivityRecord r = mActivities.get(activityNdx);
1714 if (r.finishing) {
1715 continue;
1716 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001717 effectiveNdx = activityNdx;
Wale Ogunwale3eadad72016-10-13 09:16:59 -07001718 if ((r.info.flags & FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001719 break;
1720 }
1721 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001722 return effectiveNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001723 }
1724
1725 void updateEffectiveIntent() {
1726 final int effectiveRootIndex = findEffectiveRootIndex();
1727 final ActivityRecord r = mActivities.get(effectiveRootIndex);
Winson Chungfee26772014-08-05 12:21:52 -07001728 setIntent(r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001729 }
1730
Craig Mautner21d24a22014-04-23 11:45:37 -07001731 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001732 if (DEBUG_RECENTS) Slog.i(TAG_RECENTS, "Saving task=" + this);
Craig Mautner21d24a22014-04-23 11:45:37 -07001733
1734 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
1735 if (realActivity != null) {
1736 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
1737 }
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001738 out.attribute(null, ATTR_REALACTIVITY_SUSPENDED, String.valueOf(realActivitySuspended));
Craig Mautner21d24a22014-04-23 11:45:37 -07001739 if (origActivity != null) {
1740 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
1741 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001742 // Write affinity, and root affinity if it is different from affinity.
1743 // We use the special string "@" for a null root affinity, so we can identify
1744 // later whether we were given a root affinity or should just make it the
1745 // same as the affinity.
Craig Mautner21d24a22014-04-23 11:45:37 -07001746 if (affinity != null) {
1747 out.attribute(null, ATTR_AFFINITY, affinity);
Dianne Hackborn79228822014-09-16 11:11:23 -07001748 if (!affinity.equals(rootAffinity)) {
1749 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
1750 }
1751 } else if (rootAffinity != null) {
1752 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
Craig Mautner21d24a22014-04-23 11:45:37 -07001753 }
1754 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
Dianne Hackborn13420f22014-07-18 15:43:56 -07001755 out.attribute(null, ATTR_AUTOREMOVERECENTS, String.valueOf(autoRemoveRecents));
Craig Mautner21d24a22014-04-23 11:45:37 -07001756 out.attribute(null, ATTR_ASKEDCOMPATMODE, String.valueOf(askedCompatMode));
1757 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001758 out.attribute(null, ATTR_USER_SETUP_COMPLETE, String.valueOf(mUserSetupComplete));
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001759 out.attribute(null, ATTR_EFFECTIVE_UID, String.valueOf(effectiveUid));
Craig Mautner21d24a22014-04-23 11:45:37 -07001760 out.attribute(null, ATTR_TASKTYPE, String.valueOf(taskType));
Winson Chungffa2ec62014-07-03 15:54:42 -07001761 out.attribute(null, ATTR_FIRSTACTIVETIME, String.valueOf(firstActiveTime));
Winson Chungf1fbd772014-06-24 18:06:58 -07001762 out.attribute(null, ATTR_LASTACTIVETIME, String.valueOf(lastActiveTime));
Craig Mautner21d24a22014-04-23 11:45:37 -07001763 out.attribute(null, ATTR_LASTTIMEMOVED, String.valueOf(mLastTimeMoved));
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001764 out.attribute(null, ATTR_NEVERRELINQUISH, String.valueOf(mNeverRelinquishIdentity));
Craig Mautner21d24a22014-04-23 11:45:37 -07001765 if (lastDescription != null) {
1766 out.attribute(null, ATTR_LASTDESCRIPTION, lastDescription.toString());
1767 }
Winson Chung2cb86c72014-06-25 12:03:30 -07001768 if (lastTaskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001769 lastTaskDescription.saveToXml(out);
Winson Chung2cb86c72014-06-25 12:03:30 -07001770 }
Winson Chung36f3f032016-09-08 23:29:43 +00001771 mLastThumbnailInfo.saveToXml(out);
Winson Chungec396d62014-08-06 17:08:00 -07001772 out.attribute(null, ATTR_TASK_AFFILIATION_COLOR, String.valueOf(mAffiliatedTaskColor));
Craig Mautnera228ae92014-07-09 05:44:55 -07001773 out.attribute(null, ATTR_TASK_AFFILIATION, String.valueOf(mAffiliatedTaskId));
1774 out.attribute(null, ATTR_PREV_AFFILIATION, String.valueOf(mPrevAffiliateTaskId));
1775 out.attribute(null, ATTR_NEXT_AFFILIATION, String.valueOf(mNextAffiliateTaskId));
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001776 out.attribute(null, ATTR_CALLING_UID, String.valueOf(mCallingUid));
1777 out.attribute(null, ATTR_CALLING_PACKAGE, mCallingPackage == null ? "" : mCallingPackage);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001778 out.attribute(null, ATTR_RESIZE_MODE, String.valueOf(mResizeMode));
Winson Chungd3395382016-12-13 11:49:09 -08001779 out.attribute(null, ATTR_SUPPORTS_PICTURE_IN_PICTURE,
1780 String.valueOf(mSupportsPictureInPicture));
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001781 out.attribute(null, ATTR_PRIVILEGED, String.valueOf(mPrivileged));
Wale Ogunwale706ed792015-08-02 10:29:44 -07001782 if (mLastNonFullscreenBounds != null) {
1783 out.attribute(
1784 null, ATTR_NON_FULLSCREEN_BOUNDS, mLastNonFullscreenBounds.flattenToString());
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001785 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001786 out.attribute(null, ATTR_MIN_WIDTH, String.valueOf(mMinWidth));
1787 out.attribute(null, ATTR_MIN_HEIGHT, String.valueOf(mMinHeight));
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001788 out.attribute(null, ATTR_PERSIST_TASK_VERSION, String.valueOf(PERSIST_TASK_VERSION));
Winson Chung2cb86c72014-06-25 12:03:30 -07001789
Craig Mautner21d24a22014-04-23 11:45:37 -07001790 if (affinityIntent != null) {
1791 out.startTag(null, TAG_AFFINITYINTENT);
1792 affinityIntent.saveToXml(out);
1793 out.endTag(null, TAG_AFFINITYINTENT);
1794 }
1795
Winson Chung36f3f032016-09-08 23:29:43 +00001796 out.startTag(null, TAG_INTENT);
1797 intent.saveToXml(out);
1798 out.endTag(null, TAG_INTENT);
Craig Mautner21d24a22014-04-23 11:45:37 -07001799
1800 final ArrayList<ActivityRecord> activities = mActivities;
1801 final int numActivities = activities.size();
1802 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1803 final ActivityRecord r = activities.get(activityNdx);
Craig Mautner43e52ed2014-06-16 17:18:52 -07001804 if (r.info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY || !r.isPersistable() ||
Wale Ogunwale843bfb92015-03-27 11:06:48 -07001805 ((r.intent.getFlags() & FLAG_ACTIVITY_NEW_DOCUMENT
1806 | FLAG_ACTIVITY_RETAIN_IN_RECENTS) == FLAG_ACTIVITY_NEW_DOCUMENT) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -07001807 activityNdx > 0) {
Craig Mautnerf357c0c2014-06-09 09:23:27 -07001808 // Stop at first non-persistable or first break in task (CLEAR_WHEN_TASK_RESET).
Craig Mautner21d24a22014-04-23 11:45:37 -07001809 break;
1810 }
1811 out.startTag(null, TAG_ACTIVITY);
1812 r.saveToXml(out);
1813 out.endTag(null, TAG_ACTIVITY);
1814 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001815 }
1816
Winson Chung36f3f032016-09-08 23:29:43 +00001817 static TaskRecord restoreFromXml(XmlPullParser in, ActivityStackSupervisor stackSupervisor)
1818 throws IOException, XmlPullParserException {
Craig Mautner21d24a22014-04-23 11:45:37 -07001819 Intent intent = null;
1820 Intent affinityIntent = null;
Winsonc809cbb2015-11-02 12:06:15 -08001821 ArrayList<ActivityRecord> activities = new ArrayList<>();
Craig Mautner21d24a22014-04-23 11:45:37 -07001822 ComponentName realActivity = null;
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001823 boolean realActivitySuspended = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001824 ComponentName origActivity = null;
1825 String affinity = null;
Dianne Hackborn79228822014-09-16 11:11:23 -07001826 String rootAffinity = null;
1827 boolean hasRootAffinity = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001828 boolean rootHasReset = false;
Dianne Hackborn13420f22014-07-18 15:43:56 -07001829 boolean autoRemoveRecents = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001830 boolean askedCompatMode = false;
1831 int taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -07001832 int userId = 0;
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001833 boolean userSetupComplete = true;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001834 int effectiveUid = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001835 String lastDescription = null;
Winson Chungffa2ec62014-07-03 15:54:42 -07001836 long firstActiveTime = -1;
Winson Chung2cb86c72014-06-25 12:03:30 -07001837 long lastActiveTime = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001838 long lastTimeOnTop = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001839 boolean neverRelinquishIdentity = true;
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001840 int taskId = INVALID_TASK_ID;
Craig Mautner21d24a22014-04-23 11:45:37 -07001841 final int outerDepth = in.getDepth();
Craig Mautner648f69b2014-09-18 14:16:26 -07001842 TaskDescription taskDescription = new TaskDescription();
Winsonc809cbb2015-11-02 12:06:15 -08001843 TaskThumbnailInfo thumbnailInfo = new TaskThumbnailInfo();
Wale Ogunwale18795a22014-12-03 11:38:33 -08001844 int taskAffiliation = INVALID_TASK_ID;
Winson Chungec396d62014-08-06 17:08:00 -07001845 int taskAffiliationColor = 0;
Wale Ogunwale18795a22014-12-03 11:38:33 -08001846 int prevTaskId = INVALID_TASK_ID;
1847 int nextTaskId = INVALID_TASK_ID;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001848 int callingUid = -1;
1849 String callingPackage = "";
Wale Ogunwaled829d362016-02-10 19:24:49 -08001850 int resizeMode = RESIZE_MODE_FORCE_RESIZEABLE;
Winson Chungd3395382016-12-13 11:49:09 -08001851 boolean supportsPictureInPicture = false;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001852 boolean privileged = false;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001853 Rect bounds = null;
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001854 int minWidth = INVALID_MIN_SIZE;
1855 int minHeight = INVALID_MIN_SIZE;
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001856 int persistTaskVersion = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07001857
1858 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1859 final String attrName = in.getAttributeName(attrNdx);
1860 final String attrValue = in.getAttributeValue(attrNdx);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001861 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: attribute name=" +
1862 attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001863 if (ATTR_TASKID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001864 if (taskId == INVALID_TASK_ID) taskId = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001865 } else if (ATTR_REALACTIVITY.equals(attrName)) {
1866 realActivity = ComponentName.unflattenFromString(attrValue);
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001867 } else if (ATTR_REALACTIVITY_SUSPENDED.equals(attrName)) {
1868 realActivitySuspended = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001869 } else if (ATTR_ORIGACTIVITY.equals(attrName)) {
1870 origActivity = ComponentName.unflattenFromString(attrValue);
1871 } else if (ATTR_AFFINITY.equals(attrName)) {
1872 affinity = attrValue;
Dianne Hackborn79228822014-09-16 11:11:23 -07001873 } else if (ATTR_ROOT_AFFINITY.equals(attrName)) {
1874 rootAffinity = attrValue;
1875 hasRootAffinity = true;
Craig Mautner21d24a22014-04-23 11:45:37 -07001876 } else if (ATTR_ROOTHASRESET.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001877 rootHasReset = Boolean.parseBoolean(attrValue);
Dianne Hackborn13420f22014-07-18 15:43:56 -07001878 } else if (ATTR_AUTOREMOVERECENTS.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001879 autoRemoveRecents = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001880 } else if (ATTR_ASKEDCOMPATMODE.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001881 askedCompatMode = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001882 } else if (ATTR_USERID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001883 userId = Integer.parseInt(attrValue);
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001884 } else if (ATTR_USER_SETUP_COMPLETE.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001885 userSetupComplete = Boolean.parseBoolean(attrValue);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001886 } else if (ATTR_EFFECTIVE_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001887 effectiveUid = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001888 } else if (ATTR_TASKTYPE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001889 taskType = Integer.parseInt(attrValue);
Winson Chungffa2ec62014-07-03 15:54:42 -07001890 } else if (ATTR_FIRSTACTIVETIME.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001891 firstActiveTime = Long.parseLong(attrValue);
Winson Chungf1fbd772014-06-24 18:06:58 -07001892 } else if (ATTR_LASTACTIVETIME.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001893 lastActiveTime = Long.parseLong(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001894 } else if (ATTR_LASTDESCRIPTION.equals(attrName)) {
1895 lastDescription = attrValue;
1896 } else if (ATTR_LASTTIMEMOVED.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001897 lastTimeOnTop = Long.parseLong(attrValue);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001898 } else if (ATTR_NEVERRELINQUISH.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001899 neverRelinquishIdentity = Boolean.parseBoolean(attrValue);
Winsonc809cbb2015-11-02 12:06:15 -08001900 } else if (attrName.startsWith(TaskThumbnailInfo.ATTR_TASK_THUMBNAILINFO_PREFIX)) {
1901 thumbnailInfo.restoreFromXml(attrName, attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001902 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1903 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001904 } else if (ATTR_TASK_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001905 taskAffiliation = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001906 } else if (ATTR_PREV_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001907 prevTaskId = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001908 } else if (ATTR_NEXT_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001909 nextTaskId = Integer.parseInt(attrValue);
Winson Chungec396d62014-08-06 17:08:00 -07001910 } else if (ATTR_TASK_AFFILIATION_COLOR.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001911 taskAffiliationColor = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001912 } else if (ATTR_CALLING_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001913 callingUid = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001914 } else if (ATTR_CALLING_PACKAGE.equals(attrName)) {
1915 callingPackage = attrValue;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001916 } else if (ATTR_RESIZE_MODE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001917 resizeMode = Integer.parseInt(attrValue);
Winson Chungd3395382016-12-13 11:49:09 -08001918 } else if (ATTR_SUPPORTS_PICTURE_IN_PICTURE.equals(attrName)) {
1919 supportsPictureInPicture = Boolean.parseBoolean(attrValue);
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001920 } else if (ATTR_PRIVILEGED.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001921 privileged = Boolean.parseBoolean(attrValue);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001922 } else if (ATTR_NON_FULLSCREEN_BOUNDS.equals(attrName)) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001923 bounds = Rect.unflattenFromString(attrValue);
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001924 } else if (ATTR_MIN_WIDTH.equals(attrName)) {
1925 minWidth = Integer.parseInt(attrValue);
1926 } else if (ATTR_MIN_HEIGHT.equals(attrName)) {
1927 minHeight = Integer.parseInt(attrValue);
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001928 } else if (ATTR_PERSIST_TASK_VERSION.equals(attrName)) {
1929 persistTaskVersion = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001930 } else {
1931 Slog.w(TAG, "TaskRecord: Unknown attribute=" + attrName);
1932 }
1933 }
1934
1935 int event;
1936 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
Ben Kwa8814cf42015-07-08 10:54:56 -07001937 (event != XmlPullParser.END_TAG || in.getDepth() >= outerDepth)) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001938 if (event == XmlPullParser.START_TAG) {
1939 final String name = in.getName();
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001940 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: START_TAG name=" +
1941 name);
Craig Mautner21d24a22014-04-23 11:45:37 -07001942 if (TAG_AFFINITYINTENT.equals(name)) {
1943 affinityIntent = Intent.restoreFromXml(in);
1944 } else if (TAG_INTENT.equals(name)) {
1945 intent = Intent.restoreFromXml(in);
1946 } else if (TAG_ACTIVITY.equals(name)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001947 ActivityRecord activity = ActivityRecord.restoreFromXml(in, stackSupervisor);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001948 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: activity=" +
1949 activity);
Craig Mautner21d24a22014-04-23 11:45:37 -07001950 if (activity != null) {
1951 activities.add(activity);
1952 }
1953 } else {
1954 Slog.e(TAG, "restoreTask: Unexpected name=" + name);
1955 XmlUtils.skipCurrentTag(in);
1956 }
1957 }
1958 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001959 if (!hasRootAffinity) {
1960 rootAffinity = affinity;
1961 } else if ("@".equals(rootAffinity)) {
1962 rootAffinity = null;
1963 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001964 if (effectiveUid <= 0) {
1965 Intent checkIntent = intent != null ? intent : affinityIntent;
1966 effectiveUid = 0;
1967 if (checkIntent != null) {
1968 IPackageManager pm = AppGlobals.getPackageManager();
1969 try {
1970 ApplicationInfo ai = pm.getApplicationInfo(
1971 checkIntent.getComponent().getPackageName(),
Amith Yamasani0d1fd8d2016-10-12 14:21:51 -07001972 PackageManager.MATCH_UNINSTALLED_PACKAGES
1973 | PackageManager.MATCH_DISABLED_COMPONENTS, userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001974 if (ai != null) {
1975 effectiveUid = ai.uid;
1976 }
1977 } catch (RemoteException e) {
1978 }
1979 }
1980 Slog.w(TAG, "Updating task #" + taskId + " for " + checkIntent
1981 + ": effectiveUid=" + effectiveUid);
1982 }
1983
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07001984 if (persistTaskVersion < 1) {
1985 // We need to convert the resize mode of home activities saved before version one if
1986 // they are marked as RESIZE_MODE_RESIZEABLE to RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION
1987 // since we didn't have that differentiation before version 1 and the system didn't
1988 // resize home activities before then.
1989 if (taskType == HOME_ACTIVITY_TYPE && resizeMode == RESIZE_MODE_RESIZEABLE) {
1990 resizeMode = RESIZE_MODE_RESIZEABLE_VIA_SDK_VERSION;
1991 }
Winson Chungd3395382016-12-13 11:49:09 -08001992 } else {
1993 // This activity has previously marked itself explicitly as both resizeable and
1994 // supporting picture-in-picture. Since there is no longer a requirement for
1995 // picture-in-picture activities to be resizeable, we can mark this simply as
1996 // resizeable and supporting picture-in-picture separately.
1997 if (resizeMode == RESIZE_MODE_RESIZEABLE_AND_PIPABLE_DEPRECATED) {
1998 resizeMode = RESIZE_MODE_RESIZEABLE;
1999 supportsPictureInPicture = true;
2000 }
Wale Ogunwale625ed0c2016-10-18 08:50:31 -07002001 }
2002
Winson Chung36f3f032016-09-08 23:29:43 +00002003 final TaskRecord task = new TaskRecord(stackSupervisor.mService, taskId, intent,
Dianne Hackborn79228822014-09-16 11:11:23 -07002004 affinityIntent, affinity, rootAffinity, realActivity, origActivity, rootHasReset,
Dianne Hackborn885fbe52014-08-23 15:23:58 -07002005 autoRemoveRecents, askedCompatMode, taskType, userId, effectiveUid, lastDescription,
2006 activities, firstActiveTime, lastActiveTime, lastTimeOnTop, neverRelinquishIdentity,
Winsonc809cbb2015-11-02 12:06:15 -08002007 taskDescription, thumbnailInfo, taskAffiliation, prevTaskId, nextTaskId,
Winson Chungd3395382016-12-13 11:49:09 -08002008 taskAffiliationColor, callingUid, callingPackage, resizeMode,
2009 supportsPictureInPicture, privileged, realActivitySuspended, userSetupComplete,
2010 minWidth, minHeight);
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07002011 task.updateOverrideConfiguration(bounds);
Craig Mautner21d24a22014-04-23 11:45:37 -07002012
2013 for (int activityNdx = activities.size() - 1; activityNdx >=0; --activityNdx) {
Bryce Leeaf691c02017-03-20 14:20:22 -07002014 activities.get(activityNdx).setTask(task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002015 }
2016
Wale Ogunwaleee006da2015-03-30 14:49:25 -07002017 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "Restored task=" + task);
Craig Mautner21d24a22014-04-23 11:45:37 -07002018 return task;
2019 }
2020
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002021 private void adjustForMinimalTaskDimensions(Rect bounds) {
2022 if (bounds == null) {
2023 return;
2024 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002025 int minWidth = mMinWidth;
2026 int minHeight = mMinHeight;
Robert Carr9c5867d2016-03-10 15:52:46 -08002027 // If the task has no requested minimal size, we'd like to enforce a minimal size
2028 // so that the user can not render the task too small to manipulate. We don't need
2029 // to do this for the pinned stack as the bounds are controlled by the system.
Andrii Kulian02b7a832016-10-06 23:11:56 -07002030 if (getStackId() != PINNED_STACK_ID) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002031 if (minWidth == INVALID_MIN_SIZE) {
2032 minWidth = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07002033 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002034 if (minHeight == INVALID_MIN_SIZE) {
2035 minHeight = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07002036 }
Robert Carr9c5867d2016-03-10 15:52:46 -08002037 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002038 final boolean adjustWidth = minWidth > bounds.width();
2039 final boolean adjustHeight = minHeight > bounds.height();
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002040 if (!(adjustWidth || adjustHeight)) {
2041 return;
2042 }
2043
2044 if (adjustWidth) {
2045 if (mBounds != null && bounds.right == mBounds.right) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002046 bounds.left = bounds.right - minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002047 } else {
2048 // Either left bounds match, or neither match, or the previous bounds were
2049 // fullscreen and we default to keeping left.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002050 bounds.right = bounds.left + minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002051 }
2052 }
2053 if (adjustHeight) {
2054 if (mBounds != null && bounds.bottom == mBounds.bottom) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002055 bounds.top = bounds.bottom - minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002056 } else {
2057 // Either top bounds match, or neither match, or the previous bounds were
2058 // fullscreen and we default to keeping top.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07002059 bounds.bottom = bounds.top + minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002060 }
2061 }
2062 }
2063
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07002064 /**
Winson Chung5af42fc2017-03-24 17:11:33 -07002065 * @return a new Configuration for this Task, given the provided {@param bounds} and
2066 * {@param insetBounds}.
2067 */
2068 Configuration computeNewOverrideConfigurationForBounds(Rect bounds, Rect insetBounds) {
2069 // Compute a new override configuration for the given bounds, if fullscreen bounds
2070 // (bounds == null), then leave the override config unset
2071 final Configuration newOverrideConfig = new Configuration();
2072 if (bounds != null) {
2073 newOverrideConfig.setTo(getOverrideConfiguration());
2074 mTmpRect.set(bounds);
2075 adjustForMinimalTaskDimensions(mTmpRect);
2076 computeOverrideConfiguration(newOverrideConfig, mTmpRect, insetBounds,
2077 mTmpRect.right != bounds.right, mTmpRect.bottom != bounds.bottom);
2078 }
2079
2080 return newOverrideConfig;
2081 }
2082
2083 /**
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07002084 * Update task's override configuration based on the bounds.
Jorim Jaggi0a932142016-02-01 17:42:25 -08002085 * @param bounds The bounds of the task.
Andrii Kulian8072d112016-09-16 11:11:01 -07002086 * @return True if the override configuration was updated.
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07002087 */
Andrii Kulian8072d112016-09-16 11:11:01 -07002088 boolean updateOverrideConfiguration(Rect bounds) {
Jorim Jaggi0a932142016-02-01 17:42:25 -08002089 return updateOverrideConfiguration(bounds, null /* insetBounds */);
2090 }
2091
2092 /**
2093 * Update task's override configuration based on the bounds.
2094 * @param bounds The bounds of the task.
2095 * @param insetBounds The bounds used to calculate the system insets, which is used here to
2096 * subtract the navigation bar/status bar size from the screen size reported
2097 * to the application. See {@link IActivityManager#resizeDockedStack}.
Andrii Kulian8072d112016-09-16 11:11:01 -07002098 * @return True if the override configuration was updated.
Jorim Jaggi0a932142016-02-01 17:42:25 -08002099 */
Andrii Kulian8072d112016-09-16 11:11:01 -07002100 boolean updateOverrideConfiguration(Rect bounds, @Nullable Rect insetBounds) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07002101 if (Objects.equals(mBounds, bounds)) {
Andrii Kulian8072d112016-09-16 11:11:01 -07002102 return false;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07002103 }
Andrii Kulian1779e612016-10-12 21:58:25 -07002104 mTmpConfig.setTo(getOverrideConfiguration());
Wale Ogunwale5f986092015-12-04 15:35:38 -08002105 final boolean oldFullscreen = mFullscreen;
Andrii Kulian1779e612016-10-12 21:58:25 -07002106 final Configuration newConfig = getOverrideConfiguration();
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07002107
2108 mFullscreen = bounds == null;
Wale Ogunwale706ed792015-08-02 10:29:44 -07002109 if (mFullscreen) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002110 if (mBounds != null && StackId.persistTaskBounds(mStack.mStackId)) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07002111 mLastNonFullscreenBounds = mBounds;
2112 }
2113 mBounds = null;
Andrii Kulian1779e612016-10-12 21:58:25 -07002114 newConfig.unset();
Wale Ogunwale706ed792015-08-02 10:29:44 -07002115 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002116 mTmpRect.set(bounds);
2117 adjustForMinimalTaskDimensions(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08002118 if (mBounds == null) {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002119 mBounds = new Rect(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08002120 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08002121 mBounds.set(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08002122 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07002123 if (mStack == null || StackId.persistTaskBounds(mStack.mStackId)) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07002124 mLastNonFullscreenBounds = mBounds;
2125 }
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002126 computeOverrideConfiguration(newConfig, mTmpRect, insetBounds,
Andrii Kuliandaea3572016-04-08 13:20:51 -07002127 mTmpRect.right != bounds.right, mTmpRect.bottom != bounds.bottom);
Wale Ogunwale706ed792015-08-02 10:29:44 -07002128 }
Andrii Kulian1779e612016-10-12 21:58:25 -07002129 onOverrideConfigurationChanged(newConfig);
Wale Ogunwale5f986092015-12-04 15:35:38 -08002130
2131 if (mFullscreen != oldFullscreen) {
Winson Chung5af42fc2017-03-24 17:11:33 -07002132 mService.mStackSupervisor.scheduleUpdateMultiWindowMode(this);
Wale Ogunwale5f986092015-12-04 15:35:38 -08002133 }
2134
Andrii Kulian1779e612016-10-12 21:58:25 -07002135 return !mTmpConfig.equals(newConfig);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07002136 }
2137
Andrii Kulian1779e612016-10-12 21:58:25 -07002138 /** Clears passed config and fills it with new override values. */
Wale Ogunwale55ddf8f2017-03-20 08:56:38 -07002139 // TODO(b/36505427): TaskRecord.computeOverrideConfiguration() is a utility method that doesn't
2140 // depend on task or stacks, but uses those object to get the display to base the calculation
2141 // on. Probably best to centralize calculations like this in ConfigurationContainer.
2142 void computeOverrideConfiguration(Configuration config, Rect bounds, Rect insetBounds,
Andrii Kuliana8a9bc52016-10-14 11:00:13 -07002143 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002144 mTmpNonDecorBounds.set(bounds);
2145 mTmpStableBounds.set(bounds);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002146
Andrii Kulian1779e612016-10-12 21:58:25 -07002147 config.unset();
Winson Chungbdc646f2017-02-13 12:12:22 -08002148 final Configuration parentConfig = getParent().getConfiguration();
Bryce Lee7566d762017-03-30 09:34:15 -07002149
Andrii Kulian1779e612016-10-12 21:58:25 -07002150 final float density = parentConfig.densityDpi * DisplayMetrics.DENSITY_DEFAULT_SCALE;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002151
Winson Chungbdc646f2017-02-13 12:12:22 -08002152 if (mStack != null) {
2153 final StackWindowController stackController = mStack.getWindowContainerController();
2154 stackController.adjustConfigurationForBounds(bounds, insetBounds,
2155 mTmpNonDecorBounds, mTmpStableBounds, overrideWidth, overrideHeight, density,
2156 config, parentConfig);
2157 } else {
Bryce Lee7566d762017-03-30 09:34:15 -07002158 throw new IllegalArgumentException("Expected stack when calculating override config");
Winson Chungbdc646f2017-02-13 12:12:22 -08002159 }
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002160
Winson Chung60c1aba2017-03-14 17:47:42 -07002161 config.orientation = (config.screenWidthDp <= config.screenHeightDp)
2162 ? Configuration.ORIENTATION_PORTRAIT
2163 : Configuration.ORIENTATION_LANDSCAPE;
2164
Jorim Jaggi85639432016-05-06 17:27:55 -07002165 // For calculating screen layout, we need to use the non-decor inset screen area for the
2166 // calculation for compatibility reasons, i.e. screen area without system bars that could
2167 // never go away in Honeycomb.
Winson Chungbdc646f2017-02-13 12:12:22 -08002168 final int compatScreenWidthDp = (int) (mTmpNonDecorBounds.width() / density);
2169 final int compatScreenHeightDp = (int) (mTmpNonDecorBounds.height() / density);
Andrii Kulian1779e612016-10-12 21:58:25 -07002170 // We're only overriding LONG, SIZE and COMPAT parts of screenLayout, so we start override
2171 // calculation with partial default.
2172 final int sl = Configuration.SCREENLAYOUT_LONG_YES | Configuration.SCREENLAYOUT_SIZE_XLARGE;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08002173 final int longSize = Math.max(compatScreenHeightDp, compatScreenWidthDp);
Andrii Kulian1779e612016-10-12 21:58:25 -07002174 final int shortSize = Math.min(compatScreenHeightDp, compatScreenWidthDp);
Jorim Jaggi85639432016-05-06 17:27:55 -07002175 config.screenLayout = Configuration.reduceScreenLayout(sl, longSize, shortSize);
2176
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08002177 }
2178
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08002179 Rect updateOverrideConfigurationFromLaunchBounds() {
2180 final Rect bounds = validateBounds(getLaunchBounds());
2181 updateOverrideConfiguration(bounds);
Andrii Kulian73336d812016-03-24 12:56:08 -07002182 if (bounds != null) {
2183 bounds.set(mBounds);
2184 }
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08002185 return bounds;
2186 }
2187
2188 static Rect validateBounds(Rect bounds) {
2189 if (bounds != null && bounds.isEmpty()) {
2190 Slog.wtf(TAG, "Received strange task bounds: " + bounds, new Throwable());
2191 return null;
2192 }
2193 return bounds;
2194 }
2195
Wale Ogunwale935e5022015-11-10 12:36:10 -08002196 /** Updates the task's bounds and override configuration to match what is expected for the
2197 * input stack. */
2198 void updateOverrideConfigurationForStack(ActivityStack inStack) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002199 if (mStack != null && mStack == inStack) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08002200 return;
2201 }
2202
2203 if (inStack.mStackId == FREEFORM_WORKSPACE_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002204 if (!isResizeable()) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08002205 throw new IllegalArgumentException("Can not position non-resizeable task="
2206 + this + " in stack=" + inStack);
2207 }
2208 if (mBounds != null) {
2209 return;
2210 }
2211 if (mLastNonFullscreenBounds != null) {
2212 updateOverrideConfiguration(mLastNonFullscreenBounds);
2213 } else {
2214 inStack.layoutTaskInStack(this, null);
2215 }
2216 } else {
2217 updateOverrideConfiguration(inStack.mBounds);
2218 }
2219 }
2220
Chong Zhang0fa656b2015-08-31 15:17:21 -07002221 /**
2222 * Returns the correct stack to use based on task type and currently set bounds,
2223 * regardless of the focused stack and current stack association of the task.
2224 * The task will be moved (and stack focus changed) later if necessary.
2225 */
2226 int getLaunchStackId() {
Matthew Ngae1ff4f2016-11-10 15:49:14 -08002227 if (isRecentsTask()) {
2228 return RECENTS_STACK_ID;
2229 }
2230 if (isHomeTask()) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07002231 return HOME_STACK_ID;
2232 }
Winson Chung83471632016-12-13 11:02:12 -08002233 if (isAssistantTask()) {
2234 return ASSISTANT_STACK_ID;
2235 }
Chong Zhang0fa656b2015-08-31 15:17:21 -07002236 if (mBounds != null) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07002237 return FREEFORM_WORKSPACE_STACK_ID;
2238 }
2239 return FULLSCREEN_WORKSPACE_STACK_ID;
2240 }
2241
2242 /** Returns the bounds that should be used to launch this task. */
2243 Rect getLaunchBounds() {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002244 if (mStack == null) {
Chong Zhang7d5f5102016-01-13 10:29:24 -08002245 return null;
2246 }
2247
Andrii Kulian02b7a832016-10-06 23:11:56 -07002248 final int stackId = mStack.mStackId;
Chong Zhang7d5f5102016-01-13 10:29:24 -08002249 if (stackId == HOME_STACK_ID
Matthew Ngae1ff4f2016-11-10 15:49:14 -08002250 || stackId == RECENTS_STACK_ID
Winson Chung83471632016-12-13 11:02:12 -08002251 || stackId == ASSISTANT_STACK_ID
Chong Zhang7d5f5102016-01-13 10:29:24 -08002252 || stackId == FULLSCREEN_WORKSPACE_STACK_ID
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002253 || (stackId == DOCKED_STACK_ID && !isResizeable())) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002254 return isResizeable() ? mStack.mBounds : null;
Wale Ogunwale3797c222015-10-27 14:21:58 -07002255 } else if (!StackId.persistTaskBounds(stackId)) {
Andrii Kulian02b7a832016-10-06 23:11:56 -07002256 return mStack.mBounds;
Wale Ogunwale706ed792015-08-02 10:29:44 -07002257 }
2258 return mLastNonFullscreenBounds;
2259 }
2260
Jorim Jaggi8b702ed2017-01-20 16:59:03 +01002261 void addStartingWindowsForVisibleActivities(boolean taskSwitch) {
2262 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
2263 final ActivityRecord r = mActivities.get(activityNdx);
2264 if (r.visible) {
2265 r.showStartingWindow(null /* prev */, false /* newTask */, taskSwitch);
2266 }
2267 }
2268 }
2269
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002270 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002271 pw.print(prefix); pw.print("userId="); pw.print(userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07002272 pw.print(" effectiveUid="); UserHandle.formatUid(pw, effectiveUid);
2273 pw.print(" mCallingUid="); UserHandle.formatUid(pw, mCallingUid);
Suprabh Shukla7745c142016-03-07 18:21:10 -08002274 pw.print(" mUserSetupComplete="); pw.print(mUserSetupComplete);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002275 pw.print(" mCallingPackage="); pw.println(mCallingPackage);
Dianne Hackborn79228822014-09-16 11:11:23 -07002276 if (affinity != null || rootAffinity != null) {
2277 pw.print(prefix); pw.print("affinity="); pw.print(affinity);
2278 if (affinity == null || !affinity.equals(rootAffinity)) {
2279 pw.print(" root="); pw.println(rootAffinity);
2280 } else {
2281 pw.println();
2282 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002283 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07002284 if (voiceSession != null || voiceInteractor != null) {
2285 pw.print(prefix); pw.print("VOICE: session=0x");
2286 pw.print(Integer.toHexString(System.identityHashCode(voiceSession)));
2287 pw.print(" interactor=0x");
2288 pw.println(Integer.toHexString(System.identityHashCode(voiceInteractor)));
2289 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002290 if (intent != null) {
2291 StringBuilder sb = new StringBuilder(128);
2292 sb.append(prefix); sb.append("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08002293 intent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002294 sb.append('}');
2295 pw.println(sb.toString());
2296 }
2297 if (affinityIntent != null) {
2298 StringBuilder sb = new StringBuilder(128);
2299 sb.append(prefix); sb.append("affinityIntent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08002300 affinityIntent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002301 sb.append('}');
2302 pw.println(sb.toString());
2303 }
2304 if (origActivity != null) {
2305 pw.print(prefix); pw.print("origActivity=");
2306 pw.println(origActivity.flattenToShortString());
2307 }
2308 if (realActivity != null) {
2309 pw.print(prefix); pw.print("realActivity=");
2310 pw.println(realActivity.flattenToShortString());
2311 }
Dianne Hackborn852975d2014-08-22 17:42:43 -07002312 if (autoRemoveRecents || isPersistable || taskType != 0 || mTaskToReturnTo != 0
2313 || numFullscreen != 0) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002314 pw.print(prefix); pw.print("autoRemoveRecents="); pw.print(autoRemoveRecents);
Dianne Hackborn852975d2014-08-22 17:42:43 -07002315 pw.print(" isPersistable="); pw.print(isPersistable);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002316 pw.print(" numFullscreen="); pw.print(numFullscreen);
2317 pw.print(" taskType="); pw.print(taskType);
2318 pw.print(" mTaskToReturnTo="); pw.println(mTaskToReturnTo);
2319 }
Craig Mautner432f64e2015-05-20 14:59:57 -07002320 if (rootWasReset || mNeverRelinquishIdentity || mReuseTask
2321 || mLockTaskAuth != LOCK_TASK_AUTH_PINNABLE) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002322 pw.print(prefix); pw.print("rootWasReset="); pw.print(rootWasReset);
2323 pw.print(" mNeverRelinquishIdentity="); pw.print(mNeverRelinquishIdentity);
Craig Mautner432f64e2015-05-20 14:59:57 -07002324 pw.print(" mReuseTask="); pw.print(mReuseTask);
2325 pw.print(" mLockTaskAuth="); pw.println(lockTaskAuthToString());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07002326 }
Wale Ogunwale18795a22014-12-03 11:38:33 -08002327 if (mAffiliatedTaskId != taskId || mPrevAffiliateTaskId != INVALID_TASK_ID
2328 || mPrevAffiliate != null || mNextAffiliateTaskId != INVALID_TASK_ID
2329 || mNextAffiliate != null) {
Dianne Hackborn852975d2014-08-22 17:42:43 -07002330 pw.print(prefix); pw.print("affiliation="); pw.print(mAffiliatedTaskId);
2331 pw.print(" prevAffiliation="); pw.print(mPrevAffiliateTaskId);
2332 pw.print(" (");
2333 if (mPrevAffiliate == null) {
2334 pw.print("null");
2335 } else {
2336 pw.print(Integer.toHexString(System.identityHashCode(mPrevAffiliate)));
2337 }
2338 pw.print(") nextAffiliation="); pw.print(mNextAffiliateTaskId);
2339 pw.print(" (");
2340 if (mNextAffiliate == null) {
2341 pw.print("null");
2342 } else {
2343 pw.print(Integer.toHexString(System.identityHashCode(mNextAffiliate)));
2344 }
2345 pw.println(")");
2346 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002347 pw.print(prefix); pw.print("Activities="); pw.println(mActivities);
Dianne Hackborn852975d2014-08-22 17:42:43 -07002348 if (!askedCompatMode || !inRecents || !isAvailable) {
2349 pw.print(prefix); pw.print("askedCompatMode="); pw.print(askedCompatMode);
2350 pw.print(" inRecents="); pw.print(inRecents);
2351 pw.print(" isAvailable="); pw.println(isAvailable);
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07002352 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07002353 pw.print(prefix); pw.print("lastThumbnail="); pw.print(mLastThumbnail);
Dianne Hackborn852975d2014-08-22 17:42:43 -07002354 pw.print(" lastThumbnailFile="); pw.println(mLastThumbnailFile);
2355 if (lastDescription != null) {
2356 pw.print(prefix); pw.print("lastDescription="); pw.println(lastDescription);
2357 }
Andrii Kulian02b7a832016-10-06 23:11:56 -07002358 pw.print(prefix); pw.print("stackId="); pw.println(getStackId());
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002359 pw.print(prefix + "hasBeenVisible=" + hasBeenVisible);
2360 pw.print(" mResizeMode=" + ActivityInfo.resizeModeToString(mResizeMode));
Winson Chungd3395382016-12-13 11:49:09 -08002361 pw.print(" mSupportsPictureInPicture=" + mSupportsPictureInPicture);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002362 pw.print(" isResizeable=" + isResizeable());
daqi961e50e2017-05-30 15:37:23 +08002363 pw.print(" firstActiveTime=" + firstActiveTime);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08002364 pw.print(" lastActiveTime=" + lastActiveTime);
2365 pw.println(" (inactive for " + (getInactiveDuration() / 1000) + "s)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002366 }
2367
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002368 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002369 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002370 StringBuilder sb = new StringBuilder(128);
Craig Mautnerde4ef022013-04-07 19:01:33 -07002371 if (stringName != null) {
2372 sb.append(stringName);
2373 sb.append(" U=");
2374 sb.append(userId);
Wale Ogunwale6c5eb1c2015-11-10 07:52:22 -08002375 sb.append(" StackId=");
Andrii Kulian02b7a832016-10-06 23:11:56 -07002376 sb.append(getStackId());
Craig Mautnerde4ef022013-04-07 19:01:33 -07002377 sb.append(" sz=");
2378 sb.append(mActivities.size());
2379 sb.append('}');
2380 return sb.toString();
2381 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002382 sb.append("TaskRecord{");
2383 sb.append(Integer.toHexString(System.identityHashCode(this)));
2384 sb.append(" #");
2385 sb.append(taskId);
2386 if (affinity != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002387 sb.append(" A=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002388 sb.append(affinity);
2389 } else if (intent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002390 sb.append(" I=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002391 sb.append(intent.getComponent().flattenToShortString());
2392 } else if (affinityIntent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08002393 sb.append(" aI=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07002394 sb.append(affinityIntent.getComponent().flattenToShortString());
2395 } else {
2396 sb.append(" ??");
2397 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07002398 stringName = sb.toString();
2399 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08002400 }
2401}