blob: 4691e1aac390e8ce44fc217d214fdb42fa9efda1 [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
Jorim Jaggi0a932142016-02-01 17:42:25 -080019import android.annotation.Nullable;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -070020import android.app.Activity;
Craig Mautner9db9a0b2013-04-29 17:05:56 -070021import android.app.ActivityManager;
Wale Ogunwale3797c222015-10-27 14:21:58 -070022import android.app.ActivityManager.StackId;
Craig Mautner648f69b2014-09-18 14:16:26 -070023import android.app.ActivityManager.TaskDescription;
Wale Ogunwaleff3c66c2015-11-18 19:22:49 -080024import android.app.ActivityManager.TaskThumbnail;
Winsonc809cbb2015-11-02 12:06:15 -080025import android.app.ActivityManager.TaskThumbnailInfo;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -070026import android.app.ActivityOptions;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070027import android.app.AppGlobals;
Jorim Jaggi0a932142016-02-01 17:42:25 -080028import android.app.IActivityManager;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.content.ComponentName;
30import android.content.Intent;
31import android.content.pm.ActivityInfo;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070032import android.content.pm.ApplicationInfo;
33import android.content.pm.IPackageManager;
34import android.content.pm.PackageManager;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070035import android.content.res.Configuration;
Craig Mautner9db9a0b2013-04-29 17:05:56 -070036import android.graphics.Bitmap;
Winsonc809cbb2015-11-02 12:06:15 -080037import android.graphics.Point;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -070038import android.graphics.Rect;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070039import android.os.Debug;
Craig Mautnerc0ffce52014-07-01 12:38:52 -070040import android.os.ParcelFileDescriptor;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070041import android.os.RemoteException;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070042import android.os.UserHandle;
Suprabh Shukla7745c142016-03-07 18:21:10 -080043import android.provider.Settings;
Dianne Hackborn91097de2014-04-04 18:02:06 -070044import android.service.voice.IVoiceInteractionSession;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070045import android.util.DisplayMetrics;
Dianne Hackborn7f96b792012-05-29 18:46:45 -070046import android.util.Slog;
Suprabh Shukla23593142015-11-03 17:31:15 -080047
Dianne Hackborn91097de2014-04-04 18:02:06 -070048import com.android.internal.app.IVoiceInteractor;
Craig Mautner21d24a22014-04-23 11:45:37 -070049import com.android.internal.util.XmlUtils;
Suprabh Shukla23593142015-11-03 17:31:15 -080050
Craig Mautner21d24a22014-04-23 11:45:37 -070051import org.xmlpull.v1.XmlPullParser;
52import org.xmlpull.v1.XmlPullParserException;
53import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080054
Craig Mautnerc0ffce52014-07-01 12:38:52 -070055import java.io.File;
Craig Mautner21d24a22014-04-23 11:45:37 -070056import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057import java.io.PrintWriter;
Craig Mautner5d9c7be2013-02-15 14:02:56 -080058import java.util.ArrayList;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -070059import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060
Jorim Jaggi0a932142016-02-01 17:42:25 -080061import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
62import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
63import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
64import static android.app.ActivityManager.StackId.HOME_STACK_ID;
65import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
66import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
67import static android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT;
68import static android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS;
69import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_ALWAYS;
70import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_DEFAULT;
71import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED;
72import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_NEVER;
73import static android.content.pm.ActivityInfo.RESIZE_MODE_CROP_WINDOWS;
Wale Ogunwaled829d362016-02-10 19:24:49 -080074import static android.content.pm.ActivityInfo.RESIZE_MODE_FORCE_RESIZEABLE;
Jorim Jaggi0a932142016-02-01 17:42:25 -080075import static android.content.pm.ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
Andrii Kulianf12fce12016-05-27 17:30:16 -070076import static android.content.res.Configuration.SCREENLAYOUT_LONG_MASK;
77import static android.content.res.Configuration.SCREENLAYOUT_SIZE_MASK;
Suprabh Shukla7745c142016-03-07 18:21:10 -080078import static android.provider.Settings.Secure.USER_SETUP_COMPLETE;
Jorim Jaggi0a932142016-02-01 17:42:25 -080079import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ADD_REMOVE;
80import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_LOCKTASK;
81import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RECENTS;
82import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
83import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_ADD_REMOVE;
84import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_LOCKTASK;
85import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RECENTS;
86import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
87import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
88import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
89import static com.android.server.am.ActivityManagerService.LOCK_SCREEN_SHOWN;
90import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
91import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
92import static com.android.server.am.ActivityRecord.RECENTS_ACTIVITY_TYPE;
Wale Ogunwale3b232392016-05-13 15:37:13 -070093import static com.android.server.am.ActivityRecord.STARTING_WINDOW_SHOWN;
Jorim Jaggi0a932142016-02-01 17:42:25 -080094
Craig Mautnerc0ffce52014-07-01 12:38:52 -070095final class TaskRecord {
Wale Ogunwalee23149f2015-03-06 15:39:44 -080096 private static final String TAG = TAG_WITH_CLASS_NAME ? "TaskRecord" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070097 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070098 private static final String TAG_RECENTS = TAG + POSTFIX_RECENTS;
Craig Mautnere0570202015-05-13 13:06:11 -070099 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700100 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800101
Wale Ogunwale18795a22014-12-03 11:38:33 -0800102 static final String ATTR_TASKID = "task_id";
Craig Mautner21d24a22014-04-23 11:45:37 -0700103 private static final String TAG_INTENT = "intent";
104 private static final String TAG_AFFINITYINTENT = "affinity_intent";
Wale Ogunwale18795a22014-12-03 11:38:33 -0800105 static final String ATTR_REALACTIVITY = "real_activity";
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +0000106 static final String ATTR_REALACTIVITY_SUSPENDED = "real_activity_suspended";
Craig Mautner21d24a22014-04-23 11:45:37 -0700107 private static final String ATTR_ORIGACTIVITY = "orig_activity";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700108 private static final String TAG_ACTIVITY = "activity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700109 private static final String ATTR_AFFINITY = "affinity";
Dianne Hackborn79228822014-09-16 11:11:23 -0700110 private static final String ATTR_ROOT_AFFINITY = "root_affinity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700111 private static final String ATTR_ROOTHASRESET = "root_has_reset";
Dianne Hackborn13420f22014-07-18 15:43:56 -0700112 private static final String ATTR_AUTOREMOVERECENTS = "auto_remove_recents";
Craig Mautner21d24a22014-04-23 11:45:37 -0700113 private static final String ATTR_ASKEDCOMPATMODE = "asked_compat_mode";
114 private static final String ATTR_USERID = "user_id";
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800115 private static final String ATTR_USER_SETUP_COMPLETE = "user_setup_complete";
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700116 private static final String ATTR_EFFECTIVE_UID = "effective_uid";
Craig Mautner21d24a22014-04-23 11:45:37 -0700117 private static final String ATTR_TASKTYPE = "task_type";
Winson Chungffa2ec62014-07-03 15:54:42 -0700118 private static final String ATTR_FIRSTACTIVETIME = "first_active_time";
Winson Chungf1fbd772014-06-24 18:06:58 -0700119 private static final String ATTR_LASTACTIVETIME = "last_active_time";
Craig Mautner21d24a22014-04-23 11:45:37 -0700120 private static final String ATTR_LASTDESCRIPTION = "last_description";
121 private static final String ATTR_LASTTIMEMOVED = "last_time_moved";
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700122 private static final String ATTR_NEVERRELINQUISH = "never_relinquish_identity";
Wale Ogunwale18795a22014-12-03 11:38:33 -0800123 static final String ATTR_TASK_AFFILIATION = "task_affiliation";
Craig Mautnera228ae92014-07-09 05:44:55 -0700124 private static final String ATTR_PREV_AFFILIATION = "prev_affiliation";
125 private static final String ATTR_NEXT_AFFILIATION = "next_affiliation";
Winson Chungec396d62014-08-06 17:08:00 -0700126 private static final String ATTR_TASK_AFFILIATION_COLOR = "task_affiliation_color";
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700127 private static final String ATTR_CALLING_UID = "calling_uid";
128 private static final String ATTR_CALLING_PACKAGE = "calling_package";
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800129 private static final String ATTR_RESIZE_MODE = "resize_mode";
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700130 private static final String ATTR_PRIVILEGED = "privileged";
Wale Ogunwale706ed792015-08-02 10:29:44 -0700131 private static final String ATTR_NON_FULLSCREEN_BOUNDS = "non_fullscreen_bounds";
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700132 private static final String ATTR_MIN_WIDTH = "min_width";
133 private static final String ATTR_MIN_HEIGHT = "min_height";
Andrii Kulian18d75122016-03-27 20:20:28 -0700134
Craig Mautner21d24a22014-04-23 11:45:37 -0700135
136 private static final String TASK_THUMBNAIL_SUFFIX = "_task_thumbnail";
137
Wale Ogunwale18795a22014-12-03 11:38:33 -0800138 static final int INVALID_TASK_ID = -1;
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700139 static final int INVALID_MIN_SIZE = -1;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800140
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 final int taskId; // Unique identifier for this task.
Dianne Hackborn79228822014-09-16 11:11:23 -0700142 String affinity; // The affinity name for this task, or null; may change identity.
143 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
Dianne Hackborn91097de2014-04-04 18:02:06 -0700144 final IVoiceInteractionSession voiceSession; // Voice interaction session driving task
145 final IVoiceInteractor voiceInteractor; // Associated interactor to provide to app
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800146 Intent intent; // The original intent that started the task.
147 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700148 int effectiveUid; // The current effective uid of the identity of this task.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 ComponentName origActivity; // The non-alias activity component of the intent.
150 ComponentName realActivity; // The actual activity component that started the task.
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +0000151 boolean realActivitySuspended; // True if the actual activity component that started the
152 // task is suspended.
Winson Chung36f3f032016-09-08 23:29:43 +0000153 long firstActiveTime; // First time this task was active.
154 long lastActiveTime; // Last time this task was active, including sleep.
Dianne Hackborn852975d2014-08-22 17:42:43 -0700155 boolean inRecents; // Actually in the recents list?
156 boolean isAvailable; // Is the activity available to be launched?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157 boolean rootWasReset; // True if the intent at the root of the task had
158 // the FLAG_ACTIVITY_RESET_TASK_IF_NEEDED flag.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700159 boolean autoRemoveRecents; // If true, we should automatically remove the task from
160 // recents when activity finishes
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700161 boolean askedCompatMode;// Have asked the user about compat mode for this task.
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700162 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 -0800163
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700164 String stringName; // caching of toString() result.
Dianne Hackborn9da2d402012-03-15 13:43:08 -0700165 int userId; // user for which this task was created
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800166 boolean mUserSetupComplete; // The user set-up is complete as of the last time the task activity
167 // was changed.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800168
169 int numFullscreen; // Number of fullscreen activities.
170
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800171 int mResizeMode; // The resize mode of this task and its activities.
172 // Based on the {@link ActivityInfo#resizeMode} of the root activity.
Jorim Jaggi8202b2a2016-02-03 19:24:31 -0800173 boolean mTemporarilyUnresizable; // Separate flag from mResizeMode used to suppress resize
174 // changes on a temporary basis.
Craig Mautner15df08a2015-04-01 12:17:18 -0700175 int mLockTaskMode; // Which tasklock mode to launch this task in. One of
176 // ActivityManager.LOCK_TASK_LAUNCH_MODE_*
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700177 private boolean mPrivileged; // The root activity application of this task holds
178 // privileged permissions.
179
Craig Mautner15df08a2015-04-01 12:17:18 -0700180 /** Can't be put in lockTask mode. */
181 final static int LOCK_TASK_AUTH_DONT_LOCK = 0;
Benjamin Franz469dd582015-06-09 14:24:36 +0100182 /** Can enter app pinning with user approval. Can never start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700183 final static int LOCK_TASK_AUTH_PINNABLE = 1;
184 /** Starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing lockTask task. */
185 final static int LOCK_TASK_AUTH_LAUNCHABLE = 2;
Benjamin Franz469dd582015-06-09 14:24:36 +0100186 /** Can enter lockTask without user approval. Can start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700187 final static int LOCK_TASK_AUTH_WHITELISTED = 3;
Benjamin Franz469dd582015-06-09 14:24:36 +0100188 /** Priv-app that starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing
189 * lockTask task. */
190 final static int LOCK_TASK_AUTH_LAUNCHABLE_PRIV = 4;
Craig Mautner15df08a2015-04-01 12:17:18 -0700191 int mLockTaskAuth = LOCK_TASK_AUTH_PINNABLE;
192
193 int mLockTaskUid = -1; // The uid of the application that called startLockTask().
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800194
Winson Chung03a9bae2014-05-02 09:56:12 -0700195 // This represents the last resolved activity values for this task
196 // NOTE: This value needs to be persisted with each task
Craig Mautner648f69b2014-09-18 14:16:26 -0700197 TaskDescription lastTaskDescription = new TaskDescription();
Winson Chung03a9bae2014-05-02 09:56:12 -0700198
Craig Mautnerd2328952013-03-05 12:46:26 -0800199 /** List of all activities in the task arranged in history order */
Craig Mautner21d24a22014-04-23 11:45:37 -0700200 final ArrayList<ActivityRecord> mActivities;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800201
Craig Mautnerd2328952013-03-05 12:46:26 -0800202 /** Current stack */
203 ActivityStack stack;
204
Craig Mautner2c1faed2013-07-23 12:56:02 -0700205 /** Takes on same set of values as ActivityRecord.mActivityType */
Craig Mautner21d24a22014-04-23 11:45:37 -0700206 int taskType;
Craig Mautner1602ec22013-05-12 10:24:27 -0700207
Craig Mautner21d24a22014-04-23 11:45:37 -0700208 /** Takes on same value as first root activity */
209 boolean isPersistable = false;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700210 int maxRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700211
212 /** Only used for persistable tasks, otherwise 0. The last time this task was moved. Used for
213 * determining the order when restoring. Sign indicates whether last task movement was to front
214 * (positive) or back (negative). Absolute value indicates time. */
215 long mLastTimeMoved = System.currentTimeMillis();
216
Craig Mautner84984fa2014-06-19 11:19:20 -0700217 /** Indication of what to run next when task exits. Use ActivityRecord types.
218 * ActivityRecord.APPLICATION_ACTIVITY_TYPE indicates to resume the task below this one in the
219 * task stack. */
220 private int mTaskToReturnTo = APPLICATION_ACTIVITY_TYPE;
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700221
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700222 /** If original intent did not allow relinquishing task identity, save that information */
223 boolean mNeverRelinquishIdentity = true;
224
Craig Mautner362449a2014-06-20 14:04:39 -0700225 // Used in the unique case where we are clearing the task in order to reuse it. In that case we
226 // do not want to delete the stack when the task goes empty.
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800227 private boolean mReuseTask = false;
Craig Mautner362449a2014-06-20 14:04:39 -0700228
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700229 private Bitmap mLastThumbnail; // Last thumbnail captured for this item.
Wale Ogunwalebe23ff42014-10-21 16:29:51 -0700230 private final File mLastThumbnailFile; // File containing last thumbnail.
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700231 private final String mFilename;
Winsonc809cbb2015-11-02 12:06:15 -0800232 private TaskThumbnailInfo mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700233 CharSequence lastDescription; // Last description captured for this item.
234
Craig Mautnera228ae92014-07-09 05:44:55 -0700235 int mAffiliatedTaskId; // taskId of parent affiliation or self if no parent.
Winson Chungec396d62014-08-06 17:08:00 -0700236 int mAffiliatedTaskColor; // color of the parent task affiliation.
Craig Mautnera228ae92014-07-09 05:44:55 -0700237 TaskRecord mPrevAffiliate; // previous task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800238 int mPrevAffiliateTaskId = INVALID_TASK_ID; // previous id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700239 TaskRecord mNextAffiliate; // next task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800240 int mNextAffiliateTaskId = INVALID_TASK_ID; // next id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700241
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700242 // For relaunching the task from recents as though it was launched by the original launcher.
243 int mCallingUid;
244 String mCallingPackage;
245
Craig Mautner21d24a22014-04-23 11:45:37 -0700246 final ActivityManagerService mService;
247
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700248 // Whether or not this task covers the entire screen; by default tasks are fullscreen.
249 boolean mFullscreen = true;
250
251 // Bounds of the Task. null for fullscreen tasks.
252 Rect mBounds = null;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -0800253 private final Rect mTmpStableBounds = new Rect();
254 private final Rect mTmpNonDecorBounds = new Rect();
Wale Ogunwale9a08f822016-02-17 19:03:58 -0800255 private final Rect mTmpRect = new Rect();
Jorim Jaggi0a932142016-02-01 17:42:25 -0800256 private final Rect mTmpRect2 = new Rect();
257
Wale Ogunwale706ed792015-08-02 10:29:44 -0700258 // Last non-fullscreen bounds the task was launched in or resized to.
259 // The information is persisted and used to determine the appropriate stack to launch the
260 // task into on restore.
261 Rect mLastNonFullscreenBounds = null;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700262 // Minimal width and height of this task when it's resizeable. -1 means it should use the
263 // default minimal width/height.
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700264 int mMinWidth;
265 int mMinHeight;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700266
Chong Zhangfdcc4d42015-10-14 16:50:12 -0700267 // Ranking (from top) of this task among all visible tasks. (-1 means it's not visible)
268 // This number will be assigned when we evaluate OOM scores for all visible tasks.
269 int mLayerRank = -1;
270
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700271 Configuration mOverrideConfig = Configuration.EMPTY;
272
Craig Mautner21d24a22014-04-23 11:45:37 -0700273 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Dianne Hackborn91097de2014-04-04 18:02:06 -0700274 IVoiceInteractionSession _voiceSession, IVoiceInteractor _voiceInteractor) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700275 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700276 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
277 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800278 userId = UserHandle.getUserId(info.applicationInfo.uid);
279 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800280 mLastThumbnailInfo = new TaskThumbnailInfo();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 taskId = _taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700282 mAffiliatedTaskId = _taskId;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700283 voiceSession = _voiceSession;
284 voiceInteractor = _voiceInteractor;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700285 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800286 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700287 mCallingUid = info.applicationInfo.uid;
288 mCallingPackage = info.packageName;
Martijn Coenend4a69702014-06-30 11:12:17 -0700289 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700290 setMinDimensions(info);
Winson730bf062016-03-31 18:04:56 -0700291 touchActiveTime();
Craig Mautner21d24a22014-04-23 11:45:37 -0700292 }
293
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700294 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Winsonc809cbb2015-11-02 12:06:15 -0800295 TaskDescription _taskDescription, TaskThumbnailInfo thumbnailInfo) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700296 mService = service;
297 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
298 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800299 userId = UserHandle.getUserId(info.applicationInfo.uid);
300 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800301 mLastThumbnailInfo = thumbnailInfo;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700302 taskId = _taskId;
303 mAffiliatedTaskId = _taskId;
304 voiceSession = null;
305 voiceInteractor = null;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700306 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800307 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700308 mCallingUid = info.applicationInfo.uid;
309 mCallingPackage = info.packageName;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700310 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700311 setMinDimensions(info);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700312
313 taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
314 isPersistable = true;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700315 // Clamp to [1, max].
316 maxRecents = Math.min(Math.max(info.maxRecents, 1),
317 ActivityManager.getMaxAppRecentsLimitStatic());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700318
319 taskType = APPLICATION_ACTIVITY_TYPE;
320 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700321 lastTaskDescription = _taskDescription;
Winson730bf062016-03-31 18:04:56 -0700322 touchActiveTime();
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700323 }
324
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800325 private TaskRecord(ActivityManagerService service, int _taskId, Intent _intent,
326 Intent _affinityIntent, String _affinity, String _rootAffinity,
327 ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset,
328 boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId,
329 int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities,
330 long _firstActiveTime, long _lastActiveTime, long lastTimeMoved,
331 boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription,
Winsonc809cbb2015-11-02 12:06:15 -0800332 TaskThumbnailInfo lastThumbnailInfo, int taskAffiliation, int prevTaskId,
333 int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage,
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800334 int resizeMode, boolean privileged, boolean _realActivitySuspended,
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700335 boolean userSetupComplete, int minWidth, int minHeight) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700336 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700337 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
338 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800339 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(_userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800340 mLastThumbnailInfo = lastThumbnailInfo;
Craig Mautner21d24a22014-04-23 11:45:37 -0700341 taskId = _taskId;
342 intent = _intent;
343 affinityIntent = _affinityIntent;
344 affinity = _affinity;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800345 rootAffinity = _rootAffinity;
Craig Mautner21d24a22014-04-23 11:45:37 -0700346 voiceSession = null;
347 voiceInteractor = null;
348 realActivity = _realActivity;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800349 realActivitySuspended = _realActivitySuspended;
Craig Mautner21d24a22014-04-23 11:45:37 -0700350 origActivity = _origActivity;
351 rootWasReset = _rootWasReset;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700352 isAvailable = true;
Dianne Hackborn13420f22014-07-18 15:43:56 -0700353 autoRemoveRecents = _autoRemoveRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700354 askedCompatMode = _askedCompatMode;
355 taskType = _taskType;
Craig Mautner84984fa2014-06-19 11:19:20 -0700356 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -0700357 userId = _userId;
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800358 mUserSetupComplete = userSetupComplete;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700359 effectiveUid = _effectiveUid;
Winson Chungffa2ec62014-07-03 15:54:42 -0700360 firstActiveTime = _firstActiveTime;
Winson Chungf1fbd772014-06-24 18:06:58 -0700361 lastActiveTime = _lastActiveTime;
Craig Mautner21d24a22014-04-23 11:45:37 -0700362 lastDescription = _lastDescription;
363 mActivities = activities;
364 mLastTimeMoved = lastTimeMoved;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700365 mNeverRelinquishIdentity = neverRelinquishIdentity;
Winson Chung2cb86c72014-06-25 12:03:30 -0700366 lastTaskDescription = _lastTaskDescription;
Craig Mautnera228ae92014-07-09 05:44:55 -0700367 mAffiliatedTaskId = taskAffiliation;
Winson Chungec396d62014-08-06 17:08:00 -0700368 mAffiliatedTaskColor = taskAffiliationColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700369 mPrevAffiliateTaskId = prevTaskId;
370 mNextAffiliateTaskId = nextTaskId;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700371 mCallingUid = callingUid;
372 mCallingPackage = callingPackage;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800373 mResizeMode = resizeMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700374 mPrivileged = privileged;
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700375 mMinWidth = minWidth;
376 mMinHeight = minHeight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800377 }
378
379 void touchActiveTime() {
Winson Chung36f3f032016-09-08 23:29:43 +0000380 lastActiveTime = System.currentTimeMillis();
Winson Chungffa2ec62014-07-03 15:54:42 -0700381 if (firstActiveTime == 0) {
382 firstActiveTime = lastActiveTime;
383 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700385
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800386 long getInactiveDuration() {
Winson Chung36f3f032016-09-08 23:29:43 +0000387 return System.currentTimeMillis() - lastActiveTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700389
Winson Chungfee26772014-08-05 12:21:52 -0700390 /** Sets the original intent, and the calling uid and package. */
391 void setIntent(ActivityRecord r) {
Winson Chungfee26772014-08-05 12:21:52 -0700392 mCallingUid = r.launchedFromUid;
393 mCallingPackage = r.launchedFromPackage;
Craig Mautner15df08a2015-04-01 12:17:18 -0700394 setIntent(r.intent, r.info);
Winson Chungfee26772014-08-05 12:21:52 -0700395 }
396
397 /** Sets the original intent, _without_ updating the calling uid or package. */
398 private void setIntent(Intent _intent, ActivityInfo info) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700399 if (intent == null) {
400 mNeverRelinquishIdentity =
401 (info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0;
402 } else if (mNeverRelinquishIdentity) {
403 return;
404 }
405
406 affinity = info.taskAffinity;
Dianne Hackborn79228822014-09-16 11:11:23 -0700407 if (intent == null) {
408 // If this task already has an intent associated with it, don't set the root
409 // affinity -- we don't want it changing after initially set, but the initially
410 // set value may be null.
411 rootAffinity = affinity;
412 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700413 effectiveUid = info.applicationInfo.uid;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700414 stringName = null;
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800415
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800416 if (info.targetActivity == null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800417 if (_intent != null) {
418 // If this Intent has a selector, we want to clear it for the
419 // recent task since it is not relevant if the user later wants
420 // to re-launch the app.
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700421 if (_intent.getSelector() != null || _intent.getSourceBounds() != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800422 _intent = new Intent(_intent);
423 _intent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700424 _intent.setSourceBounds(null);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800425 }
426 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700427 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Setting Intent of " + this + " to " + _intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800428 intent = _intent;
429 realActivity = _intent != null ? _intent.getComponent() : null;
430 origActivity = null;
431 } else {
432 ComponentName targetComponent = new ComponentName(
433 info.packageName, info.targetActivity);
434 if (_intent != null) {
435 Intent targetIntent = new Intent(_intent);
436 targetIntent.setComponent(targetComponent);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800437 targetIntent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700438 targetIntent.setSourceBounds(null);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700439 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Dianne Hackborn7f96b792012-05-29 18:46:45 -0700440 "Setting Intent of " + this + " to target " + targetIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800441 intent = targetIntent;
442 realActivity = targetComponent;
443 origActivity = _intent.getComponent();
444 } else {
445 intent = null;
446 realActivity = targetComponent;
447 origActivity = new ComponentName(info.packageName, info.name);
448 }
449 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700450
Craig Mautner47b20ba2014-09-17 17:23:44 -0700451 final int intentFlags = intent == null ? 0 : intent.getFlags();
452 if ((intentFlags & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800453 // Once we are set to an Intent with this flag, we count this
454 // task as having a true root activity.
455 rootWasReset = true;
456 }
Dianne Hackborn09233282014-04-30 11:33:59 -0700457 userId = UserHandle.getUserId(info.applicationInfo.uid);
Winson Chung36f3f032016-09-08 23:29:43 +0000458 mUserSetupComplete = Settings.Secure.getIntForUser(mService.mContext.getContentResolver(),
459 USER_SETUP_COMPLETE, 0, userId) != 0;
Craig Mautner41db4a72014-05-07 17:20:56 -0700460 if ((info.flags & ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS) != 0) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700461 // If the activity itself has requested auto-remove, then just always do it.
462 autoRemoveRecents = true;
Wale Ogunwale843bfb92015-03-27 11:06:48 -0700463 } else if ((intentFlags & (FLAG_ACTIVITY_NEW_DOCUMENT | FLAG_ACTIVITY_RETAIN_IN_RECENTS))
464 == FLAG_ACTIVITY_NEW_DOCUMENT) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700465 // If the caller has not asked for the document to be retained, then we may
466 // want to turn on auto-remove, depending on whether the target has set its
467 // own document launch mode.
468 if (info.documentLaunchMode != ActivityInfo.DOCUMENT_LAUNCH_NONE) {
469 autoRemoveRecents = false;
470 } else {
471 autoRemoveRecents = true;
472 }
473 } else {
474 autoRemoveRecents = false;
Craig Mautner41db4a72014-05-07 17:20:56 -0700475 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800476 mResizeMode = info.resizeMode;
Craig Mautner15df08a2015-04-01 12:17:18 -0700477 mLockTaskMode = info.lockTaskLaunchMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700478 mPrivileged = (info.applicationInfo.privateFlags & PRIVATE_FLAG_PRIVILEGED) != 0;
Craig Mautner15df08a2015-04-01 12:17:18 -0700479 setLockTaskAuth();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800480 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800481
Andrii Kulian2e751b82016-03-16 16:59:32 -0700482 /** Sets the original minimal width and height. */
483 private void setMinDimensions(ActivityInfo info) {
484 if (info != null && info.windowLayout != null) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700485 mMinWidth = info.windowLayout.minWidth;
486 mMinHeight = info.windowLayout.minHeight;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700487 } else {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700488 mMinWidth = INVALID_MIN_SIZE;
489 mMinHeight = INVALID_MIN_SIZE;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700490 }
491 }
492
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800493 /**
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700494 * Return true if the input activity has the same intent filter as the intent this task
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800495 * record is based on (normally the root activity intent).
496 */
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700497 boolean isSameIntentFilter(ActivityRecord r) {
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800498 final Intent intent = new Intent(r.intent);
499 // Correct the activity intent for aliasing. The task record intent will always be based on
500 // the real activity that will be launched not the alias, so we need to use an intent with
501 // the component name pointing to the real activity not the alias in the activity record.
502 intent.setComponent(r.realActivity);
503 return this.intent.filterEquals(intent);
504 }
505
Craig Mautner84984fa2014-06-19 11:19:20 -0700506 void setTaskToReturnTo(int taskToReturnTo) {
Wale Ogunwale673cbd22016-01-30 18:30:55 -0800507 mTaskToReturnTo = (taskToReturnTo == RECENTS_ACTIVITY_TYPE)
508 ? HOME_ACTIVITY_TYPE : taskToReturnTo;
Craig Mautner84984fa2014-06-19 11:19:20 -0700509 }
510
511 int getTaskToReturnTo() {
512 return mTaskToReturnTo;
513 }
514
Craig Mautnera228ae92014-07-09 05:44:55 -0700515 void setPrevAffiliate(TaskRecord prevAffiliate) {
516 mPrevAffiliate = prevAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800517 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700518 }
519
520 void setNextAffiliate(TaskRecord nextAffiliate) {
521 mNextAffiliate = nextAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800522 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700523 }
524
525 // Close up recents linked list.
526 void closeRecentsChain() {
527 if (mPrevAffiliate != null) {
528 mPrevAffiliate.setNextAffiliate(mNextAffiliate);
529 }
530 if (mNextAffiliate != null) {
531 mNextAffiliate.setPrevAffiliate(mPrevAffiliate);
532 }
533 setPrevAffiliate(null);
534 setNextAffiliate(null);
535 }
536
Winson Chung740c3ac2014-11-12 16:14:38 -0800537 void removedFromRecents() {
Dianne Hackborn852975d2014-08-22 17:42:43 -0700538 disposeThumbnail();
539 closeRecentsChain();
540 if (inRecents) {
541 inRecents = false;
Winson Chung740c3ac2014-11-12 16:14:38 -0800542 mService.notifyTaskPersisterLocked(this, false);
Dianne Hackborn852975d2014-08-22 17:42:43 -0700543 }
544 }
545
Craig Mautnera228ae92014-07-09 05:44:55 -0700546 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
547 closeRecentsChain();
548 mAffiliatedTaskId = taskToAffiliateWith.mAffiliatedTaskId;
Winson Chungec396d62014-08-06 17:08:00 -0700549 mAffiliatedTaskColor = taskToAffiliateWith.mAffiliatedTaskColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700550 // Find the end
551 while (taskToAffiliateWith.mNextAffiliate != null) {
552 final TaskRecord nextRecents = taskToAffiliateWith.mNextAffiliate;
553 if (nextRecents.mAffiliatedTaskId != mAffiliatedTaskId) {
554 Slog.e(TAG, "setTaskToAffiliateWith: nextRecents=" + nextRecents + " affilTaskId="
555 + nextRecents.mAffiliatedTaskId + " should be " + mAffiliatedTaskId);
556 if (nextRecents.mPrevAffiliate == taskToAffiliateWith) {
557 nextRecents.setPrevAffiliate(null);
558 }
559 taskToAffiliateWith.setNextAffiliate(null);
560 break;
561 }
562 taskToAffiliateWith = nextRecents;
563 }
564 taskToAffiliateWith.setNextAffiliate(this);
565 setPrevAffiliate(taskToAffiliateWith);
566 setNextAffiliate(null);
567 }
568
Winson Chung096f36b2014-08-20 15:39:01 -0700569 /**
Winsonc809cbb2015-11-02 12:06:15 -0800570 * Sets the last thumbnail with the current task bounds and the system orientation.
Winson Chung096f36b2014-08-20 15:39:01 -0700571 * @return whether the thumbnail was set
572 */
Winsonc809cbb2015-11-02 12:06:15 -0800573 boolean setLastThumbnailLocked(Bitmap thumbnail) {
574 final Configuration serviceConfig = mService.mConfiguration;
575 int taskWidth = 0;
576 int taskHeight = 0;
577 if (mBounds != null) {
578 // Non-fullscreen tasks
579 taskWidth = mBounds.width();
580 taskHeight = mBounds.height();
581 } else if (stack != null) {
582 // Fullscreen tasks
583 final Point displaySize = new Point();
584 stack.getDisplaySize(displaySize);
585 taskWidth = displaySize.x;
586 taskHeight = displaySize.y;
587 } else {
588 Slog.e(TAG, "setLastThumbnailLocked() called on Task without stack");
589 }
590 return setLastThumbnailLocked(thumbnail, taskWidth, taskHeight, serviceConfig.orientation);
591 }
592
593 /**
594 * Sets the last thumbnail with the current task bounds.
595 * @return whether the thumbnail was set
596 */
597 private boolean setLastThumbnailLocked(Bitmap thumbnail, int taskWidth, int taskHeight,
598 int screenOrientation) {
Winson Chung096f36b2014-08-20 15:39:01 -0700599 if (mLastThumbnail != thumbnail) {
600 mLastThumbnail = thumbnail;
Winsonc809cbb2015-11-02 12:06:15 -0800601 mLastThumbnailInfo.taskWidth = taskWidth;
602 mLastThumbnailInfo.taskHeight = taskHeight;
603 mLastThumbnailInfo.screenOrientation = screenOrientation;
Winson Chung096f36b2014-08-20 15:39:01 -0700604 if (thumbnail == null) {
605 if (mLastThumbnailFile != null) {
606 mLastThumbnailFile.delete();
607 }
608 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800609 mService.mRecentTasks.saveImage(thumbnail, mLastThumbnailFile.getAbsolutePath());
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700610 }
Winson Chung096f36b2014-08-20 15:39:01 -0700611 return true;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700612 }
Winson Chung096f36b2014-08-20 15:39:01 -0700613 return false;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700614 }
615
616 void getLastThumbnail(TaskThumbnail thumbs) {
617 thumbs.mainThumbnail = mLastThumbnail;
Winsonc809cbb2015-11-02 12:06:15 -0800618 thumbs.thumbnailInfo = mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700619 thumbs.thumbnailFileDescriptor = null;
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700620 if (mLastThumbnail == null) {
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800621 thumbs.mainThumbnail = mService.mRecentTasks.getImageFromWriteQueue(
Suprabh Shukla23593142015-11-03 17:31:15 -0800622 mLastThumbnailFile.getAbsolutePath());
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700623 }
Winson Chung096f36b2014-08-20 15:39:01 -0700624 // Only load the thumbnail file if we don't have a thumbnail
625 if (thumbs.mainThumbnail == null && mLastThumbnailFile.exists()) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700626 try {
627 thumbs.thumbnailFileDescriptor = ParcelFileDescriptor.open(mLastThumbnailFile,
628 ParcelFileDescriptor.MODE_READ_ONLY);
629 } catch (IOException e) {
Dianne Hackborn9844d292013-10-04 16:44:22 -0700630 }
631 }
632 }
633
Winsonc809cbb2015-11-02 12:06:15 -0800634 /**
635 * Removes in-memory thumbnail data when the max number of in-memory task thumbnails is reached.
636 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700637 void freeLastThumbnail() {
638 mLastThumbnail = null;
639 }
640
Winsonc809cbb2015-11-02 12:06:15 -0800641 /**
642 * Removes all associated thumbnail data when a task is removed or pruned from recents.
643 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700644 void disposeThumbnail() {
Winsonc6a2da02015-11-11 18:11:59 -0800645 mLastThumbnailInfo.reset();
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700646 mLastThumbnail = null;
647 lastDescription = null;
648 }
649
Winson Chung1147c402014-05-14 11:05:00 -0700650 /** Returns the intent for the root activity for this task */
651 Intent getBaseIntent() {
652 return intent != null ? intent : affinityIntent;
653 }
654
Winson Chung3b3f4642014-04-22 10:08:18 -0700655 /** Returns the first non-finishing activity from the root. */
656 ActivityRecord getRootActivity() {
657 for (int i = 0; i < mActivities.size(); i++) {
658 final ActivityRecord r = mActivities.get(i);
659 if (r.finishing) {
660 continue;
661 }
662 return r;
663 }
664 return null;
665 }
666
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800667 ActivityRecord getTopActivity() {
668 for (int i = mActivities.size() - 1; i >= 0; --i) {
669 final ActivityRecord r = mActivities.get(i);
670 if (r.finishing) {
671 continue;
672 }
673 return r;
674 }
675 return null;
676 }
677
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700678 ActivityRecord topRunningActivityLocked() {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700679 if (stack != null) {
680 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
681 ActivityRecord r = mActivities.get(activityNdx);
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700682 if (!r.finishing && stack.okToShowLocked(r)) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700683 return r;
684 }
Craig Mautner6b74cb52013-09-27 17:02:21 -0700685 }
686 }
687 return null;
688 }
689
Wale Ogunwale3b232392016-05-13 15:37:13 -0700690 ActivityRecord topRunningActivityWithStartingWindowLocked() {
691 if (stack != null) {
692 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
693 ActivityRecord r = mActivities.get(activityNdx);
694 if (r.mStartingWindowState != STARTING_WINDOW_SHOWN
695 || r.finishing || !stack.okToShowLocked(r)) {
696 continue;
697 }
698 return r;
699 }
700 }
701 return null;
702 }
703
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800704 void setFrontOfTask() {
705 setFrontOfTask(null);
706 }
707
Craig Mautner3b475fe2013-12-16 15:58:31 -0800708 /** Call after activity movement or finish to make sure that frontOfTask is set correctly */
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800709 void setFrontOfTask(ActivityRecord newTop) {
710 // If a top candidate is suggested by the caller, go ahead and use it and mark all others
711 // as not front. This is needed in situations where the current front activity in the
712 // task isn't finished yet and we want to set the front to the activity moved to the front
713 // of the task.
714 boolean foundFront = newTop != null ? true : false;
715
Craig Mautner3b475fe2013-12-16 15:58:31 -0800716 final int numActivities = mActivities.size();
Craig Mautner704e40b2013-12-18 16:43:51 -0800717 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
Craig Mautner3b475fe2013-12-16 15:58:31 -0800718 final ActivityRecord r = mActivities.get(activityNdx);
719 if (foundFront || r.finishing) {
720 r.frontOfTask = false;
721 } else {
722 r.frontOfTask = true;
723 // Set frontOfTask false for every following activity.
724 foundFront = true;
725 }
726 }
Craig Mautner9587ee02014-06-23 15:00:10 +0000727 if (!foundFront && numActivities > 0) {
728 // All activities of this task are finishing. As we ought to have a frontOfTask
729 // activity, make the bottom activity front.
730 mActivities.get(0).frontOfTask = true;
731 }
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800732 if (newTop != null) {
733 newTop.frontOfTask = true;
734 }
Craig Mautner3b475fe2013-12-16 15:58:31 -0800735 }
736
Craig Mautnerde4ef022013-04-07 19:01:33 -0700737 /**
Craig Mautner3b475fe2013-12-16 15:58:31 -0800738 * Reorder the history stack so that the passed activity is brought to the front.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700739 */
740 final void moveActivityToFrontLocked(ActivityRecord newTop) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700741 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
742 "Removing and adding activity " + newTop
743 + " to stack at top callers=" + Debug.getCallers(4));
Craig Mautnerde4ef022013-04-07 19:01:33 -0700744
Craig Mautnerde4ef022013-04-07 19:01:33 -0700745 mActivities.remove(newTop);
746 mActivities.add(newTop);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700747 updateEffectiveIntent();
Craig Mautner3b475fe2013-12-16 15:58:31 -0800748
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800749 setFrontOfTask(newTop);
Craig Mautnerde4ef022013-04-07 19:01:33 -0700750 }
751
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800752 void addActivityAtBottom(ActivityRecord r) {
Craig Mautner77878772013-03-04 19:46:24 -0800753 addActivityAtIndex(0, r);
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800754 }
755
756 void addActivityToTop(ActivityRecord r) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700757 addActivityAtIndex(mActivities.size(), r);
758 }
759
760 void addActivityAtIndex(int index, ActivityRecord r) {
Craig Mautner6170f732013-04-02 13:05:23 -0700761 // 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 -0800762 if (!mActivities.remove(r) && r.fullscreen) {
763 // Was not previously in list.
764 numFullscreen++;
765 }
Craig Mautner2c1faed2013-07-23 12:56:02 -0700766 // Only set this based on the first activity
767 if (mActivities.isEmpty()) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700768 taskType = r.mActivityType;
769 isPersistable = r.isPersistable();
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700770 mCallingUid = r.launchedFromUid;
771 mCallingPackage = r.launchedFromPackage;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700772 // Clamp to [1, max].
773 maxRecents = Math.min(Math.max(r.info.maxRecents, 1),
774 ActivityManager.getMaxAppRecentsLimitStatic());
Craig Mautner2c1faed2013-07-23 12:56:02 -0700775 } else {
776 // Otherwise make all added activities match this one.
Craig Mautner21d24a22014-04-23 11:45:37 -0700777 r.mActivityType = taskType;
Craig Mautner78733002013-06-10 13:54:49 -0700778 }
Wale Ogunwale3b232392016-05-13 15:37:13 -0700779
780 final int size = mActivities.size();
781
782 if (index == size && size > 0) {
783 final ActivityRecord top = mActivities.get(size - 1);
784 if (top.mTaskOverlay) {
785 // Place below the task overlay activity since the overlay activity should always
786 // be on top.
787 index--;
788 }
789 }
790
Craig Mautner77878772013-03-04 19:46:24 -0800791 mActivities.add(index, r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700792 updateEffectiveIntent();
Craig Mautner21d24a22014-04-23 11:45:37 -0700793 if (r.isPersistable()) {
794 mService.notifyTaskPersisterLocked(this, false);
795 }
Craig Mautner77878772013-03-04 19:46:24 -0800796 }
797
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800798 /** @return true if this was the last activity in the task */
799 boolean removeActivity(ActivityRecord r) {
800 if (mActivities.remove(r) && r.fullscreen) {
801 // Was previously in list.
802 numFullscreen--;
803 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700804 if (r.isPersistable()) {
805 mService.notifyTaskPersisterLocked(this, false);
806 }
Wale Ogunwale89182d52016-03-11 10:38:36 -0800807
808 if (stack != null && stack.mStackId == PINNED_STACK_ID) {
809 // We normally notify listeners of task stack changes on pause, however pinned stack
810 // activities are normally in the paused state so no notification will be sent there
811 // before the activity is removed. We send it here so instead.
812 mService.notifyTaskStackChangedLocked();
813 }
814
Craig Mautner41326202014-06-20 14:38:21 -0700815 if (mActivities.isEmpty()) {
Craig Mautner5afcd4d2014-06-21 18:11:33 -0700816 return !mReuseTask;
Craig Mautner41326202014-06-20 14:38:21 -0700817 }
818 updateEffectiveIntent();
819 return false;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800820 }
821
Craig Mautner41db4a72014-05-07 17:20:56 -0700822 boolean autoRemoveFromRecents() {
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700823 // We will automatically remove the task either if it has explicitly asked for
824 // this, or it is empty and has never contained an activity that got shown to
825 // the user.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700826 return autoRemoveRecents || (mActivities.isEmpty() && !hasBeenVisible);
Craig Mautner41db4a72014-05-07 17:20:56 -0700827 }
828
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700829 /**
830 * Completely remove all activities associated with an existing
831 * task starting at a specified index.
832 */
833 final void performClearTaskAtIndexLocked(int activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700834 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700835 for ( ; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700836 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700837 if (r.finishing) {
838 continue;
839 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700840 if (stack == null) {
841 // Task was restored from persistent storage.
842 r.takeFromHistory();
843 mActivities.remove(activityNdx);
844 --activityNdx;
845 --numActivities;
Todd Kennedy539db512014-12-15 09:57:55 -0800846 } else if (stack.finishActivityLocked(
847 r, Activity.RESULT_CANCELED, null, "clear-task-index", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700848 --activityNdx;
849 --numActivities;
850 }
851 }
852 }
853
854 /**
855 * Completely remove all activities associated with an existing task.
856 */
857 final void performClearTaskLocked() {
Craig Mautner362449a2014-06-20 14:04:39 -0700858 mReuseTask = true;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700859 performClearTaskAtIndexLocked(0);
Craig Mautner362449a2014-06-20 14:04:39 -0700860 mReuseTask = false;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700861 }
862
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800863 ActivityRecord performClearTaskForReuseLocked(ActivityRecord newR, int launchFlags) {
864 mReuseTask = true;
865 final ActivityRecord result = performClearTaskLocked(newR, launchFlags);
866 mReuseTask = false;
867 return result;
868 }
869
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700870 /**
871 * Perform clear operation as requested by
872 * {@link Intent#FLAG_ACTIVITY_CLEAR_TOP}: search from the top of the
873 * stack to the given task, then look for
874 * an instance of that activity in the stack and, if found, finish all
875 * activities on top of it and return the instance.
876 *
877 * @param newR Description of the new activity being started.
878 * @return Returns the old activity that should be continued to be used,
879 * or null if none was found.
880 */
881 final ActivityRecord performClearTaskLocked(ActivityRecord newR, int launchFlags) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700882 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700883 for (int activityNdx = numActivities - 1; activityNdx >= 0; --activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700884 ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700885 if (r.finishing) {
886 continue;
887 }
888 if (r.realActivity.equals(newR.realActivity)) {
889 // Here it is! Now finish everything in front...
Craig Mautner1602ec22013-05-12 10:24:27 -0700890 final ActivityRecord ret = r;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700891
892 for (++activityNdx; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700893 r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700894 if (r.finishing) {
895 continue;
896 }
897 ActivityOptions opts = r.takeOptionsLocked();
898 if (opts != null) {
899 ret.updateOptionsLocked(opts);
900 }
Wale Ogunwale7d701172015-03-11 15:36:30 -0700901 if (stack != null && stack.finishActivityLocked(
Todd Kennedy539db512014-12-15 09:57:55 -0800902 r, Activity.RESULT_CANCELED, null, "clear-task-stack", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700903 --activityNdx;
904 --numActivities;
905 }
906 }
907
908 // Finally, if this is a normal launch mode (that is, not
909 // expecting onNewIntent()), then we will finish the current
910 // instance of the activity so a new fresh one can be started.
911 if (ret.launchMode == ActivityInfo.LAUNCH_MULTIPLE
912 && (launchFlags & Intent.FLAG_ACTIVITY_SINGLE_TOP) == 0) {
913 if (!ret.finishing) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700914 if (stack != null) {
915 stack.finishActivityLocked(
916 ret, Activity.RESULT_CANCELED, null, "clear-task-top", false);
917 }
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700918 return null;
919 }
920 }
921
922 return ret;
923 }
924 }
925
926 return null;
927 }
928
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700929 public TaskThumbnail getTaskThumbnailLocked() {
Craig Mautner21d24a22014-04-23 11:45:37 -0700930 if (stack != null) {
931 final ActivityRecord resumedActivity = stack.mResumedActivity;
932 if (resumedActivity != null && resumedActivity.task == this) {
Winson8b1871d2015-11-20 09:56:20 -0800933 final Bitmap thumbnail = stack.screenshotActivitiesLocked(resumedActivity);
Winsonc809cbb2015-11-02 12:06:15 -0800934 setLastThumbnailLocked(thumbnail);
Craig Mautner21d24a22014-04-23 11:45:37 -0700935 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700936 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700937 final TaskThumbnail taskThumbnail = new TaskThumbnail();
938 getLastThumbnail(taskThumbnail);
939 return taskThumbnail;
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700940 }
941
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700942 public void removeTaskActivitiesLocked() {
943 // Just remove the entire task.
944 performClearTaskAtIndexLocked(0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700945 }
946
Craig Mautner432f64e2015-05-20 14:59:57 -0700947 String lockTaskAuthToString() {
948 switch (mLockTaskAuth) {
949 case LOCK_TASK_AUTH_DONT_LOCK: return "LOCK_TASK_AUTH_DONT_LOCK";
950 case LOCK_TASK_AUTH_PINNABLE: return "LOCK_TASK_AUTH_PINNABLE";
951 case LOCK_TASK_AUTH_LAUNCHABLE: return "LOCK_TASK_AUTH_LAUNCHABLE";
952 case LOCK_TASK_AUTH_WHITELISTED: return "LOCK_TASK_AUTH_WHITELISTED";
Benjamin Franz469dd582015-06-09 14:24:36 +0100953 case LOCK_TASK_AUTH_LAUNCHABLE_PRIV: return "LOCK_TASK_AUTH_LAUNCHABLE_PRIV";
Craig Mautner432f64e2015-05-20 14:59:57 -0700954 default: return "unknown=" + mLockTaskAuth;
955 }
956 }
957
Craig Mautner15df08a2015-04-01 12:17:18 -0700958 void setLockTaskAuth() {
Benjamin Franz469dd582015-06-09 14:24:36 +0100959 if (!mPrivileged &&
960 (mLockTaskMode == LOCK_TASK_LAUNCH_MODE_ALWAYS ||
961 mLockTaskMode == LOCK_TASK_LAUNCH_MODE_NEVER)) {
962 // Non-priv apps are not allowed to use always or never, fall back to default
963 mLockTaskMode = LOCK_TASK_LAUNCH_MODE_DEFAULT;
964 }
Craig Mautner15df08a2015-04-01 12:17:18 -0700965 switch (mLockTaskMode) {
966 case LOCK_TASK_LAUNCH_MODE_DEFAULT:
967 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
968 LOCK_TASK_AUTH_WHITELISTED : LOCK_TASK_AUTH_PINNABLE;
969 break;
970
971 case LOCK_TASK_LAUNCH_MODE_NEVER:
Benjamin Franz469dd582015-06-09 14:24:36 +0100972 mLockTaskAuth = LOCK_TASK_AUTH_DONT_LOCK;
Craig Mautner15df08a2015-04-01 12:17:18 -0700973 break;
974
975 case LOCK_TASK_LAUNCH_MODE_ALWAYS:
Benjamin Franz469dd582015-06-09 14:24:36 +0100976 mLockTaskAuth = LOCK_TASK_AUTH_LAUNCHABLE_PRIV;
Craig Mautner15df08a2015-04-01 12:17:18 -0700977 break;
978
979 case LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED:
980 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
981 LOCK_TASK_AUTH_LAUNCHABLE : LOCK_TASK_AUTH_PINNABLE;
982 break;
983 }
Craig Mautner432f64e2015-05-20 14:59:57 -0700984 if (DEBUG_LOCKTASK) Slog.d(TAG_LOCKTASK, "setLockTaskAuth: task=" + this +
985 " mLockTaskAuth=" + lockTaskAuthToString());
Craig Mautner15df08a2015-04-01 12:17:18 -0700986 }
987
988 boolean isLockTaskWhitelistedLocked() {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +0100989 String pkg = (realActivity != null) ? realActivity.getPackageName() : null;
990 if (pkg == null) {
Craig Mautner15df08a2015-04-01 12:17:18 -0700991 return false;
992 }
993 String[] packages = mService.mLockTaskPackages.get(userId);
994 if (packages == null) {
995 return false;
996 }
997 for (int i = packages.length - 1; i >= 0; --i) {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +0100998 if (pkg.equals(packages[i])) {
Craig Mautner15df08a2015-04-01 12:17:18 -0700999 return true;
1000 }
1001 }
1002 return false;
1003 }
Wale Ogunwale74e26592016-02-05 11:48:37 -08001004
Craig Mautnera82aa092013-09-13 15:34:08 -07001005 boolean isHomeTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -07001006 return taskType == HOME_ACTIVITY_TYPE;
Craig Mautnera82aa092013-09-13 15:34:08 -07001007 }
1008
Wale Ogunwale74e26592016-02-05 11:48:37 -08001009 boolean isRecentsTask() {
1010 return taskType == RECENTS_ACTIVITY_TYPE;
1011 }
1012
Craig Mautner86d67a42013-05-14 10:34:38 -07001013 boolean isApplicationTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -07001014 return taskType == APPLICATION_ACTIVITY_TYPE;
1015 }
1016
1017 boolean isOverHomeStack() {
1018 return mTaskToReturnTo == HOME_ACTIVITY_TYPE || mTaskToReturnTo == RECENTS_ACTIVITY_TYPE;
Craig Mautner1602ec22013-05-12 10:24:27 -07001019 }
1020
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001021 boolean isResizeable() {
1022 return !isHomeTask() && (mService.mForceResizableActivities
Jorim Jaggi8202b2a2016-02-03 19:24:31 -08001023 || ActivityInfo.isResizeableMode(mResizeMode)) && !mTemporarilyUnresizable;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001024 }
1025
1026 boolean inCropWindowsResizeMode() {
1027 return !isResizeable() && mResizeMode == RESIZE_MODE_CROP_WINDOWS;
1028 }
1029
Wale Ogunwale513346d2016-01-27 10:55:01 -08001030 boolean canGoInDockedStack() {
1031 return isResizeable() || inCropWindowsResizeMode();
1032 }
1033
Craig Mautner525f3d92013-05-07 14:01:50 -07001034 /**
1035 * Find the activity in the history stack within the given task. Returns
1036 * the index within the history at which it's found, or < 0 if not found.
1037 */
1038 final ActivityRecord findActivityInHistoryLocked(ActivityRecord r) {
1039 final ComponentName realActivity = r.realActivity;
1040 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1041 ActivityRecord candidate = mActivities.get(activityNdx);
1042 if (candidate.finishing) {
1043 continue;
1044 }
1045 if (candidate.realActivity.equals(realActivity)) {
1046 return candidate;
1047 }
1048 }
1049 return null;
1050 }
1051
Winson Chunga449dc02014-05-16 11:15:04 -07001052 /** Updates the last task description values. */
1053 void updateTaskDescription() {
1054 // Traverse upwards looking for any break between main task activities and
1055 // utility activities.
1056 int activityNdx;
1057 final int numActivities = mActivities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001058 final boolean relinquish = numActivities == 0 ? false :
1059 (mActivities.get(0).info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) != 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001060 for (activityNdx = Math.min(numActivities, 1); activityNdx < numActivities;
Craig Mautner21d24a22014-04-23 11:45:37 -07001061 ++activityNdx) {
Winson Chunga449dc02014-05-16 11:15:04 -07001062 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001063 if (relinquish && (r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
1064 // This will be the top activity for determining taskDescription. Pre-inc to
1065 // overcome initial decrement below.
1066 ++activityNdx;
1067 break;
1068 }
Winson Chunga449dc02014-05-16 11:15:04 -07001069 if (r.intent != null &&
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001070 (r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Winson Chunga449dc02014-05-16 11:15:04 -07001071 break;
1072 }
1073 }
1074 if (activityNdx > 0) {
1075 // Traverse downwards starting below break looking for set label, icon.
1076 // Note that if there are activities in the task but none of them set the
1077 // recent activity values, then we do not fall back to the last set
1078 // values in the TaskRecord.
1079 String label = null;
Craig Mautner648f69b2014-09-18 14:16:26 -07001080 String iconFilename = null;
Winson Chunga449dc02014-05-16 11:15:04 -07001081 int colorPrimary = 0;
Winson Chung1af8eda2016-02-05 17:55:56 +00001082 int colorBackground = 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001083 for (--activityNdx; activityNdx >= 0; --activityNdx) {
1084 final ActivityRecord r = mActivities.get(activityNdx);
1085 if (r.taskDescription != null) {
1086 if (label == null) {
1087 label = r.taskDescription.getLabel();
1088 }
Craig Mautner648f69b2014-09-18 14:16:26 -07001089 if (iconFilename == null) {
1090 iconFilename = r.taskDescription.getIconFilename();
Winson Chunga449dc02014-05-16 11:15:04 -07001091 }
1092 if (colorPrimary == 0) {
1093 colorPrimary = r.taskDescription.getPrimaryColor();
Winson Chunga449dc02014-05-16 11:15:04 -07001094 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001095 if (colorBackground == 0) {
1096 colorBackground = r.taskDescription.getBackgroundColor();
1097 }
Winson Chunga449dc02014-05-16 11:15:04 -07001098 }
1099 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001100 lastTaskDescription = new TaskDescription(label, null, iconFilename, colorPrimary,
1101 colorBackground);
Winson Chungec396d62014-08-06 17:08:00 -07001102 // Update the task affiliation color if we are the parent of the group
1103 if (taskId == mAffiliatedTaskId) {
1104 mAffiliatedTaskColor = lastTaskDescription.getPrimaryColor();
1105 }
Winson Chunga449dc02014-05-16 11:15:04 -07001106 }
1107 }
1108
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001109 int findEffectiveRootIndex() {
Craig Mautner4767f4b2014-09-18 15:38:33 -07001110 int effectiveNdx = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001111 final int topActivityNdx = mActivities.size() - 1;
Dianne Hackborn39569af2014-09-23 10:56:58 -07001112 for (int activityNdx = 0; activityNdx <= topActivityNdx; ++activityNdx) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001113 final ActivityRecord r = mActivities.get(activityNdx);
1114 if (r.finishing) {
1115 continue;
1116 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001117 effectiveNdx = activityNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001118 if ((r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
1119 break;
1120 }
1121 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001122 return effectiveNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001123 }
1124
1125 void updateEffectiveIntent() {
1126 final int effectiveRootIndex = findEffectiveRootIndex();
1127 final ActivityRecord r = mActivities.get(effectiveRootIndex);
Winson Chungfee26772014-08-05 12:21:52 -07001128 setIntent(r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001129 }
1130
Craig Mautner21d24a22014-04-23 11:45:37 -07001131 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001132 if (DEBUG_RECENTS) Slog.i(TAG_RECENTS, "Saving task=" + this);
Craig Mautner21d24a22014-04-23 11:45:37 -07001133
1134 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
1135 if (realActivity != null) {
1136 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
1137 }
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001138 out.attribute(null, ATTR_REALACTIVITY_SUSPENDED, String.valueOf(realActivitySuspended));
Craig Mautner21d24a22014-04-23 11:45:37 -07001139 if (origActivity != null) {
1140 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
1141 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001142 // Write affinity, and root affinity if it is different from affinity.
1143 // We use the special string "@" for a null root affinity, so we can identify
1144 // later whether we were given a root affinity or should just make it the
1145 // same as the affinity.
Craig Mautner21d24a22014-04-23 11:45:37 -07001146 if (affinity != null) {
1147 out.attribute(null, ATTR_AFFINITY, affinity);
Dianne Hackborn79228822014-09-16 11:11:23 -07001148 if (!affinity.equals(rootAffinity)) {
1149 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
1150 }
1151 } else if (rootAffinity != null) {
1152 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
Craig Mautner21d24a22014-04-23 11:45:37 -07001153 }
1154 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
Dianne Hackborn13420f22014-07-18 15:43:56 -07001155 out.attribute(null, ATTR_AUTOREMOVERECENTS, String.valueOf(autoRemoveRecents));
Craig Mautner21d24a22014-04-23 11:45:37 -07001156 out.attribute(null, ATTR_ASKEDCOMPATMODE, String.valueOf(askedCompatMode));
1157 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001158 out.attribute(null, ATTR_USER_SETUP_COMPLETE, String.valueOf(mUserSetupComplete));
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001159 out.attribute(null, ATTR_EFFECTIVE_UID, String.valueOf(effectiveUid));
Craig Mautner21d24a22014-04-23 11:45:37 -07001160 out.attribute(null, ATTR_TASKTYPE, String.valueOf(taskType));
Winson Chungffa2ec62014-07-03 15:54:42 -07001161 out.attribute(null, ATTR_FIRSTACTIVETIME, String.valueOf(firstActiveTime));
Winson Chungf1fbd772014-06-24 18:06:58 -07001162 out.attribute(null, ATTR_LASTACTIVETIME, String.valueOf(lastActiveTime));
Craig Mautner21d24a22014-04-23 11:45:37 -07001163 out.attribute(null, ATTR_LASTTIMEMOVED, String.valueOf(mLastTimeMoved));
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001164 out.attribute(null, ATTR_NEVERRELINQUISH, String.valueOf(mNeverRelinquishIdentity));
Craig Mautner21d24a22014-04-23 11:45:37 -07001165 if (lastDescription != null) {
1166 out.attribute(null, ATTR_LASTDESCRIPTION, lastDescription.toString());
1167 }
Winson Chung2cb86c72014-06-25 12:03:30 -07001168 if (lastTaskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001169 lastTaskDescription.saveToXml(out);
Winson Chung2cb86c72014-06-25 12:03:30 -07001170 }
Winson Chung36f3f032016-09-08 23:29:43 +00001171 mLastThumbnailInfo.saveToXml(out);
Winson Chungec396d62014-08-06 17:08:00 -07001172 out.attribute(null, ATTR_TASK_AFFILIATION_COLOR, String.valueOf(mAffiliatedTaskColor));
Craig Mautnera228ae92014-07-09 05:44:55 -07001173 out.attribute(null, ATTR_TASK_AFFILIATION, String.valueOf(mAffiliatedTaskId));
1174 out.attribute(null, ATTR_PREV_AFFILIATION, String.valueOf(mPrevAffiliateTaskId));
1175 out.attribute(null, ATTR_NEXT_AFFILIATION, String.valueOf(mNextAffiliateTaskId));
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001176 out.attribute(null, ATTR_CALLING_UID, String.valueOf(mCallingUid));
1177 out.attribute(null, ATTR_CALLING_PACKAGE, mCallingPackage == null ? "" : mCallingPackage);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001178 out.attribute(null, ATTR_RESIZE_MODE, String.valueOf(mResizeMode));
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001179 out.attribute(null, ATTR_PRIVILEGED, String.valueOf(mPrivileged));
Wale Ogunwale706ed792015-08-02 10:29:44 -07001180 if (mLastNonFullscreenBounds != null) {
1181 out.attribute(
1182 null, ATTR_NON_FULLSCREEN_BOUNDS, mLastNonFullscreenBounds.flattenToString());
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001183 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001184 out.attribute(null, ATTR_MIN_WIDTH, String.valueOf(mMinWidth));
1185 out.attribute(null, ATTR_MIN_HEIGHT, String.valueOf(mMinHeight));
Winson Chung2cb86c72014-06-25 12:03:30 -07001186
Craig Mautner21d24a22014-04-23 11:45:37 -07001187 if (affinityIntent != null) {
1188 out.startTag(null, TAG_AFFINITYINTENT);
1189 affinityIntent.saveToXml(out);
1190 out.endTag(null, TAG_AFFINITYINTENT);
1191 }
1192
Winson Chung36f3f032016-09-08 23:29:43 +00001193 out.startTag(null, TAG_INTENT);
1194 intent.saveToXml(out);
1195 out.endTag(null, TAG_INTENT);
Craig Mautner21d24a22014-04-23 11:45:37 -07001196
1197 final ArrayList<ActivityRecord> activities = mActivities;
1198 final int numActivities = activities.size();
1199 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1200 final ActivityRecord r = activities.get(activityNdx);
Craig Mautner43e52ed2014-06-16 17:18:52 -07001201 if (r.info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY || !r.isPersistable() ||
Wale Ogunwale843bfb92015-03-27 11:06:48 -07001202 ((r.intent.getFlags() & FLAG_ACTIVITY_NEW_DOCUMENT
1203 | FLAG_ACTIVITY_RETAIN_IN_RECENTS) == FLAG_ACTIVITY_NEW_DOCUMENT) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -07001204 activityNdx > 0) {
Craig Mautnerf357c0c2014-06-09 09:23:27 -07001205 // Stop at first non-persistable or first break in task (CLEAR_WHEN_TASK_RESET).
Craig Mautner21d24a22014-04-23 11:45:37 -07001206 break;
1207 }
1208 out.startTag(null, TAG_ACTIVITY);
1209 r.saveToXml(out);
1210 out.endTag(null, TAG_ACTIVITY);
1211 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001212 }
1213
Winson Chung36f3f032016-09-08 23:29:43 +00001214 static TaskRecord restoreFromXml(XmlPullParser in, ActivityStackSupervisor stackSupervisor)
1215 throws IOException, XmlPullParserException {
Craig Mautner21d24a22014-04-23 11:45:37 -07001216 Intent intent = null;
1217 Intent affinityIntent = null;
Winsonc809cbb2015-11-02 12:06:15 -08001218 ArrayList<ActivityRecord> activities = new ArrayList<>();
Craig Mautner21d24a22014-04-23 11:45:37 -07001219 ComponentName realActivity = null;
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001220 boolean realActivitySuspended = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001221 ComponentName origActivity = null;
1222 String affinity = null;
Dianne Hackborn79228822014-09-16 11:11:23 -07001223 String rootAffinity = null;
1224 boolean hasRootAffinity = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001225 boolean rootHasReset = false;
Dianne Hackborn13420f22014-07-18 15:43:56 -07001226 boolean autoRemoveRecents = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001227 boolean askedCompatMode = false;
1228 int taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -07001229 int userId = 0;
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001230 boolean userSetupComplete = true;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001231 int effectiveUid = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001232 String lastDescription = null;
Winson Chungffa2ec62014-07-03 15:54:42 -07001233 long firstActiveTime = -1;
Winson Chung2cb86c72014-06-25 12:03:30 -07001234 long lastActiveTime = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001235 long lastTimeOnTop = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001236 boolean neverRelinquishIdentity = true;
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001237 int taskId = INVALID_TASK_ID;
Craig Mautner21d24a22014-04-23 11:45:37 -07001238 final int outerDepth = in.getDepth();
Craig Mautner648f69b2014-09-18 14:16:26 -07001239 TaskDescription taskDescription = new TaskDescription();
Winsonc809cbb2015-11-02 12:06:15 -08001240 TaskThumbnailInfo thumbnailInfo = new TaskThumbnailInfo();
Wale Ogunwale18795a22014-12-03 11:38:33 -08001241 int taskAffiliation = INVALID_TASK_ID;
Winson Chungec396d62014-08-06 17:08:00 -07001242 int taskAffiliationColor = 0;
Wale Ogunwale18795a22014-12-03 11:38:33 -08001243 int prevTaskId = INVALID_TASK_ID;
1244 int nextTaskId = INVALID_TASK_ID;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001245 int callingUid = -1;
1246 String callingPackage = "";
Wale Ogunwaled829d362016-02-10 19:24:49 -08001247 int resizeMode = RESIZE_MODE_FORCE_RESIZEABLE;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001248 boolean privileged = false;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001249 Rect bounds = null;
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001250 int minWidth = INVALID_MIN_SIZE;
1251 int minHeight = INVALID_MIN_SIZE;
Craig Mautner21d24a22014-04-23 11:45:37 -07001252
1253 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1254 final String attrName = in.getAttributeName(attrNdx);
1255 final String attrValue = in.getAttributeValue(attrNdx);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001256 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: attribute name=" +
1257 attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001258 if (ATTR_TASKID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001259 if (taskId == INVALID_TASK_ID) taskId = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001260 } else if (ATTR_REALACTIVITY.equals(attrName)) {
1261 realActivity = ComponentName.unflattenFromString(attrValue);
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001262 } else if (ATTR_REALACTIVITY_SUSPENDED.equals(attrName)) {
1263 realActivitySuspended = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001264 } else if (ATTR_ORIGACTIVITY.equals(attrName)) {
1265 origActivity = ComponentName.unflattenFromString(attrValue);
1266 } else if (ATTR_AFFINITY.equals(attrName)) {
1267 affinity = attrValue;
Dianne Hackborn79228822014-09-16 11:11:23 -07001268 } else if (ATTR_ROOT_AFFINITY.equals(attrName)) {
1269 rootAffinity = attrValue;
1270 hasRootAffinity = true;
Craig Mautner21d24a22014-04-23 11:45:37 -07001271 } else if (ATTR_ROOTHASRESET.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001272 rootHasReset = Boolean.parseBoolean(attrValue);
Dianne Hackborn13420f22014-07-18 15:43:56 -07001273 } else if (ATTR_AUTOREMOVERECENTS.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001274 autoRemoveRecents = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001275 } else if (ATTR_ASKEDCOMPATMODE.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001276 askedCompatMode = Boolean.parseBoolean(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001277 } else if (ATTR_USERID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001278 userId = Integer.parseInt(attrValue);
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001279 } else if (ATTR_USER_SETUP_COMPLETE.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001280 userSetupComplete = Boolean.parseBoolean(attrValue);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001281 } else if (ATTR_EFFECTIVE_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001282 effectiveUid = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001283 } else if (ATTR_TASKTYPE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001284 taskType = Integer.parseInt(attrValue);
Winson Chungffa2ec62014-07-03 15:54:42 -07001285 } else if (ATTR_FIRSTACTIVETIME.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001286 firstActiveTime = Long.parseLong(attrValue);
Winson Chungf1fbd772014-06-24 18:06:58 -07001287 } else if (ATTR_LASTACTIVETIME.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001288 lastActiveTime = Long.parseLong(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001289 } else if (ATTR_LASTDESCRIPTION.equals(attrName)) {
1290 lastDescription = attrValue;
1291 } else if (ATTR_LASTTIMEMOVED.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001292 lastTimeOnTop = Long.parseLong(attrValue);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001293 } else if (ATTR_NEVERRELINQUISH.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001294 neverRelinquishIdentity = Boolean.parseBoolean(attrValue);
Winsonc809cbb2015-11-02 12:06:15 -08001295 } else if (attrName.startsWith(TaskThumbnailInfo.ATTR_TASK_THUMBNAILINFO_PREFIX)) {
1296 thumbnailInfo.restoreFromXml(attrName, attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001297 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1298 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001299 } else if (ATTR_TASK_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001300 taskAffiliation = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001301 } else if (ATTR_PREV_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001302 prevTaskId = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001303 } else if (ATTR_NEXT_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001304 nextTaskId = Integer.parseInt(attrValue);
Winson Chungec396d62014-08-06 17:08:00 -07001305 } else if (ATTR_TASK_AFFILIATION_COLOR.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001306 taskAffiliationColor = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001307 } else if (ATTR_CALLING_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001308 callingUid = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001309 } else if (ATTR_CALLING_PACKAGE.equals(attrName)) {
1310 callingPackage = attrValue;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001311 } else if (ATTR_RESIZE_MODE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001312 resizeMode = Integer.parseInt(attrValue);
Wale Ogunwaled829d362016-02-10 19:24:49 -08001313 resizeMode = (resizeMode == RESIZE_MODE_CROP_WINDOWS)
1314 ? RESIZE_MODE_FORCE_RESIZEABLE : resizeMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001315 } else if (ATTR_PRIVILEGED.equals(attrName)) {
Tobias Thierer28532d02016-04-21 14:52:10 +01001316 privileged = Boolean.parseBoolean(attrValue);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001317 } else if (ATTR_NON_FULLSCREEN_BOUNDS.equals(attrName)) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001318 bounds = Rect.unflattenFromString(attrValue);
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001319 } else if (ATTR_MIN_WIDTH.equals(attrName)) {
1320 minWidth = Integer.parseInt(attrValue);
1321 } else if (ATTR_MIN_HEIGHT.equals(attrName)) {
1322 minHeight = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001323 } else {
1324 Slog.w(TAG, "TaskRecord: Unknown attribute=" + attrName);
1325 }
1326 }
1327
1328 int event;
1329 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
Ben Kwa8814cf42015-07-08 10:54:56 -07001330 (event != XmlPullParser.END_TAG || in.getDepth() >= outerDepth)) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001331 if (event == XmlPullParser.START_TAG) {
1332 final String name = in.getName();
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001333 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: START_TAG name=" +
1334 name);
Craig Mautner21d24a22014-04-23 11:45:37 -07001335 if (TAG_AFFINITYINTENT.equals(name)) {
1336 affinityIntent = Intent.restoreFromXml(in);
1337 } else if (TAG_INTENT.equals(name)) {
1338 intent = Intent.restoreFromXml(in);
1339 } else if (TAG_ACTIVITY.equals(name)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001340 ActivityRecord activity = ActivityRecord.restoreFromXml(in, stackSupervisor);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001341 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: activity=" +
1342 activity);
Craig Mautner21d24a22014-04-23 11:45:37 -07001343 if (activity != null) {
1344 activities.add(activity);
1345 }
1346 } else {
1347 Slog.e(TAG, "restoreTask: Unexpected name=" + name);
1348 XmlUtils.skipCurrentTag(in);
1349 }
1350 }
1351 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001352 if (!hasRootAffinity) {
1353 rootAffinity = affinity;
1354 } else if ("@".equals(rootAffinity)) {
1355 rootAffinity = null;
1356 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001357 if (effectiveUid <= 0) {
1358 Intent checkIntent = intent != null ? intent : affinityIntent;
1359 effectiveUid = 0;
1360 if (checkIntent != null) {
1361 IPackageManager pm = AppGlobals.getPackageManager();
1362 try {
1363 ApplicationInfo ai = pm.getApplicationInfo(
1364 checkIntent.getComponent().getPackageName(),
1365 PackageManager.GET_UNINSTALLED_PACKAGES
1366 | PackageManager.GET_DISABLED_COMPONENTS, userId);
1367 if (ai != null) {
1368 effectiveUid = ai.uid;
1369 }
1370 } catch (RemoteException e) {
1371 }
1372 }
1373 Slog.w(TAG, "Updating task #" + taskId + " for " + checkIntent
1374 + ": effectiveUid=" + effectiveUid);
1375 }
1376
Winson Chung36f3f032016-09-08 23:29:43 +00001377 final TaskRecord task = new TaskRecord(stackSupervisor.mService, taskId, intent,
Dianne Hackborn79228822014-09-16 11:11:23 -07001378 affinityIntent, affinity, rootAffinity, realActivity, origActivity, rootHasReset,
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001379 autoRemoveRecents, askedCompatMode, taskType, userId, effectiveUid, lastDescription,
1380 activities, firstActiveTime, lastActiveTime, lastTimeOnTop, neverRelinquishIdentity,
Winsonc809cbb2015-11-02 12:06:15 -08001381 taskDescription, thumbnailInfo, taskAffiliation, prevTaskId, nextTaskId,
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001382 taskAffiliationColor, callingUid, callingPackage, resizeMode, privileged,
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001383 realActivitySuspended, userSetupComplete, minWidth, minHeight);
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07001384 task.updateOverrideConfiguration(bounds);
Craig Mautner21d24a22014-04-23 11:45:37 -07001385
1386 for (int activityNdx = activities.size() - 1; activityNdx >=0; --activityNdx) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001387 activities.get(activityNdx).task = task;
Craig Mautner21d24a22014-04-23 11:45:37 -07001388 }
1389
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001390 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "Restored task=" + task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001391 return task;
1392 }
1393
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001394 private void adjustForMinimalTaskDimensions(Rect bounds) {
1395 if (bounds == null) {
1396 return;
1397 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001398 int minWidth = mMinWidth;
1399 int minHeight = mMinHeight;
Robert Carr9c5867d2016-03-10 15:52:46 -08001400 // If the task has no requested minimal size, we'd like to enforce a minimal size
1401 // so that the user can not render the task too small to manipulate. We don't need
1402 // to do this for the pinned stack as the bounds are controlled by the system.
Andrii Kulian2e751b82016-03-16 16:59:32 -07001403 if (stack.mStackId != PINNED_STACK_ID) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001404 if (minWidth == INVALID_MIN_SIZE) {
1405 minWidth = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07001406 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001407 if (minHeight == INVALID_MIN_SIZE) {
1408 minHeight = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07001409 }
Robert Carr9c5867d2016-03-10 15:52:46 -08001410 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001411 final boolean adjustWidth = minWidth > bounds.width();
1412 final boolean adjustHeight = minHeight > bounds.height();
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001413 if (!(adjustWidth || adjustHeight)) {
1414 return;
1415 }
1416
1417 if (adjustWidth) {
1418 if (mBounds != null && bounds.right == mBounds.right) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001419 bounds.left = bounds.right - minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001420 } else {
1421 // Either left bounds match, or neither match, or the previous bounds were
1422 // fullscreen and we default to keeping left.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001423 bounds.right = bounds.left + minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001424 }
1425 }
1426 if (adjustHeight) {
1427 if (mBounds != null && bounds.bottom == mBounds.bottom) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001428 bounds.top = bounds.bottom - minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001429 } else {
1430 // Either top bounds match, or neither match, or the previous bounds were
1431 // fullscreen and we default to keeping top.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001432 bounds.bottom = bounds.top + minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001433 }
1434 }
1435 }
1436
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001437 /**
1438 * Update task's override configuration based on the bounds.
Jorim Jaggi0a932142016-02-01 17:42:25 -08001439 * @param bounds The bounds of the task.
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001440 * @return Update configuration or null if there is no change.
1441 */
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07001442 Configuration updateOverrideConfiguration(Rect bounds) {
Jorim Jaggi0a932142016-02-01 17:42:25 -08001443 return updateOverrideConfiguration(bounds, null /* insetBounds */);
1444 }
1445
1446 /**
1447 * Update task's override configuration based on the bounds.
1448 * @param bounds The bounds of the task.
1449 * @param insetBounds The bounds used to calculate the system insets, which is used here to
1450 * subtract the navigation bar/status bar size from the screen size reported
1451 * to the application. See {@link IActivityManager#resizeDockedStack}.
1452 * @return Update configuration or null if there is no change.
1453 */
1454 Configuration updateOverrideConfiguration(Rect bounds, @Nullable Rect insetBounds) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001455 if (Objects.equals(mBounds, bounds)) {
1456 return null;
1457 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08001458 final Configuration oldConfig = mOverrideConfig;
1459 final boolean oldFullscreen = mFullscreen;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001460
1461 mFullscreen = bounds == null;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001462 if (mFullscreen) {
Wale Ogunwale3797c222015-10-27 14:21:58 -07001463 if (mBounds != null && StackId.persistTaskBounds(stack.mStackId)) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001464 mLastNonFullscreenBounds = mBounds;
1465 }
1466 mBounds = null;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001467 mOverrideConfig = Configuration.EMPTY;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001468 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001469 mTmpRect.set(bounds);
1470 adjustForMinimalTaskDimensions(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001471 if (mBounds == null) {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001472 mBounds = new Rect(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001473 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001474 mBounds.set(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001475 }
Wale Ogunwale3797c222015-10-27 14:21:58 -07001476 if (stack == null || StackId.persistTaskBounds(stack.mStackId)) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001477 mLastNonFullscreenBounds = mBounds;
1478 }
Andrii Kuliandaea3572016-04-08 13:20:51 -07001479 mOverrideConfig = calculateOverrideConfig(mTmpRect, insetBounds,
1480 mTmpRect.right != bounds.right, mTmpRect.bottom != bounds.bottom);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001481 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08001482
1483 if (mFullscreen != oldFullscreen) {
Andrii Kulian933076d2016-03-29 17:04:42 -07001484 mService.mStackSupervisor.scheduleReportMultiWindowModeChanged(this);
Wale Ogunwale5f986092015-12-04 15:35:38 -08001485 }
1486
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001487 return !mOverrideConfig.equals(oldConfig) ? mOverrideConfig : null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001488 }
1489
Andrii Kuliandaea3572016-04-08 13:20:51 -07001490 private void subtractNonDecorInsets(Rect inOutBounds, Rect inInsetBounds,
1491 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001492 mTmpRect2.set(inInsetBounds);
1493 mService.mWindowManager.subtractNonDecorInsets(mTmpRect2);
1494 int leftInset = mTmpRect2.left - inInsetBounds.left;
1495 int topInset = mTmpRect2.top - inInsetBounds.top;
Andrii Kuliandaea3572016-04-08 13:20:51 -07001496 int rightInset = overrideWidth ? 0 : inInsetBounds.right - mTmpRect2.right;
1497 int bottomInset = overrideHeight ? 0 : inInsetBounds.bottom - mTmpRect2.bottom;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001498 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset);
1499 }
1500
Andrii Kuliandaea3572016-04-08 13:20:51 -07001501 private void subtractStableInsets(Rect inOutBounds, Rect inInsetBounds,
1502 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi0a932142016-02-01 17:42:25 -08001503 mTmpRect2.set(inInsetBounds);
1504 mService.mWindowManager.subtractStableInsets(mTmpRect2);
1505 int leftInset = mTmpRect2.left - inInsetBounds.left;
1506 int topInset = mTmpRect2.top - inInsetBounds.top;
Andrii Kuliandaea3572016-04-08 13:20:51 -07001507 int rightInset = overrideWidth ? 0 : inInsetBounds.right - mTmpRect2.right;
1508 int bottomInset = overrideHeight ? 0 : inInsetBounds.bottom - mTmpRect2.bottom;
Jorim Jaggi0a932142016-02-01 17:42:25 -08001509 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset);
1510 }
1511
Andrii Kuliandaea3572016-04-08 13:20:51 -07001512 private Configuration calculateOverrideConfig(Rect bounds, Rect insetBounds,
1513 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001514 mTmpNonDecorBounds.set(bounds);
1515 mTmpStableBounds.set(bounds);
1516 subtractNonDecorInsets(
Andrii Kuliandaea3572016-04-08 13:20:51 -07001517 mTmpNonDecorBounds, insetBounds != null ? insetBounds : bounds,
1518 overrideWidth, overrideHeight);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001519 subtractStableInsets(
Andrii Kuliandaea3572016-04-08 13:20:51 -07001520 mTmpStableBounds, insetBounds != null ? insetBounds : bounds,
1521 overrideWidth, overrideHeight);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001522
1523 // For calculating screenWidthDp, screenWidthDp, we use the stable inset screen area,
1524 // i.e. the screen area without the system bars.
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001525 final Configuration serviceConfig = mService.mConfiguration;
1526 final Configuration config = new Configuration(Configuration.EMPTY);
1527 // TODO(multidisplay): Update Dp to that of display stack is on.
1528 final float density = serviceConfig.densityDpi * DisplayMetrics.DENSITY_DEFAULT_SCALE;
1529 config.screenWidthDp =
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001530 Math.min((int)(mTmpStableBounds.width() / density), serviceConfig.screenWidthDp);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001531 config.screenHeightDp =
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001532 Math.min((int)(mTmpStableBounds.height() / density), serviceConfig.screenHeightDp);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001533
1534 // TODO: Orientation?
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001535 config.orientation = (config.screenWidthDp <= config.screenHeightDp)
1536 ? Configuration.ORIENTATION_PORTRAIT
1537 : Configuration.ORIENTATION_LANDSCAPE;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001538
Chong Zhang92ab1032016-06-03 17:43:10 -07001539 // Always set fontScale to be euqal to global. Can't set to 0, as that makes the override
1540 // config not equal to EMPTY. Also can't set to 1, as Configuration.updateFrom will use
1541 // the override scale as long as it's non-zero, and we'll always use 1.
1542 config.fontScale = serviceConfig.fontScale;
1543
Jorim Jaggi85639432016-05-06 17:27:55 -07001544 // For calculating screen layout, we need to use the non-decor inset screen area for the
1545 // calculation for compatibility reasons, i.e. screen area without system bars that could
1546 // never go away in Honeycomb.
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001547 final int compatScreenWidthDp = (int)(mTmpNonDecorBounds.width() / density);
1548 final int compatScreenHeightDp = (int)(mTmpNonDecorBounds.height() / density);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001549 final int sl = Configuration.resetScreenLayout(serviceConfig.screenLayout);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001550 final int longSize = Math.max(compatScreenHeightDp, compatScreenWidthDp);
Jorim Jaggi85639432016-05-06 17:27:55 -07001551 final int shortSize = Math.min(compatScreenHeightDp, compatScreenWidthDp);;
1552 config.screenLayout = Configuration.reduceScreenLayout(sl, longSize, shortSize);
1553
1554 config.smallestScreenWidthDp = mService.mWindowManager.getSmallestWidthForTaskBounds(
1555 insetBounds != null ? insetBounds : bounds);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001556 return config;
1557 }
1558
1559 /**
1560 * Using the existing configuration {@param config}, creates a new task override config such
1561 * that all the fields that are usually set in an override config are set to the ones in
1562 * {@param config}.
1563 */
1564 Configuration extractOverrideConfig(Configuration config) {
1565 final Configuration extracted = new Configuration(Configuration.EMPTY);
1566 extracted.screenWidthDp = config.screenWidthDp;
1567 extracted.screenHeightDp = config.screenHeightDp;
1568 extracted.smallestScreenWidthDp = config.smallestScreenWidthDp;
1569 extracted.orientation = config.orientation;
1570 extracted.screenLayout = config.screenLayout;
Chong Zhang92ab1032016-06-03 17:43:10 -07001571 extracted.fontScale = config.fontScale;
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001572 return extracted;
1573 }
1574
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08001575 Rect updateOverrideConfigurationFromLaunchBounds() {
1576 final Rect bounds = validateBounds(getLaunchBounds());
1577 updateOverrideConfiguration(bounds);
Andrii Kulian73336d812016-03-24 12:56:08 -07001578 if (bounds != null) {
1579 bounds.set(mBounds);
1580 }
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08001581 return bounds;
1582 }
1583
Andrii Kulianf12fce12016-05-27 17:30:16 -07001584 /**
1585 * Update fields that are not overridden for task from global configuration.
1586 *
1587 * @param globalConfig global configuration to update from.
1588 */
1589 void sanitizeOverrideConfiguration(Configuration globalConfig) {
Chong Zhanga8cc3782016-06-01 12:20:10 -07001590 // If it's fullscreen, the override config should be empty and we should leave it alone.
1591 if (mFullscreen) {
1592 return;
1593 }
1594
Andrii Kulianf12fce12016-05-27 17:30:16 -07001595 // screenLayout field is set in #calculateOverrideConfig but only part of it is really
1596 // overridden - aspect ratio and size. Other flags (like layout direction) can be updated
1597 // separately in global config and they also must be updated in override config.
1598 int overrideScreenLayout = mOverrideConfig.screenLayout;
1599 int newScreenLayout = globalConfig.screenLayout;
1600 newScreenLayout = (newScreenLayout & ~SCREENLAYOUT_LONG_MASK)
1601 | (overrideScreenLayout & SCREENLAYOUT_LONG_MASK);
1602 newScreenLayout = (newScreenLayout & ~SCREENLAYOUT_SIZE_MASK)
1603 | (overrideScreenLayout & SCREENLAYOUT_SIZE_MASK);
1604 mOverrideConfig.screenLayout = newScreenLayout;
Chong Zhang92ab1032016-06-03 17:43:10 -07001605 // we never override the fontScale, however we need to copy over the global value
1606 // so that the default 1.0 doesn't get applied as an override.
1607 mOverrideConfig.fontScale = globalConfig.fontScale;
Andrii Kulianf12fce12016-05-27 17:30:16 -07001608 }
1609
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08001610 static Rect validateBounds(Rect bounds) {
1611 if (bounds != null && bounds.isEmpty()) {
1612 Slog.wtf(TAG, "Received strange task bounds: " + bounds, new Throwable());
1613 return null;
1614 }
1615 return bounds;
1616 }
1617
Wale Ogunwale935e5022015-11-10 12:36:10 -08001618 /** Updates the task's bounds and override configuration to match what is expected for the
1619 * input stack. */
1620 void updateOverrideConfigurationForStack(ActivityStack inStack) {
1621 if (stack != null && stack == inStack) {
1622 return;
1623 }
1624
1625 if (inStack.mStackId == FREEFORM_WORKSPACE_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001626 if (!isResizeable()) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08001627 throw new IllegalArgumentException("Can not position non-resizeable task="
1628 + this + " in stack=" + inStack);
1629 }
1630 if (mBounds != null) {
1631 return;
1632 }
1633 if (mLastNonFullscreenBounds != null) {
1634 updateOverrideConfiguration(mLastNonFullscreenBounds);
1635 } else {
1636 inStack.layoutTaskInStack(this, null);
1637 }
1638 } else {
1639 updateOverrideConfiguration(inStack.mBounds);
1640 }
1641 }
1642
Chong Zhang0fa656b2015-08-31 15:17:21 -07001643 /**
1644 * Returns the correct stack to use based on task type and currently set bounds,
1645 * regardless of the focused stack and current stack association of the task.
1646 * The task will be moved (and stack focus changed) later if necessary.
1647 */
1648 int getLaunchStackId() {
1649 if (!isApplicationTask()) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001650 return HOME_STACK_ID;
1651 }
Chong Zhang0fa656b2015-08-31 15:17:21 -07001652 if (mBounds != null) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001653 return FREEFORM_WORKSPACE_STACK_ID;
1654 }
1655 return FULLSCREEN_WORKSPACE_STACK_ID;
1656 }
1657
1658 /** Returns the bounds that should be used to launch this task. */
1659 Rect getLaunchBounds() {
Chong Zhang75b37202015-12-04 14:16:36 -08001660 // If we're over lockscreen, forget about stack bounds and use fullscreen.
1661 if (mService.mLockScreenShown == LOCK_SCREEN_SHOWN) {
1662 return null;
1663 }
1664
Chong Zhang7d5f5102016-01-13 10:29:24 -08001665 if (stack == null) {
1666 return null;
1667 }
1668
1669 final int stackId = stack.mStackId;
1670 if (stackId == HOME_STACK_ID
1671 || stackId == FULLSCREEN_WORKSPACE_STACK_ID
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001672 || (stackId == DOCKED_STACK_ID && !isResizeable())) {
1673 return isResizeable() ? stack.mBounds : null;
Wale Ogunwale3797c222015-10-27 14:21:58 -07001674 } else if (!StackId.persistTaskBounds(stackId)) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001675 return stack.mBounds;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001676 }
1677 return mLastNonFullscreenBounds;
1678 }
1679
Wale Ogunwale39381972015-12-17 17:15:29 -08001680 boolean canMatchRootAffinity() {
1681 // We don't allow root affinity matching on the pinned stack as no other task should
1682 // be launching in it based on affinity.
1683 return rootAffinity != null && (stack == null || stack.mStackId != PINNED_STACK_ID);
1684 }
1685
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001686 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001687 pw.print(prefix); pw.print("userId="); pw.print(userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001688 pw.print(" effectiveUid="); UserHandle.formatUid(pw, effectiveUid);
1689 pw.print(" mCallingUid="); UserHandle.formatUid(pw, mCallingUid);
Suprabh Shukla7745c142016-03-07 18:21:10 -08001690 pw.print(" mUserSetupComplete="); pw.print(mUserSetupComplete);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001691 pw.print(" mCallingPackage="); pw.println(mCallingPackage);
Dianne Hackborn79228822014-09-16 11:11:23 -07001692 if (affinity != null || rootAffinity != null) {
1693 pw.print(prefix); pw.print("affinity="); pw.print(affinity);
1694 if (affinity == null || !affinity.equals(rootAffinity)) {
1695 pw.print(" root="); pw.println(rootAffinity);
1696 } else {
1697 pw.println();
1698 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001699 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07001700 if (voiceSession != null || voiceInteractor != null) {
1701 pw.print(prefix); pw.print("VOICE: session=0x");
1702 pw.print(Integer.toHexString(System.identityHashCode(voiceSession)));
1703 pw.print(" interactor=0x");
1704 pw.println(Integer.toHexString(System.identityHashCode(voiceInteractor)));
1705 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001706 if (intent != null) {
1707 StringBuilder sb = new StringBuilder(128);
1708 sb.append(prefix); sb.append("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001709 intent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001710 sb.append('}');
1711 pw.println(sb.toString());
1712 }
1713 if (affinityIntent != null) {
1714 StringBuilder sb = new StringBuilder(128);
1715 sb.append(prefix); sb.append("affinityIntent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001716 affinityIntent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001717 sb.append('}');
1718 pw.println(sb.toString());
1719 }
1720 if (origActivity != null) {
1721 pw.print(prefix); pw.print("origActivity=");
1722 pw.println(origActivity.flattenToShortString());
1723 }
1724 if (realActivity != null) {
1725 pw.print(prefix); pw.print("realActivity=");
1726 pw.println(realActivity.flattenToShortString());
1727 }
Dianne Hackborn852975d2014-08-22 17:42:43 -07001728 if (autoRemoveRecents || isPersistable || taskType != 0 || mTaskToReturnTo != 0
1729 || numFullscreen != 0) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001730 pw.print(prefix); pw.print("autoRemoveRecents="); pw.print(autoRemoveRecents);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001731 pw.print(" isPersistable="); pw.print(isPersistable);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001732 pw.print(" numFullscreen="); pw.print(numFullscreen);
1733 pw.print(" taskType="); pw.print(taskType);
1734 pw.print(" mTaskToReturnTo="); pw.println(mTaskToReturnTo);
1735 }
Craig Mautner432f64e2015-05-20 14:59:57 -07001736 if (rootWasReset || mNeverRelinquishIdentity || mReuseTask
1737 || mLockTaskAuth != LOCK_TASK_AUTH_PINNABLE) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001738 pw.print(prefix); pw.print("rootWasReset="); pw.print(rootWasReset);
1739 pw.print(" mNeverRelinquishIdentity="); pw.print(mNeverRelinquishIdentity);
Craig Mautner432f64e2015-05-20 14:59:57 -07001740 pw.print(" mReuseTask="); pw.print(mReuseTask);
1741 pw.print(" mLockTaskAuth="); pw.println(lockTaskAuthToString());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001742 }
Wale Ogunwale18795a22014-12-03 11:38:33 -08001743 if (mAffiliatedTaskId != taskId || mPrevAffiliateTaskId != INVALID_TASK_ID
1744 || mPrevAffiliate != null || mNextAffiliateTaskId != INVALID_TASK_ID
1745 || mNextAffiliate != null) {
Dianne Hackborn852975d2014-08-22 17:42:43 -07001746 pw.print(prefix); pw.print("affiliation="); pw.print(mAffiliatedTaskId);
1747 pw.print(" prevAffiliation="); pw.print(mPrevAffiliateTaskId);
1748 pw.print(" (");
1749 if (mPrevAffiliate == null) {
1750 pw.print("null");
1751 } else {
1752 pw.print(Integer.toHexString(System.identityHashCode(mPrevAffiliate)));
1753 }
1754 pw.print(") nextAffiliation="); pw.print(mNextAffiliateTaskId);
1755 pw.print(" (");
1756 if (mNextAffiliate == null) {
1757 pw.print("null");
1758 } else {
1759 pw.print(Integer.toHexString(System.identityHashCode(mNextAffiliate)));
1760 }
1761 pw.println(")");
1762 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001763 pw.print(prefix); pw.print("Activities="); pw.println(mActivities);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001764 if (!askedCompatMode || !inRecents || !isAvailable) {
1765 pw.print(prefix); pw.print("askedCompatMode="); pw.print(askedCompatMode);
1766 pw.print(" inRecents="); pw.print(inRecents);
1767 pw.print(" isAvailable="); pw.println(isAvailable);
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07001768 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001769 pw.print(prefix); pw.print("lastThumbnail="); pw.print(mLastThumbnail);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001770 pw.print(" lastThumbnailFile="); pw.println(mLastThumbnailFile);
1771 if (lastDescription != null) {
1772 pw.print(prefix); pw.print("lastDescription="); pw.println(lastDescription);
1773 }
Wale Ogunwale069fbe42015-07-29 11:38:01 -07001774 if (stack != null) {
1775 pw.print(prefix); pw.print("stackId="); pw.println(stack.mStackId);
1776 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001777 pw.print(prefix + "hasBeenVisible=" + hasBeenVisible);
1778 pw.print(" mResizeMode=" + ActivityInfo.resizeModeToString(mResizeMode));
1779 pw.print(" isResizeable=" + isResizeable());
Winson Chung36f3f032016-09-08 23:29:43 +00001780 pw.print(" firstActiveTime=" + lastActiveTime);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001781 pw.print(" lastActiveTime=" + lastActiveTime);
1782 pw.println(" (inactive for " + (getInactiveDuration() / 1000) + "s)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001783 }
1784
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001785 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001786 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001787 StringBuilder sb = new StringBuilder(128);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001788 if (stringName != null) {
1789 sb.append(stringName);
1790 sb.append(" U=");
1791 sb.append(userId);
Wale Ogunwale6c5eb1c2015-11-10 07:52:22 -08001792 sb.append(" StackId=");
1793 sb.append(stack != null ? stack.mStackId : INVALID_STACK_ID);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001794 sb.append(" sz=");
1795 sb.append(mActivities.size());
1796 sb.append('}');
1797 return sb.toString();
1798 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001799 sb.append("TaskRecord{");
1800 sb.append(Integer.toHexString(System.identityHashCode(this)));
1801 sb.append(" #");
1802 sb.append(taskId);
1803 if (affinity != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001804 sb.append(" A=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001805 sb.append(affinity);
1806 } else if (intent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001807 sb.append(" I=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001808 sb.append(intent.getComponent().flattenToShortString());
1809 } else if (affinityIntent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001810 sb.append(" aI=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001811 sb.append(affinityIntent.getComponent().flattenToShortString());
1812 } else {
1813 sb.append(" ??");
1814 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001815 stringName = sb.toString();
1816 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001817 }
1818}