blob: 8932e4bbafc4f742c689188b7ccded4656bfbbde [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 Chungffa2ec62014-07-03 15:54:42 -0700153 long firstActiveTime; // First time this task was active.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 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?
Chong Zhangafb776d2016-04-23 14:33:55 -0700157 boolean isLaunching; // Is an activity in this task launching?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 boolean rootWasReset; // True if the intent at the root of the task had
159 // the FLAG_ACTIVITY_RESET_TASK_IF_NEEDED flag.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700160 boolean autoRemoveRecents; // If true, we should automatically remove the task from
161 // recents when activity finishes
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700162 boolean askedCompatMode;// Have asked the user about compat mode for this task.
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700163 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 -0800164
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700165 String stringName; // caching of toString() result.
Dianne Hackborn9da2d402012-03-15 13:43:08 -0700166 int userId; // user for which this task was created
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800167 boolean mUserSetupComplete; // The user set-up is complete as of the last time the task activity
168 // was changed.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800169
170 int numFullscreen; // Number of fullscreen activities.
171
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800172 int mResizeMode; // The resize mode of this task and its activities.
173 // Based on the {@link ActivityInfo#resizeMode} of the root activity.
Jorim Jaggi8202b2a2016-02-03 19:24:31 -0800174 boolean mTemporarilyUnresizable; // Separate flag from mResizeMode used to suppress resize
175 // changes on a temporary basis.
Craig Mautner15df08a2015-04-01 12:17:18 -0700176 int mLockTaskMode; // Which tasklock mode to launch this task in. One of
177 // ActivityManager.LOCK_TASK_LAUNCH_MODE_*
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700178 private boolean mPrivileged; // The root activity application of this task holds
179 // privileged permissions.
180
Craig Mautner15df08a2015-04-01 12:17:18 -0700181 /** Can't be put in lockTask mode. */
182 final static int LOCK_TASK_AUTH_DONT_LOCK = 0;
Benjamin Franz469dd582015-06-09 14:24:36 +0100183 /** Can enter app pinning with user approval. Can never start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700184 final static int LOCK_TASK_AUTH_PINNABLE = 1;
185 /** Starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing lockTask task. */
186 final static int LOCK_TASK_AUTH_LAUNCHABLE = 2;
Benjamin Franz469dd582015-06-09 14:24:36 +0100187 /** Can enter lockTask without user approval. Can start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700188 final static int LOCK_TASK_AUTH_WHITELISTED = 3;
Benjamin Franz469dd582015-06-09 14:24:36 +0100189 /** Priv-app that starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing
190 * lockTask task. */
191 final static int LOCK_TASK_AUTH_LAUNCHABLE_PRIV = 4;
Craig Mautner15df08a2015-04-01 12:17:18 -0700192 int mLockTaskAuth = LOCK_TASK_AUTH_PINNABLE;
193
194 int mLockTaskUid = -1; // The uid of the application that called startLockTask().
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800195
Winson Chung03a9bae2014-05-02 09:56:12 -0700196 // This represents the last resolved activity values for this task
197 // NOTE: This value needs to be persisted with each task
Craig Mautner648f69b2014-09-18 14:16:26 -0700198 TaskDescription lastTaskDescription = new TaskDescription();
Winson Chung03a9bae2014-05-02 09:56:12 -0700199
Craig Mautnerd2328952013-03-05 12:46:26 -0800200 /** List of all activities in the task arranged in history order */
Craig Mautner21d24a22014-04-23 11:45:37 -0700201 final ArrayList<ActivityRecord> mActivities;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800202
Craig Mautnerd2328952013-03-05 12:46:26 -0800203 /** Current stack */
204 ActivityStack stack;
205
Craig Mautner2c1faed2013-07-23 12:56:02 -0700206 /** Takes on same set of values as ActivityRecord.mActivityType */
Craig Mautner21d24a22014-04-23 11:45:37 -0700207 int taskType;
Craig Mautner1602ec22013-05-12 10:24:27 -0700208
Craig Mautner21d24a22014-04-23 11:45:37 -0700209 /** Takes on same value as first root activity */
210 boolean isPersistable = false;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700211 int maxRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700212
213 /** Only used for persistable tasks, otherwise 0. The last time this task was moved. Used for
214 * determining the order when restoring. Sign indicates whether last task movement was to front
215 * (positive) or back (negative). Absolute value indicates time. */
216 long mLastTimeMoved = System.currentTimeMillis();
217
Craig Mautner84984fa2014-06-19 11:19:20 -0700218 /** Indication of what to run next when task exits. Use ActivityRecord types.
219 * ActivityRecord.APPLICATION_ACTIVITY_TYPE indicates to resume the task below this one in the
220 * task stack. */
221 private int mTaskToReturnTo = APPLICATION_ACTIVITY_TYPE;
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700222
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700223 /** If original intent did not allow relinquishing task identity, save that information */
224 boolean mNeverRelinquishIdentity = true;
225
Craig Mautner362449a2014-06-20 14:04:39 -0700226 // Used in the unique case where we are clearing the task in order to reuse it. In that case we
227 // do not want to delete the stack when the task goes empty.
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800228 private boolean mReuseTask = false;
Craig Mautner362449a2014-06-20 14:04:39 -0700229
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700230 private Bitmap mLastThumbnail; // Last thumbnail captured for this item.
Wale Ogunwalebe23ff42014-10-21 16:29:51 -0700231 private final File mLastThumbnailFile; // File containing last thumbnail.
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700232 private final String mFilename;
Winsonc809cbb2015-11-02 12:06:15 -0800233 private TaskThumbnailInfo mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700234 CharSequence lastDescription; // Last description captured for this item.
235
Craig Mautnera228ae92014-07-09 05:44:55 -0700236 int mAffiliatedTaskId; // taskId of parent affiliation or self if no parent.
Winson Chungec396d62014-08-06 17:08:00 -0700237 int mAffiliatedTaskColor; // color of the parent task affiliation.
Craig Mautnera228ae92014-07-09 05:44:55 -0700238 TaskRecord mPrevAffiliate; // previous task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800239 int mPrevAffiliateTaskId = INVALID_TASK_ID; // previous id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700240 TaskRecord mNextAffiliate; // next task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800241 int mNextAffiliateTaskId = INVALID_TASK_ID; // next id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700242
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700243 // For relaunching the task from recents as though it was launched by the original launcher.
244 int mCallingUid;
245 String mCallingPackage;
246
Craig Mautner21d24a22014-04-23 11:45:37 -0700247 final ActivityManagerService mService;
248
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700249 // Whether or not this task covers the entire screen; by default tasks are fullscreen.
250 boolean mFullscreen = true;
251
252 // Bounds of the Task. null for fullscreen tasks.
253 Rect mBounds = null;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -0800254 private final Rect mTmpStableBounds = new Rect();
255 private final Rect mTmpNonDecorBounds = new Rect();
Wale Ogunwale9a08f822016-02-17 19:03:58 -0800256 private final Rect mTmpRect = new Rect();
Jorim Jaggi0a932142016-02-01 17:42:25 -0800257 private final Rect mTmpRect2 = new Rect();
258
Wale Ogunwale706ed792015-08-02 10:29:44 -0700259 // Last non-fullscreen bounds the task was launched in or resized to.
260 // The information is persisted and used to determine the appropriate stack to launch the
261 // task into on restore.
262 Rect mLastNonFullscreenBounds = null;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700263 // Minimal width and height of this task when it's resizeable. -1 means it should use the
264 // default minimal width/height.
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700265 int mMinWidth;
266 int mMinHeight;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700267
Chong Zhangfdcc4d42015-10-14 16:50:12 -0700268 // Ranking (from top) of this task among all visible tasks. (-1 means it's not visible)
269 // This number will be assigned when we evaluate OOM scores for all visible tasks.
270 int mLayerRank = -1;
271
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700272 Configuration mOverrideConfig = Configuration.EMPTY;
273
Craig Mautner21d24a22014-04-23 11:45:37 -0700274 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Dianne Hackborn91097de2014-04-04 18:02:06 -0700275 IVoiceInteractionSession _voiceSession, IVoiceInteractor _voiceInteractor) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700276 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700277 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
278 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800279 userId = UserHandle.getUserId(info.applicationInfo.uid);
280 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800281 mLastThumbnailInfo = new TaskThumbnailInfo();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 taskId = _taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700283 mAffiliatedTaskId = _taskId;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700284 voiceSession = _voiceSession;
285 voiceInteractor = _voiceInteractor;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700286 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800287 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700288 mCallingUid = info.applicationInfo.uid;
289 mCallingPackage = info.packageName;
Martijn Coenend4a69702014-06-30 11:12:17 -0700290 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700291 setMinDimensions(info);
Winson730bf062016-03-31 18:04:56 -0700292 touchActiveTime();
Craig Mautner21d24a22014-04-23 11:45:37 -0700293 }
294
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700295 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Winsonc809cbb2015-11-02 12:06:15 -0800296 TaskDescription _taskDescription, TaskThumbnailInfo thumbnailInfo) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700297 mService = service;
298 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
299 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800300 userId = UserHandle.getUserId(info.applicationInfo.uid);
301 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800302 mLastThumbnailInfo = thumbnailInfo;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700303 taskId = _taskId;
304 mAffiliatedTaskId = _taskId;
305 voiceSession = null;
306 voiceInteractor = null;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700307 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800308 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700309 mCallingUid = info.applicationInfo.uid;
310 mCallingPackage = info.packageName;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700311 setIntent(_intent, info);
Andrii Kulian2e751b82016-03-16 16:59:32 -0700312 setMinDimensions(info);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700313
314 taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
315 isPersistable = true;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700316 // Clamp to [1, max].
317 maxRecents = Math.min(Math.max(info.maxRecents, 1),
318 ActivityManager.getMaxAppRecentsLimitStatic());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700319
320 taskType = APPLICATION_ACTIVITY_TYPE;
321 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700322 lastTaskDescription = _taskDescription;
Winson730bf062016-03-31 18:04:56 -0700323 touchActiveTime();
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700324 }
325
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800326 private TaskRecord(ActivityManagerService service, int _taskId, Intent _intent,
327 Intent _affinityIntent, String _affinity, String _rootAffinity,
328 ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset,
329 boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId,
330 int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities,
331 long _firstActiveTime, long _lastActiveTime, long lastTimeMoved,
332 boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription,
Winsonc809cbb2015-11-02 12:06:15 -0800333 TaskThumbnailInfo lastThumbnailInfo, int taskAffiliation, int prevTaskId,
334 int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage,
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800335 int resizeMode, boolean privileged, boolean _realActivitySuspended,
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700336 boolean userSetupComplete, int minWidth, int minHeight) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700337 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700338 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
339 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800340 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(_userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800341 mLastThumbnailInfo = lastThumbnailInfo;
Craig Mautner21d24a22014-04-23 11:45:37 -0700342 taskId = _taskId;
343 intent = _intent;
344 affinityIntent = _affinityIntent;
345 affinity = _affinity;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800346 rootAffinity = _rootAffinity;
Craig Mautner21d24a22014-04-23 11:45:37 -0700347 voiceSession = null;
348 voiceInteractor = null;
349 realActivity = _realActivity;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800350 realActivitySuspended = _realActivitySuspended;
Craig Mautner21d24a22014-04-23 11:45:37 -0700351 origActivity = _origActivity;
352 rootWasReset = _rootWasReset;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700353 isAvailable = true;
Dianne Hackborn13420f22014-07-18 15:43:56 -0700354 autoRemoveRecents = _autoRemoveRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700355 askedCompatMode = _askedCompatMode;
356 taskType = _taskType;
Craig Mautner84984fa2014-06-19 11:19:20 -0700357 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -0700358 userId = _userId;
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800359 mUserSetupComplete = userSetupComplete;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700360 effectiveUid = _effectiveUid;
Winson Chungffa2ec62014-07-03 15:54:42 -0700361 firstActiveTime = _firstActiveTime;
Winson Chungf1fbd772014-06-24 18:06:58 -0700362 lastActiveTime = _lastActiveTime;
Craig Mautner21d24a22014-04-23 11:45:37 -0700363 lastDescription = _lastDescription;
364 mActivities = activities;
365 mLastTimeMoved = lastTimeMoved;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700366 mNeverRelinquishIdentity = neverRelinquishIdentity;
Winson Chung2cb86c72014-06-25 12:03:30 -0700367 lastTaskDescription = _lastTaskDescription;
Craig Mautnera228ae92014-07-09 05:44:55 -0700368 mAffiliatedTaskId = taskAffiliation;
Winson Chungec396d62014-08-06 17:08:00 -0700369 mAffiliatedTaskColor = taskAffiliationColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700370 mPrevAffiliateTaskId = prevTaskId;
371 mNextAffiliateTaskId = nextTaskId;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700372 mCallingUid = callingUid;
373 mCallingPackage = callingPackage;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800374 mResizeMode = resizeMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700375 mPrivileged = privileged;
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700376 mMinWidth = minWidth;
377 mMinHeight = minHeight;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 }
379
380 void touchActiveTime() {
Craig Mautner494f6bdd2014-07-21 11:17:46 -0700381 lastActiveTime = System.currentTimeMillis();
Winson Chungffa2ec62014-07-03 15:54:42 -0700382 if (firstActiveTime == 0) {
383 firstActiveTime = lastActiveTime;
384 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800385 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700386
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387 long getInactiveDuration() {
Craig Mautner494f6bdd2014-07-21 11:17:46 -0700388 return System.currentTimeMillis() - lastActiveTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700390
Winson Chungfee26772014-08-05 12:21:52 -0700391 /** Sets the original intent, and the calling uid and package. */
392 void setIntent(ActivityRecord r) {
Winson Chungfee26772014-08-05 12:21:52 -0700393 mCallingUid = r.launchedFromUid;
394 mCallingPackage = r.launchedFromPackage;
Craig Mautner15df08a2015-04-01 12:17:18 -0700395 setIntent(r.intent, r.info);
Winson Chungfee26772014-08-05 12:21:52 -0700396 }
397
398 /** Sets the original intent, _without_ updating the calling uid or package. */
399 private void setIntent(Intent _intent, ActivityInfo info) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700400 if (intent == null) {
401 mNeverRelinquishIdentity =
402 (info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0;
403 } else if (mNeverRelinquishIdentity) {
404 return;
405 }
406
407 affinity = info.taskAffinity;
Dianne Hackborn79228822014-09-16 11:11:23 -0700408 if (intent == null) {
409 // If this task already has an intent associated with it, don't set the root
410 // affinity -- we don't want it changing after initially set, but the initially
411 // set value may be null.
412 rootAffinity = affinity;
413 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700414 effectiveUid = info.applicationInfo.uid;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700415 stringName = null;
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800416
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800417 if (info.targetActivity == null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800418 if (_intent != null) {
419 // If this Intent has a selector, we want to clear it for the
420 // recent task since it is not relevant if the user later wants
421 // to re-launch the app.
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700422 if (_intent.getSelector() != null || _intent.getSourceBounds() != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800423 _intent = new Intent(_intent);
424 _intent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700425 _intent.setSourceBounds(null);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800426 }
427 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700428 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Setting Intent of " + this + " to " + _intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800429 intent = _intent;
430 realActivity = _intent != null ? _intent.getComponent() : null;
431 origActivity = null;
432 } else {
433 ComponentName targetComponent = new ComponentName(
434 info.packageName, info.targetActivity);
435 if (_intent != null) {
436 Intent targetIntent = new Intent(_intent);
437 targetIntent.setComponent(targetComponent);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800438 targetIntent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700439 targetIntent.setSourceBounds(null);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700440 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Dianne Hackborn7f96b792012-05-29 18:46:45 -0700441 "Setting Intent of " + this + " to target " + targetIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800442 intent = targetIntent;
443 realActivity = targetComponent;
444 origActivity = _intent.getComponent();
445 } else {
446 intent = null;
447 realActivity = targetComponent;
448 origActivity = new ComponentName(info.packageName, info.name);
449 }
450 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700451
Craig Mautner47b20ba2014-09-17 17:23:44 -0700452 final int intentFlags = intent == null ? 0 : intent.getFlags();
453 if ((intentFlags & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800454 // Once we are set to an Intent with this flag, we count this
455 // task as having a true root activity.
456 rootWasReset = true;
457 }
Dianne Hackborn09233282014-04-30 11:33:59 -0700458 userId = UserHandle.getUserId(info.applicationInfo.uid);
Suprabh Shukla7745c142016-03-07 18:21:10 -0800459 mUserSetupComplete = Settings.Secure.getIntForUser(mService.mContext.getContentResolver(),
460 USER_SETUP_COMPLETE, 0, userId) != 0;
Craig Mautner41db4a72014-05-07 17:20:56 -0700461 if ((info.flags & ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS) != 0) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700462 // If the activity itself has requested auto-remove, then just always do it.
463 autoRemoveRecents = true;
Wale Ogunwale843bfb92015-03-27 11:06:48 -0700464 } else if ((intentFlags & (FLAG_ACTIVITY_NEW_DOCUMENT | FLAG_ACTIVITY_RETAIN_IN_RECENTS))
465 == FLAG_ACTIVITY_NEW_DOCUMENT) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700466 // If the caller has not asked for the document to be retained, then we may
467 // want to turn on auto-remove, depending on whether the target has set its
468 // own document launch mode.
469 if (info.documentLaunchMode != ActivityInfo.DOCUMENT_LAUNCH_NONE) {
470 autoRemoveRecents = false;
471 } else {
472 autoRemoveRecents = true;
473 }
474 } else {
475 autoRemoveRecents = false;
Craig Mautner41db4a72014-05-07 17:20:56 -0700476 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800477 mResizeMode = info.resizeMode;
Craig Mautner15df08a2015-04-01 12:17:18 -0700478 mLockTaskMode = info.lockTaskLaunchMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700479 mPrivileged = (info.applicationInfo.privateFlags & PRIVATE_FLAG_PRIVILEGED) != 0;
Craig Mautner15df08a2015-04-01 12:17:18 -0700480 setLockTaskAuth();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800481 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800482
Andrii Kulian2e751b82016-03-16 16:59:32 -0700483 /** Sets the original minimal width and height. */
484 private void setMinDimensions(ActivityInfo info) {
485 if (info != null && info.windowLayout != null) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700486 mMinWidth = info.windowLayout.minWidth;
487 mMinHeight = info.windowLayout.minHeight;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700488 } else {
Andrii Kulianf66a83d2016-05-17 12:17:44 -0700489 mMinWidth = INVALID_MIN_SIZE;
490 mMinHeight = INVALID_MIN_SIZE;
Andrii Kulian2e751b82016-03-16 16:59:32 -0700491 }
492 }
493
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800494 /**
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700495 * Return true if the input activity has the same intent filter as the intent this task
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800496 * record is based on (normally the root activity intent).
497 */
Andrii Kulian206b9fa2016-06-02 13:18:01 -0700498 boolean isSameIntentFilter(ActivityRecord r) {
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800499 final Intent intent = new Intent(r.intent);
500 // Correct the activity intent for aliasing. The task record intent will always be based on
501 // the real activity that will be launched not the alias, so we need to use an intent with
502 // the component name pointing to the real activity not the alias in the activity record.
503 intent.setComponent(r.realActivity);
504 return this.intent.filterEquals(intent);
505 }
506
Craig Mautner84984fa2014-06-19 11:19:20 -0700507 void setTaskToReturnTo(int taskToReturnTo) {
Wale Ogunwale673cbd22016-01-30 18:30:55 -0800508 mTaskToReturnTo = (taskToReturnTo == RECENTS_ACTIVITY_TYPE)
509 ? HOME_ACTIVITY_TYPE : taskToReturnTo;
Craig Mautner84984fa2014-06-19 11:19:20 -0700510 }
511
512 int getTaskToReturnTo() {
513 return mTaskToReturnTo;
514 }
515
Craig Mautnera228ae92014-07-09 05:44:55 -0700516 void setPrevAffiliate(TaskRecord prevAffiliate) {
517 mPrevAffiliate = prevAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800518 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700519 }
520
521 void setNextAffiliate(TaskRecord nextAffiliate) {
522 mNextAffiliate = nextAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800523 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700524 }
525
526 // Close up recents linked list.
527 void closeRecentsChain() {
528 if (mPrevAffiliate != null) {
529 mPrevAffiliate.setNextAffiliate(mNextAffiliate);
530 }
531 if (mNextAffiliate != null) {
532 mNextAffiliate.setPrevAffiliate(mPrevAffiliate);
533 }
534 setPrevAffiliate(null);
535 setNextAffiliate(null);
536 }
537
Winson Chung740c3ac2014-11-12 16:14:38 -0800538 void removedFromRecents() {
Dianne Hackborn852975d2014-08-22 17:42:43 -0700539 disposeThumbnail();
540 closeRecentsChain();
541 if (inRecents) {
542 inRecents = false;
Winson Chung740c3ac2014-11-12 16:14:38 -0800543 mService.notifyTaskPersisterLocked(this, false);
Dianne Hackborn852975d2014-08-22 17:42:43 -0700544 }
545 }
546
Craig Mautnera228ae92014-07-09 05:44:55 -0700547 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
548 closeRecentsChain();
549 mAffiliatedTaskId = taskToAffiliateWith.mAffiliatedTaskId;
Winson Chungec396d62014-08-06 17:08:00 -0700550 mAffiliatedTaskColor = taskToAffiliateWith.mAffiliatedTaskColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700551 // Find the end
552 while (taskToAffiliateWith.mNextAffiliate != null) {
553 final TaskRecord nextRecents = taskToAffiliateWith.mNextAffiliate;
554 if (nextRecents.mAffiliatedTaskId != mAffiliatedTaskId) {
555 Slog.e(TAG, "setTaskToAffiliateWith: nextRecents=" + nextRecents + " affilTaskId="
556 + nextRecents.mAffiliatedTaskId + " should be " + mAffiliatedTaskId);
557 if (nextRecents.mPrevAffiliate == taskToAffiliateWith) {
558 nextRecents.setPrevAffiliate(null);
559 }
560 taskToAffiliateWith.setNextAffiliate(null);
561 break;
562 }
563 taskToAffiliateWith = nextRecents;
564 }
565 taskToAffiliateWith.setNextAffiliate(this);
566 setPrevAffiliate(taskToAffiliateWith);
567 setNextAffiliate(null);
568 }
569
Winson Chung096f36b2014-08-20 15:39:01 -0700570 /**
Winsonc809cbb2015-11-02 12:06:15 -0800571 * Sets the last thumbnail with the current task bounds and the system orientation.
Winson Chung096f36b2014-08-20 15:39:01 -0700572 * @return whether the thumbnail was set
573 */
Winsonc809cbb2015-11-02 12:06:15 -0800574 boolean setLastThumbnailLocked(Bitmap thumbnail) {
575 final Configuration serviceConfig = mService.mConfiguration;
576 int taskWidth = 0;
577 int taskHeight = 0;
578 if (mBounds != null) {
579 // Non-fullscreen tasks
580 taskWidth = mBounds.width();
581 taskHeight = mBounds.height();
582 } else if (stack != null) {
583 // Fullscreen tasks
584 final Point displaySize = new Point();
585 stack.getDisplaySize(displaySize);
586 taskWidth = displaySize.x;
587 taskHeight = displaySize.y;
588 } else {
589 Slog.e(TAG, "setLastThumbnailLocked() called on Task without stack");
590 }
591 return setLastThumbnailLocked(thumbnail, taskWidth, taskHeight, serviceConfig.orientation);
592 }
593
594 /**
595 * Sets the last thumbnail with the current task bounds.
596 * @return whether the thumbnail was set
597 */
598 private boolean setLastThumbnailLocked(Bitmap thumbnail, int taskWidth, int taskHeight,
599 int screenOrientation) {
Winson Chung096f36b2014-08-20 15:39:01 -0700600 if (mLastThumbnail != thumbnail) {
601 mLastThumbnail = thumbnail;
Winsonc809cbb2015-11-02 12:06:15 -0800602 mLastThumbnailInfo.taskWidth = taskWidth;
603 mLastThumbnailInfo.taskHeight = taskHeight;
604 mLastThumbnailInfo.screenOrientation = screenOrientation;
Winson Chung096f36b2014-08-20 15:39:01 -0700605 if (thumbnail == null) {
606 if (mLastThumbnailFile != null) {
607 mLastThumbnailFile.delete();
608 }
609 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800610 mService.mRecentTasks.saveImage(thumbnail, mLastThumbnailFile.getAbsolutePath());
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700611 }
Winson Chung096f36b2014-08-20 15:39:01 -0700612 return true;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700613 }
Winson Chung096f36b2014-08-20 15:39:01 -0700614 return false;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700615 }
616
617 void getLastThumbnail(TaskThumbnail thumbs) {
618 thumbs.mainThumbnail = mLastThumbnail;
Winsonc809cbb2015-11-02 12:06:15 -0800619 thumbs.thumbnailInfo = mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700620 thumbs.thumbnailFileDescriptor = null;
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700621 if (mLastThumbnail == null) {
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800622 thumbs.mainThumbnail = mService.mRecentTasks.getImageFromWriteQueue(
Suprabh Shukla23593142015-11-03 17:31:15 -0800623 mLastThumbnailFile.getAbsolutePath());
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700624 }
Winson Chung096f36b2014-08-20 15:39:01 -0700625 // Only load the thumbnail file if we don't have a thumbnail
626 if (thumbs.mainThumbnail == null && mLastThumbnailFile.exists()) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700627 try {
628 thumbs.thumbnailFileDescriptor = ParcelFileDescriptor.open(mLastThumbnailFile,
629 ParcelFileDescriptor.MODE_READ_ONLY);
630 } catch (IOException e) {
Dianne Hackborn9844d292013-10-04 16:44:22 -0700631 }
632 }
633 }
634
Winsonc809cbb2015-11-02 12:06:15 -0800635 /**
636 * Removes in-memory thumbnail data when the max number of in-memory task thumbnails is reached.
637 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700638 void freeLastThumbnail() {
639 mLastThumbnail = null;
640 }
641
Winsonc809cbb2015-11-02 12:06:15 -0800642 /**
643 * Removes all associated thumbnail data when a task is removed or pruned from recents.
644 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700645 void disposeThumbnail() {
Winsonc6a2da02015-11-11 18:11:59 -0800646 mLastThumbnailInfo.reset();
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700647 mLastThumbnail = null;
648 lastDescription = null;
649 }
650
Winson Chung1147c402014-05-14 11:05:00 -0700651 /** Returns the intent for the root activity for this task */
652 Intent getBaseIntent() {
653 return intent != null ? intent : affinityIntent;
654 }
655
Winson Chung3b3f4642014-04-22 10:08:18 -0700656 /** Returns the first non-finishing activity from the root. */
657 ActivityRecord getRootActivity() {
658 for (int i = 0; i < mActivities.size(); i++) {
659 final ActivityRecord r = mActivities.get(i);
660 if (r.finishing) {
661 continue;
662 }
663 return r;
664 }
665 return null;
666 }
667
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800668 ActivityRecord getTopActivity() {
669 for (int i = mActivities.size() - 1; i >= 0; --i) {
670 final ActivityRecord r = mActivities.get(i);
671 if (r.finishing) {
672 continue;
673 }
674 return r;
675 }
676 return null;
677 }
678
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700679 ActivityRecord topRunningActivityLocked() {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700680 if (stack != null) {
681 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
682 ActivityRecord r = mActivities.get(activityNdx);
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700683 if (!r.finishing && stack.okToShowLocked(r)) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700684 return r;
685 }
Craig Mautner6b74cb52013-09-27 17:02:21 -0700686 }
687 }
688 return null;
689 }
690
Wale Ogunwale3b232392016-05-13 15:37:13 -0700691 ActivityRecord topRunningActivityWithStartingWindowLocked() {
692 if (stack != null) {
693 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
694 ActivityRecord r = mActivities.get(activityNdx);
695 if (r.mStartingWindowState != STARTING_WINDOW_SHOWN
696 || r.finishing || !stack.okToShowLocked(r)) {
697 continue;
698 }
699 return r;
700 }
701 }
702 return null;
703 }
704
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800705 void setFrontOfTask() {
706 setFrontOfTask(null);
707 }
708
Craig Mautner3b475fe2013-12-16 15:58:31 -0800709 /** Call after activity movement or finish to make sure that frontOfTask is set correctly */
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800710 void setFrontOfTask(ActivityRecord newTop) {
711 // If a top candidate is suggested by the caller, go ahead and use it and mark all others
712 // as not front. This is needed in situations where the current front activity in the
713 // task isn't finished yet and we want to set the front to the activity moved to the front
714 // of the task.
715 boolean foundFront = newTop != null ? true : false;
716
Craig Mautner3b475fe2013-12-16 15:58:31 -0800717 final int numActivities = mActivities.size();
Craig Mautner704e40b2013-12-18 16:43:51 -0800718 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
Craig Mautner3b475fe2013-12-16 15:58:31 -0800719 final ActivityRecord r = mActivities.get(activityNdx);
720 if (foundFront || r.finishing) {
721 r.frontOfTask = false;
722 } else {
723 r.frontOfTask = true;
724 // Set frontOfTask false for every following activity.
725 foundFront = true;
726 }
727 }
Craig Mautner9587ee02014-06-23 15:00:10 +0000728 if (!foundFront && numActivities > 0) {
729 // All activities of this task are finishing. As we ought to have a frontOfTask
730 // activity, make the bottom activity front.
731 mActivities.get(0).frontOfTask = true;
732 }
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800733 if (newTop != null) {
734 newTop.frontOfTask = true;
735 }
Craig Mautner3b475fe2013-12-16 15:58:31 -0800736 }
737
Craig Mautnerde4ef022013-04-07 19:01:33 -0700738 /**
Craig Mautner3b475fe2013-12-16 15:58:31 -0800739 * Reorder the history stack so that the passed activity is brought to the front.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700740 */
741 final void moveActivityToFrontLocked(ActivityRecord newTop) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700742 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
743 "Removing and adding activity " + newTop
744 + " to stack at top callers=" + Debug.getCallers(4));
Craig Mautnerde4ef022013-04-07 19:01:33 -0700745
Craig Mautnerde4ef022013-04-07 19:01:33 -0700746 mActivities.remove(newTop);
747 mActivities.add(newTop);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700748 updateEffectiveIntent();
Craig Mautner3b475fe2013-12-16 15:58:31 -0800749
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800750 setFrontOfTask(newTop);
Craig Mautnerde4ef022013-04-07 19:01:33 -0700751 }
752
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800753 void addActivityAtBottom(ActivityRecord r) {
Craig Mautner77878772013-03-04 19:46:24 -0800754 addActivityAtIndex(0, r);
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800755 }
756
757 void addActivityToTop(ActivityRecord r) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700758 addActivityAtIndex(mActivities.size(), r);
759 }
760
761 void addActivityAtIndex(int index, ActivityRecord r) {
Craig Mautner6170f732013-04-02 13:05:23 -0700762 // 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 -0800763 if (!mActivities.remove(r) && r.fullscreen) {
764 // Was not previously in list.
765 numFullscreen++;
766 }
Craig Mautner2c1faed2013-07-23 12:56:02 -0700767 // Only set this based on the first activity
768 if (mActivities.isEmpty()) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700769 taskType = r.mActivityType;
770 isPersistable = r.isPersistable();
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700771 mCallingUid = r.launchedFromUid;
772 mCallingPackage = r.launchedFromPackage;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700773 // Clamp to [1, max].
774 maxRecents = Math.min(Math.max(r.info.maxRecents, 1),
775 ActivityManager.getMaxAppRecentsLimitStatic());
Craig Mautner2c1faed2013-07-23 12:56:02 -0700776 } else {
777 // Otherwise make all added activities match this one.
Craig Mautner21d24a22014-04-23 11:45:37 -0700778 r.mActivityType = taskType;
Craig Mautner78733002013-06-10 13:54:49 -0700779 }
Wale Ogunwale3b232392016-05-13 15:37:13 -0700780
781 final int size = mActivities.size();
782
783 if (index == size && size > 0) {
784 final ActivityRecord top = mActivities.get(size - 1);
785 if (top.mTaskOverlay) {
786 // Place below the task overlay activity since the overlay activity should always
787 // be on top.
788 index--;
789 }
790 }
791
Craig Mautner77878772013-03-04 19:46:24 -0800792 mActivities.add(index, r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700793 updateEffectiveIntent();
Craig Mautner21d24a22014-04-23 11:45:37 -0700794 if (r.isPersistable()) {
795 mService.notifyTaskPersisterLocked(this, false);
796 }
Craig Mautner77878772013-03-04 19:46:24 -0800797 }
798
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800799 /** @return true if this was the last activity in the task */
800 boolean removeActivity(ActivityRecord r) {
801 if (mActivities.remove(r) && r.fullscreen) {
802 // Was previously in list.
803 numFullscreen--;
804 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700805 if (r.isPersistable()) {
806 mService.notifyTaskPersisterLocked(this, false);
807 }
Wale Ogunwale89182d52016-03-11 10:38:36 -0800808
809 if (stack != null && stack.mStackId == PINNED_STACK_ID) {
810 // We normally notify listeners of task stack changes on pause, however pinned stack
811 // activities are normally in the paused state so no notification will be sent there
812 // before the activity is removed. We send it here so instead.
813 mService.notifyTaskStackChangedLocked();
814 }
815
Craig Mautner41326202014-06-20 14:38:21 -0700816 if (mActivities.isEmpty()) {
Craig Mautner5afcd4d2014-06-21 18:11:33 -0700817 return !mReuseTask;
Craig Mautner41326202014-06-20 14:38:21 -0700818 }
819 updateEffectiveIntent();
820 return false;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800821 }
822
Craig Mautner41db4a72014-05-07 17:20:56 -0700823 boolean autoRemoveFromRecents() {
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700824 // We will automatically remove the task either if it has explicitly asked for
825 // this, or it is empty and has never contained an activity that got shown to
826 // the user.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700827 return autoRemoveRecents || (mActivities.isEmpty() && !hasBeenVisible);
Craig Mautner41db4a72014-05-07 17:20:56 -0700828 }
829
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700830 /**
831 * Completely remove all activities associated with an existing
832 * task starting at a specified index.
833 */
834 final void performClearTaskAtIndexLocked(int activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700835 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700836 for ( ; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700837 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700838 if (r.finishing) {
839 continue;
840 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700841 if (stack == null) {
842 // Task was restored from persistent storage.
843 r.takeFromHistory();
844 mActivities.remove(activityNdx);
845 --activityNdx;
846 --numActivities;
Todd Kennedy539db512014-12-15 09:57:55 -0800847 } else if (stack.finishActivityLocked(
848 r, Activity.RESULT_CANCELED, null, "clear-task-index", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700849 --activityNdx;
850 --numActivities;
851 }
852 }
853 }
854
855 /**
856 * Completely remove all activities associated with an existing task.
857 */
858 final void performClearTaskLocked() {
Craig Mautner362449a2014-06-20 14:04:39 -0700859 mReuseTask = true;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700860 performClearTaskAtIndexLocked(0);
Craig Mautner362449a2014-06-20 14:04:39 -0700861 mReuseTask = false;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700862 }
863
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800864 ActivityRecord performClearTaskForReuseLocked(ActivityRecord newR, int launchFlags) {
865 mReuseTask = true;
866 final ActivityRecord result = performClearTaskLocked(newR, launchFlags);
867 mReuseTask = false;
868 return result;
869 }
870
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700871 /**
872 * Perform clear operation as requested by
873 * {@link Intent#FLAG_ACTIVITY_CLEAR_TOP}: search from the top of the
874 * stack to the given task, then look for
875 * an instance of that activity in the stack and, if found, finish all
876 * activities on top of it and return the instance.
877 *
878 * @param newR Description of the new activity being started.
879 * @return Returns the old activity that should be continued to be used,
880 * or null if none was found.
881 */
882 final ActivityRecord performClearTaskLocked(ActivityRecord newR, int launchFlags) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700883 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700884 for (int activityNdx = numActivities - 1; activityNdx >= 0; --activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700885 ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700886 if (r.finishing) {
887 continue;
888 }
889 if (r.realActivity.equals(newR.realActivity)) {
890 // Here it is! Now finish everything in front...
Craig Mautner1602ec22013-05-12 10:24:27 -0700891 final ActivityRecord ret = r;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700892
893 for (++activityNdx; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700894 r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700895 if (r.finishing) {
896 continue;
897 }
898 ActivityOptions opts = r.takeOptionsLocked();
899 if (opts != null) {
900 ret.updateOptionsLocked(opts);
901 }
Wale Ogunwale7d701172015-03-11 15:36:30 -0700902 if (stack != null && stack.finishActivityLocked(
Todd Kennedy539db512014-12-15 09:57:55 -0800903 r, Activity.RESULT_CANCELED, null, "clear-task-stack", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700904 --activityNdx;
905 --numActivities;
906 }
907 }
908
909 // Finally, if this is a normal launch mode (that is, not
910 // expecting onNewIntent()), then we will finish the current
911 // instance of the activity so a new fresh one can be started.
912 if (ret.launchMode == ActivityInfo.LAUNCH_MULTIPLE
913 && (launchFlags & Intent.FLAG_ACTIVITY_SINGLE_TOP) == 0) {
914 if (!ret.finishing) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700915 if (stack != null) {
916 stack.finishActivityLocked(
917 ret, Activity.RESULT_CANCELED, null, "clear-task-top", false);
918 }
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700919 return null;
920 }
921 }
922
923 return ret;
924 }
925 }
926
927 return null;
928 }
929
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700930 public TaskThumbnail getTaskThumbnailLocked() {
Craig Mautner21d24a22014-04-23 11:45:37 -0700931 if (stack != null) {
932 final ActivityRecord resumedActivity = stack.mResumedActivity;
933 if (resumedActivity != null && resumedActivity.task == this) {
Winson8b1871d2015-11-20 09:56:20 -0800934 final Bitmap thumbnail = stack.screenshotActivitiesLocked(resumedActivity);
Winsonc809cbb2015-11-02 12:06:15 -0800935 setLastThumbnailLocked(thumbnail);
Craig Mautner21d24a22014-04-23 11:45:37 -0700936 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700937 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700938 final TaskThumbnail taskThumbnail = new TaskThumbnail();
939 getLastThumbnail(taskThumbnail);
940 return taskThumbnail;
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700941 }
942
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700943 public void removeTaskActivitiesLocked() {
944 // Just remove the entire task.
945 performClearTaskAtIndexLocked(0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700946 }
947
Craig Mautner432f64e2015-05-20 14:59:57 -0700948 String lockTaskAuthToString() {
949 switch (mLockTaskAuth) {
950 case LOCK_TASK_AUTH_DONT_LOCK: return "LOCK_TASK_AUTH_DONT_LOCK";
951 case LOCK_TASK_AUTH_PINNABLE: return "LOCK_TASK_AUTH_PINNABLE";
952 case LOCK_TASK_AUTH_LAUNCHABLE: return "LOCK_TASK_AUTH_LAUNCHABLE";
953 case LOCK_TASK_AUTH_WHITELISTED: return "LOCK_TASK_AUTH_WHITELISTED";
Benjamin Franz469dd582015-06-09 14:24:36 +0100954 case LOCK_TASK_AUTH_LAUNCHABLE_PRIV: return "LOCK_TASK_AUTH_LAUNCHABLE_PRIV";
Craig Mautner432f64e2015-05-20 14:59:57 -0700955 default: return "unknown=" + mLockTaskAuth;
956 }
957 }
958
Craig Mautner15df08a2015-04-01 12:17:18 -0700959 void setLockTaskAuth() {
Benjamin Franz469dd582015-06-09 14:24:36 +0100960 if (!mPrivileged &&
961 (mLockTaskMode == LOCK_TASK_LAUNCH_MODE_ALWAYS ||
962 mLockTaskMode == LOCK_TASK_LAUNCH_MODE_NEVER)) {
963 // Non-priv apps are not allowed to use always or never, fall back to default
964 mLockTaskMode = LOCK_TASK_LAUNCH_MODE_DEFAULT;
965 }
Craig Mautner15df08a2015-04-01 12:17:18 -0700966 switch (mLockTaskMode) {
967 case LOCK_TASK_LAUNCH_MODE_DEFAULT:
968 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
969 LOCK_TASK_AUTH_WHITELISTED : LOCK_TASK_AUTH_PINNABLE;
970 break;
971
972 case LOCK_TASK_LAUNCH_MODE_NEVER:
Benjamin Franz469dd582015-06-09 14:24:36 +0100973 mLockTaskAuth = LOCK_TASK_AUTH_DONT_LOCK;
Craig Mautner15df08a2015-04-01 12:17:18 -0700974 break;
975
976 case LOCK_TASK_LAUNCH_MODE_ALWAYS:
Benjamin Franz469dd582015-06-09 14:24:36 +0100977 mLockTaskAuth = LOCK_TASK_AUTH_LAUNCHABLE_PRIV;
Craig Mautner15df08a2015-04-01 12:17:18 -0700978 break;
979
980 case LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED:
981 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
982 LOCK_TASK_AUTH_LAUNCHABLE : LOCK_TASK_AUTH_PINNABLE;
983 break;
984 }
Craig Mautner432f64e2015-05-20 14:59:57 -0700985 if (DEBUG_LOCKTASK) Slog.d(TAG_LOCKTASK, "setLockTaskAuth: task=" + this +
986 " mLockTaskAuth=" + lockTaskAuthToString());
Craig Mautner15df08a2015-04-01 12:17:18 -0700987 }
988
989 boolean isLockTaskWhitelistedLocked() {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +0100990 String pkg = (realActivity != null) ? realActivity.getPackageName() : null;
991 if (pkg == null) {
Craig Mautner15df08a2015-04-01 12:17:18 -0700992 return false;
993 }
994 String[] packages = mService.mLockTaskPackages.get(userId);
995 if (packages == null) {
996 return false;
997 }
998 for (int i = packages.length - 1; i >= 0; --i) {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +0100999 if (pkg.equals(packages[i])) {
Craig Mautner15df08a2015-04-01 12:17:18 -07001000 return true;
1001 }
1002 }
1003 return false;
1004 }
Wale Ogunwale74e26592016-02-05 11:48:37 -08001005
Craig Mautnera82aa092013-09-13 15:34:08 -07001006 boolean isHomeTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -07001007 return taskType == HOME_ACTIVITY_TYPE;
Craig Mautnera82aa092013-09-13 15:34:08 -07001008 }
1009
Wale Ogunwale74e26592016-02-05 11:48:37 -08001010 boolean isRecentsTask() {
1011 return taskType == RECENTS_ACTIVITY_TYPE;
1012 }
1013
Craig Mautner86d67a42013-05-14 10:34:38 -07001014 boolean isApplicationTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -07001015 return taskType == APPLICATION_ACTIVITY_TYPE;
1016 }
1017
1018 boolean isOverHomeStack() {
1019 return mTaskToReturnTo == HOME_ACTIVITY_TYPE || mTaskToReturnTo == RECENTS_ACTIVITY_TYPE;
Craig Mautner1602ec22013-05-12 10:24:27 -07001020 }
1021
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001022 boolean isResizeable() {
1023 return !isHomeTask() && (mService.mForceResizableActivities
Jorim Jaggi8202b2a2016-02-03 19:24:31 -08001024 || ActivityInfo.isResizeableMode(mResizeMode)) && !mTemporarilyUnresizable;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001025 }
1026
1027 boolean inCropWindowsResizeMode() {
1028 return !isResizeable() && mResizeMode == RESIZE_MODE_CROP_WINDOWS;
1029 }
1030
Wale Ogunwale513346d2016-01-27 10:55:01 -08001031 boolean canGoInDockedStack() {
1032 return isResizeable() || inCropWindowsResizeMode();
1033 }
1034
Craig Mautner525f3d92013-05-07 14:01:50 -07001035 /**
1036 * Find the activity in the history stack within the given task. Returns
1037 * the index within the history at which it's found, or < 0 if not found.
1038 */
1039 final ActivityRecord findActivityInHistoryLocked(ActivityRecord r) {
1040 final ComponentName realActivity = r.realActivity;
1041 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
1042 ActivityRecord candidate = mActivities.get(activityNdx);
1043 if (candidate.finishing) {
1044 continue;
1045 }
1046 if (candidate.realActivity.equals(realActivity)) {
1047 return candidate;
1048 }
1049 }
1050 return null;
1051 }
1052
Winson Chunga449dc02014-05-16 11:15:04 -07001053 /** Updates the last task description values. */
1054 void updateTaskDescription() {
1055 // Traverse upwards looking for any break between main task activities and
1056 // utility activities.
1057 int activityNdx;
1058 final int numActivities = mActivities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001059 final boolean relinquish = numActivities == 0 ? false :
1060 (mActivities.get(0).info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) != 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001061 for (activityNdx = Math.min(numActivities, 1); activityNdx < numActivities;
Craig Mautner21d24a22014-04-23 11:45:37 -07001062 ++activityNdx) {
Winson Chunga449dc02014-05-16 11:15:04 -07001063 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001064 if (relinquish && (r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
1065 // This will be the top activity for determining taskDescription. Pre-inc to
1066 // overcome initial decrement below.
1067 ++activityNdx;
1068 break;
1069 }
Winson Chunga449dc02014-05-16 11:15:04 -07001070 if (r.intent != null &&
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001071 (r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Winson Chunga449dc02014-05-16 11:15:04 -07001072 break;
1073 }
1074 }
1075 if (activityNdx > 0) {
1076 // Traverse downwards starting below break looking for set label, icon.
1077 // Note that if there are activities in the task but none of them set the
1078 // recent activity values, then we do not fall back to the last set
1079 // values in the TaskRecord.
1080 String label = null;
Craig Mautner648f69b2014-09-18 14:16:26 -07001081 String iconFilename = null;
Winson Chunga449dc02014-05-16 11:15:04 -07001082 int colorPrimary = 0;
Winson Chung1af8eda2016-02-05 17:55:56 +00001083 int colorBackground = 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001084 for (--activityNdx; activityNdx >= 0; --activityNdx) {
1085 final ActivityRecord r = mActivities.get(activityNdx);
1086 if (r.taskDescription != null) {
1087 if (label == null) {
1088 label = r.taskDescription.getLabel();
1089 }
Craig Mautner648f69b2014-09-18 14:16:26 -07001090 if (iconFilename == null) {
1091 iconFilename = r.taskDescription.getIconFilename();
Winson Chunga449dc02014-05-16 11:15:04 -07001092 }
1093 if (colorPrimary == 0) {
1094 colorPrimary = r.taskDescription.getPrimaryColor();
Winson Chunga449dc02014-05-16 11:15:04 -07001095 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001096 if (colorBackground == 0) {
1097 colorBackground = r.taskDescription.getBackgroundColor();
1098 }
Winson Chunga449dc02014-05-16 11:15:04 -07001099 }
1100 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001101 lastTaskDescription = new TaskDescription(label, null, iconFilename, colorPrimary,
1102 colorBackground);
Winson Chungec396d62014-08-06 17:08:00 -07001103 // Update the task affiliation color if we are the parent of the group
1104 if (taskId == mAffiliatedTaskId) {
1105 mAffiliatedTaskColor = lastTaskDescription.getPrimaryColor();
1106 }
Winson Chunga449dc02014-05-16 11:15:04 -07001107 }
1108 }
1109
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001110 int findEffectiveRootIndex() {
Craig Mautner4767f4b2014-09-18 15:38:33 -07001111 int effectiveNdx = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001112 final int topActivityNdx = mActivities.size() - 1;
Dianne Hackborn39569af2014-09-23 10:56:58 -07001113 for (int activityNdx = 0; activityNdx <= topActivityNdx; ++activityNdx) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001114 final ActivityRecord r = mActivities.get(activityNdx);
1115 if (r.finishing) {
1116 continue;
1117 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001118 effectiveNdx = activityNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001119 if ((r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
1120 break;
1121 }
1122 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001123 return effectiveNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001124 }
1125
1126 void updateEffectiveIntent() {
1127 final int effectiveRootIndex = findEffectiveRootIndex();
1128 final ActivityRecord r = mActivities.get(effectiveRootIndex);
Winson Chungfee26772014-08-05 12:21:52 -07001129 setIntent(r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001130 }
1131
Craig Mautner21d24a22014-04-23 11:45:37 -07001132 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001133 if (DEBUG_RECENTS) Slog.i(TAG_RECENTS, "Saving task=" + this);
Craig Mautner21d24a22014-04-23 11:45:37 -07001134
1135 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
1136 if (realActivity != null) {
1137 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
1138 }
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001139 out.attribute(null, ATTR_REALACTIVITY_SUSPENDED, String.valueOf(realActivitySuspended));
Craig Mautner21d24a22014-04-23 11:45:37 -07001140 if (origActivity != null) {
1141 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
1142 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001143 // Write affinity, and root affinity if it is different from affinity.
1144 // We use the special string "@" for a null root affinity, so we can identify
1145 // later whether we were given a root affinity or should just make it the
1146 // same as the affinity.
Craig Mautner21d24a22014-04-23 11:45:37 -07001147 if (affinity != null) {
1148 out.attribute(null, ATTR_AFFINITY, affinity);
Dianne Hackborn79228822014-09-16 11:11:23 -07001149 if (!affinity.equals(rootAffinity)) {
1150 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
1151 }
1152 } else if (rootAffinity != null) {
1153 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
Craig Mautner21d24a22014-04-23 11:45:37 -07001154 }
1155 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
Dianne Hackborn13420f22014-07-18 15:43:56 -07001156 out.attribute(null, ATTR_AUTOREMOVERECENTS, String.valueOf(autoRemoveRecents));
Craig Mautner21d24a22014-04-23 11:45:37 -07001157 out.attribute(null, ATTR_ASKEDCOMPATMODE, String.valueOf(askedCompatMode));
1158 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001159 out.attribute(null, ATTR_USER_SETUP_COMPLETE, String.valueOf(mUserSetupComplete));
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001160 out.attribute(null, ATTR_EFFECTIVE_UID, String.valueOf(effectiveUid));
Craig Mautner21d24a22014-04-23 11:45:37 -07001161 out.attribute(null, ATTR_TASKTYPE, String.valueOf(taskType));
Winson Chungffa2ec62014-07-03 15:54:42 -07001162 out.attribute(null, ATTR_FIRSTACTIVETIME, String.valueOf(firstActiveTime));
Winson Chungf1fbd772014-06-24 18:06:58 -07001163 out.attribute(null, ATTR_LASTACTIVETIME, String.valueOf(lastActiveTime));
Craig Mautner21d24a22014-04-23 11:45:37 -07001164 out.attribute(null, ATTR_LASTTIMEMOVED, String.valueOf(mLastTimeMoved));
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001165 out.attribute(null, ATTR_NEVERRELINQUISH, String.valueOf(mNeverRelinquishIdentity));
Craig Mautner21d24a22014-04-23 11:45:37 -07001166 if (lastDescription != null) {
1167 out.attribute(null, ATTR_LASTDESCRIPTION, lastDescription.toString());
1168 }
Winson Chung2cb86c72014-06-25 12:03:30 -07001169 if (lastTaskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001170 lastTaskDescription.saveToXml(out);
Winson Chung2cb86c72014-06-25 12:03:30 -07001171 }
Winsonc809cbb2015-11-02 12:06:15 -08001172 mLastThumbnailInfo.saveToXml(out);
Winson Chungec396d62014-08-06 17:08:00 -07001173 out.attribute(null, ATTR_TASK_AFFILIATION_COLOR, String.valueOf(mAffiliatedTaskColor));
Craig Mautnera228ae92014-07-09 05:44:55 -07001174 out.attribute(null, ATTR_TASK_AFFILIATION, String.valueOf(mAffiliatedTaskId));
1175 out.attribute(null, ATTR_PREV_AFFILIATION, String.valueOf(mPrevAffiliateTaskId));
1176 out.attribute(null, ATTR_NEXT_AFFILIATION, String.valueOf(mNextAffiliateTaskId));
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001177 out.attribute(null, ATTR_CALLING_UID, String.valueOf(mCallingUid));
1178 out.attribute(null, ATTR_CALLING_PACKAGE, mCallingPackage == null ? "" : mCallingPackage);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001179 out.attribute(null, ATTR_RESIZE_MODE, String.valueOf(mResizeMode));
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001180 out.attribute(null, ATTR_PRIVILEGED, String.valueOf(mPrivileged));
Wale Ogunwale706ed792015-08-02 10:29:44 -07001181 if (mLastNonFullscreenBounds != null) {
1182 out.attribute(
1183 null, ATTR_NON_FULLSCREEN_BOUNDS, mLastNonFullscreenBounds.flattenToString());
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001184 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001185 out.attribute(null, ATTR_MIN_WIDTH, String.valueOf(mMinWidth));
1186 out.attribute(null, ATTR_MIN_HEIGHT, String.valueOf(mMinHeight));
Winson Chung2cb86c72014-06-25 12:03:30 -07001187
Craig Mautner21d24a22014-04-23 11:45:37 -07001188 if (affinityIntent != null) {
1189 out.startTag(null, TAG_AFFINITYINTENT);
1190 affinityIntent.saveToXml(out);
1191 out.endTag(null, TAG_AFFINITYINTENT);
1192 }
1193
1194 out.startTag(null, TAG_INTENT);
1195 intent.saveToXml(out);
1196 out.endTag(null, TAG_INTENT);
1197
1198 final ArrayList<ActivityRecord> activities = mActivities;
1199 final int numActivities = activities.size();
1200 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1201 final ActivityRecord r = activities.get(activityNdx);
Craig Mautner43e52ed2014-06-16 17:18:52 -07001202 if (r.info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY || !r.isPersistable() ||
Wale Ogunwale843bfb92015-03-27 11:06:48 -07001203 ((r.intent.getFlags() & FLAG_ACTIVITY_NEW_DOCUMENT
1204 | FLAG_ACTIVITY_RETAIN_IN_RECENTS) == FLAG_ACTIVITY_NEW_DOCUMENT) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -07001205 activityNdx > 0) {
Craig Mautnerf357c0c2014-06-09 09:23:27 -07001206 // Stop at first non-persistable or first break in task (CLEAR_WHEN_TASK_RESET).
Craig Mautner21d24a22014-04-23 11:45:37 -07001207 break;
1208 }
1209 out.startTag(null, TAG_ACTIVITY);
1210 r.saveToXml(out);
1211 out.endTag(null, TAG_ACTIVITY);
1212 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001213 }
1214
1215 static TaskRecord restoreFromXml(XmlPullParser in, ActivityStackSupervisor stackSupervisor)
1216 throws IOException, XmlPullParserException {
1217 Intent intent = null;
1218 Intent affinityIntent = null;
Winsonc809cbb2015-11-02 12:06:15 -08001219 ArrayList<ActivityRecord> activities = new ArrayList<>();
Craig Mautner21d24a22014-04-23 11:45:37 -07001220 ComponentName realActivity = null;
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001221 boolean realActivitySuspended = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001222 ComponentName origActivity = null;
1223 String affinity = null;
Dianne Hackborn79228822014-09-16 11:11:23 -07001224 String rootAffinity = null;
1225 boolean hasRootAffinity = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001226 boolean rootHasReset = false;
Dianne Hackborn13420f22014-07-18 15:43:56 -07001227 boolean autoRemoveRecents = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001228 boolean askedCompatMode = false;
1229 int taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -07001230 int userId = 0;
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001231 boolean userSetupComplete = true;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001232 int effectiveUid = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001233 String lastDescription = null;
Winson Chungffa2ec62014-07-03 15:54:42 -07001234 long firstActiveTime = -1;
Winson Chung2cb86c72014-06-25 12:03:30 -07001235 long lastActiveTime = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001236 long lastTimeOnTop = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001237 boolean neverRelinquishIdentity = true;
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001238 int taskId = INVALID_TASK_ID;
Craig Mautner21d24a22014-04-23 11:45:37 -07001239 final int outerDepth = in.getDepth();
Craig Mautner648f69b2014-09-18 14:16:26 -07001240 TaskDescription taskDescription = new TaskDescription();
Winsonc809cbb2015-11-02 12:06:15 -08001241 TaskThumbnailInfo thumbnailInfo = new TaskThumbnailInfo();
Wale Ogunwale18795a22014-12-03 11:38:33 -08001242 int taskAffiliation = INVALID_TASK_ID;
Winson Chungec396d62014-08-06 17:08:00 -07001243 int taskAffiliationColor = 0;
Wale Ogunwale18795a22014-12-03 11:38:33 -08001244 int prevTaskId = INVALID_TASK_ID;
1245 int nextTaskId = INVALID_TASK_ID;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001246 int callingUid = -1;
1247 String callingPackage = "";
Wale Ogunwaled829d362016-02-10 19:24:49 -08001248 int resizeMode = RESIZE_MODE_FORCE_RESIZEABLE;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001249 boolean privileged = false;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001250 Rect bounds = null;
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001251 int minWidth = INVALID_MIN_SIZE;
1252 int minHeight = INVALID_MIN_SIZE;
Craig Mautner21d24a22014-04-23 11:45:37 -07001253
1254 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1255 final String attrName = in.getAttributeName(attrNdx);
1256 final String attrValue = in.getAttributeValue(attrNdx);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001257 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: attribute name=" +
1258 attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001259 if (ATTR_TASKID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001260 if (taskId == INVALID_TASK_ID) taskId = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001261 } else if (ATTR_REALACTIVITY.equals(attrName)) {
1262 realActivity = ComponentName.unflattenFromString(attrValue);
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001263 } else if (ATTR_REALACTIVITY_SUSPENDED.equals(attrName)) {
1264 realActivitySuspended = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001265 } else if (ATTR_ORIGACTIVITY.equals(attrName)) {
1266 origActivity = ComponentName.unflattenFromString(attrValue);
1267 } else if (ATTR_AFFINITY.equals(attrName)) {
1268 affinity = attrValue;
Dianne Hackborn79228822014-09-16 11:11:23 -07001269 } else if (ATTR_ROOT_AFFINITY.equals(attrName)) {
1270 rootAffinity = attrValue;
1271 hasRootAffinity = true;
Craig Mautner21d24a22014-04-23 11:45:37 -07001272 } else if (ATTR_ROOTHASRESET.equals(attrName)) {
1273 rootHasReset = Boolean.valueOf(attrValue);
Dianne Hackborn13420f22014-07-18 15:43:56 -07001274 } else if (ATTR_AUTOREMOVERECENTS.equals(attrName)) {
1275 autoRemoveRecents = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001276 } else if (ATTR_ASKEDCOMPATMODE.equals(attrName)) {
1277 askedCompatMode = Boolean.valueOf(attrValue);
1278 } else if (ATTR_USERID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001279 userId = Integer.parseInt(attrValue);
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001280 } else if (ATTR_USER_SETUP_COMPLETE.equals(attrName)) {
1281 userSetupComplete = Boolean.valueOf(attrValue);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001282 } else if (ATTR_EFFECTIVE_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001283 effectiveUid = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001284 } else if (ATTR_TASKTYPE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001285 taskType = Integer.parseInt(attrValue);
Winson Chungffa2ec62014-07-03 15:54:42 -07001286 } else if (ATTR_FIRSTACTIVETIME.equals(attrName)) {
1287 firstActiveTime = Long.valueOf(attrValue);
Winson Chungf1fbd772014-06-24 18:06:58 -07001288 } else if (ATTR_LASTACTIVETIME.equals(attrName)) {
1289 lastActiveTime = Long.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001290 } else if (ATTR_LASTDESCRIPTION.equals(attrName)) {
1291 lastDescription = attrValue;
1292 } else if (ATTR_LASTTIMEMOVED.equals(attrName)) {
1293 lastTimeOnTop = Long.valueOf(attrValue);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001294 } else if (ATTR_NEVERRELINQUISH.equals(attrName)) {
1295 neverRelinquishIdentity = Boolean.valueOf(attrValue);
Winsonc809cbb2015-11-02 12:06:15 -08001296 } else if (attrName.startsWith(TaskThumbnailInfo.ATTR_TASK_THUMBNAILINFO_PREFIX)) {
1297 thumbnailInfo.restoreFromXml(attrName, attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001298 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1299 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001300 } else if (ATTR_TASK_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001301 taskAffiliation = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001302 } else if (ATTR_PREV_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001303 prevTaskId = Integer.parseInt(attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001304 } else if (ATTR_NEXT_AFFILIATION.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001305 nextTaskId = Integer.parseInt(attrValue);
Winson Chungec396d62014-08-06 17:08:00 -07001306 } else if (ATTR_TASK_AFFILIATION_COLOR.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001307 taskAffiliationColor = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001308 } else if (ATTR_CALLING_UID.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001309 callingUid = Integer.parseInt(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001310 } else if (ATTR_CALLING_PACKAGE.equals(attrName)) {
1311 callingPackage = attrValue;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001312 } else if (ATTR_RESIZE_MODE.equals(attrName)) {
Narayan Kamatha09b4d22016-04-15 18:32:45 +01001313 resizeMode = Integer.parseInt(attrValue);
Wale Ogunwaled829d362016-02-10 19:24:49 -08001314 resizeMode = (resizeMode == RESIZE_MODE_CROP_WINDOWS)
1315 ? RESIZE_MODE_FORCE_RESIZEABLE : resizeMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001316 } else if (ATTR_PRIVILEGED.equals(attrName)) {
1317 privileged = Boolean.valueOf(attrValue);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001318 } else if (ATTR_NON_FULLSCREEN_BOUNDS.equals(attrName)) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001319 bounds = Rect.unflattenFromString(attrValue);
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001320 } else if (ATTR_MIN_WIDTH.equals(attrName)) {
1321 minWidth = Integer.parseInt(attrValue);
1322 } else if (ATTR_MIN_HEIGHT.equals(attrName)) {
1323 minHeight = Integer.parseInt(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001324 } else {
1325 Slog.w(TAG, "TaskRecord: Unknown attribute=" + attrName);
1326 }
1327 }
1328
1329 int event;
1330 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
Ben Kwa8814cf42015-07-08 10:54:56 -07001331 (event != XmlPullParser.END_TAG || in.getDepth() >= outerDepth)) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001332 if (event == XmlPullParser.START_TAG) {
1333 final String name = in.getName();
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001334 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: START_TAG name=" +
1335 name);
Craig Mautner21d24a22014-04-23 11:45:37 -07001336 if (TAG_AFFINITYINTENT.equals(name)) {
1337 affinityIntent = Intent.restoreFromXml(in);
1338 } else if (TAG_INTENT.equals(name)) {
1339 intent = Intent.restoreFromXml(in);
1340 } else if (TAG_ACTIVITY.equals(name)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001341 ActivityRecord activity = ActivityRecord.restoreFromXml(in, stackSupervisor);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001342 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: activity=" +
1343 activity);
Craig Mautner21d24a22014-04-23 11:45:37 -07001344 if (activity != null) {
1345 activities.add(activity);
1346 }
1347 } else {
1348 Slog.e(TAG, "restoreTask: Unexpected name=" + name);
1349 XmlUtils.skipCurrentTag(in);
1350 }
1351 }
1352 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001353 if (!hasRootAffinity) {
1354 rootAffinity = affinity;
1355 } else if ("@".equals(rootAffinity)) {
1356 rootAffinity = null;
1357 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001358 if (effectiveUid <= 0) {
1359 Intent checkIntent = intent != null ? intent : affinityIntent;
1360 effectiveUid = 0;
1361 if (checkIntent != null) {
1362 IPackageManager pm = AppGlobals.getPackageManager();
1363 try {
1364 ApplicationInfo ai = pm.getApplicationInfo(
1365 checkIntent.getComponent().getPackageName(),
1366 PackageManager.GET_UNINSTALLED_PACKAGES
1367 | PackageManager.GET_DISABLED_COMPONENTS, userId);
1368 if (ai != null) {
1369 effectiveUid = ai.uid;
1370 }
1371 } catch (RemoteException e) {
1372 }
1373 }
1374 Slog.w(TAG, "Updating task #" + taskId + " for " + checkIntent
1375 + ": effectiveUid=" + effectiveUid);
1376 }
1377
Craig Mautner21d24a22014-04-23 11:45:37 -07001378 final TaskRecord task = new TaskRecord(stackSupervisor.mService, taskId, intent,
Dianne Hackborn79228822014-09-16 11:11:23 -07001379 affinityIntent, affinity, rootAffinity, realActivity, origActivity, rootHasReset,
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001380 autoRemoveRecents, askedCompatMode, taskType, userId, effectiveUid, lastDescription,
1381 activities, firstActiveTime, lastActiveTime, lastTimeOnTop, neverRelinquishIdentity,
Winsonc809cbb2015-11-02 12:06:15 -08001382 taskDescription, thumbnailInfo, taskAffiliation, prevTaskId, nextTaskId,
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001383 taskAffiliationColor, callingUid, callingPackage, resizeMode, privileged,
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001384 realActivitySuspended, userSetupComplete, minWidth, minHeight);
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07001385 task.updateOverrideConfiguration(bounds);
Craig Mautner21d24a22014-04-23 11:45:37 -07001386
1387 for (int activityNdx = activities.size() - 1; activityNdx >=0; --activityNdx) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001388 activities.get(activityNdx).task = task;
Craig Mautner21d24a22014-04-23 11:45:37 -07001389 }
1390
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001391 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "Restored task=" + task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001392 return task;
1393 }
1394
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001395 private void adjustForMinimalTaskDimensions(Rect bounds) {
1396 if (bounds == null) {
1397 return;
1398 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001399 int minWidth = mMinWidth;
1400 int minHeight = mMinHeight;
Robert Carr9c5867d2016-03-10 15:52:46 -08001401 // If the task has no requested minimal size, we'd like to enforce a minimal size
1402 // so that the user can not render the task too small to manipulate. We don't need
1403 // to do this for the pinned stack as the bounds are controlled by the system.
Andrii Kulian2e751b82016-03-16 16:59:32 -07001404 if (stack.mStackId != PINNED_STACK_ID) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001405 if (minWidth == INVALID_MIN_SIZE) {
1406 minWidth = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07001407 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001408 if (minHeight == INVALID_MIN_SIZE) {
1409 minHeight = mService.mStackSupervisor.mDefaultMinSizeOfResizeableTask;
Andrii Kulian2e751b82016-03-16 16:59:32 -07001410 }
Robert Carr9c5867d2016-03-10 15:52:46 -08001411 }
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001412 final boolean adjustWidth = minWidth > bounds.width();
1413 final boolean adjustHeight = minHeight > bounds.height();
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001414 if (!(adjustWidth || adjustHeight)) {
1415 return;
1416 }
1417
1418 if (adjustWidth) {
1419 if (mBounds != null && bounds.right == mBounds.right) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001420 bounds.left = bounds.right - minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001421 } else {
1422 // Either left bounds match, or neither match, or the previous bounds were
1423 // fullscreen and we default to keeping left.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001424 bounds.right = bounds.left + minWidth;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001425 }
1426 }
1427 if (adjustHeight) {
1428 if (mBounds != null && bounds.bottom == mBounds.bottom) {
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001429 bounds.top = bounds.bottom - minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001430 } else {
1431 // Either top bounds match, or neither match, or the previous bounds were
1432 // fullscreen and we default to keeping top.
Andrii Kulianf66a83d2016-05-17 12:17:44 -07001433 bounds.bottom = bounds.top + minHeight;
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001434 }
1435 }
1436 }
1437
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001438 /**
1439 * Update task's override configuration based on the bounds.
Jorim Jaggi0a932142016-02-01 17:42:25 -08001440 * @param bounds The bounds of the task.
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001441 * @return Update configuration or null if there is no change.
1442 */
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07001443 Configuration updateOverrideConfiguration(Rect bounds) {
Jorim Jaggi0a932142016-02-01 17:42:25 -08001444 return updateOverrideConfiguration(bounds, null /* insetBounds */);
1445 }
1446
1447 /**
1448 * Update task's override configuration based on the bounds.
1449 * @param bounds The bounds of the task.
1450 * @param insetBounds The bounds used to calculate the system insets, which is used here to
1451 * subtract the navigation bar/status bar size from the screen size reported
1452 * to the application. See {@link IActivityManager#resizeDockedStack}.
1453 * @return Update configuration or null if there is no change.
1454 */
1455 Configuration updateOverrideConfiguration(Rect bounds, @Nullable Rect insetBounds) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001456 if (Objects.equals(mBounds, bounds)) {
1457 return null;
1458 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08001459 final Configuration oldConfig = mOverrideConfig;
1460 final boolean oldFullscreen = mFullscreen;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001461
1462 mFullscreen = bounds == null;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001463 if (mFullscreen) {
Wale Ogunwale3797c222015-10-27 14:21:58 -07001464 if (mBounds != null && StackId.persistTaskBounds(stack.mStackId)) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001465 mLastNonFullscreenBounds = mBounds;
1466 }
1467 mBounds = null;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001468 mOverrideConfig = Configuration.EMPTY;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001469 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001470 mTmpRect.set(bounds);
1471 adjustForMinimalTaskDimensions(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001472 if (mBounds == null) {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001473 mBounds = new Rect(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001474 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001475 mBounds.set(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001476 }
Wale Ogunwale3797c222015-10-27 14:21:58 -07001477 if (stack == null || StackId.persistTaskBounds(stack.mStackId)) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001478 mLastNonFullscreenBounds = mBounds;
1479 }
Andrii Kuliandaea3572016-04-08 13:20:51 -07001480 mOverrideConfig = calculateOverrideConfig(mTmpRect, insetBounds,
1481 mTmpRect.right != bounds.right, mTmpRect.bottom != bounds.bottom);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001482 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08001483
1484 if (mFullscreen != oldFullscreen) {
Andrii Kulian933076d2016-03-29 17:04:42 -07001485 mService.mStackSupervisor.scheduleReportMultiWindowModeChanged(this);
Wale Ogunwale5f986092015-12-04 15:35:38 -08001486 }
1487
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001488 return !mOverrideConfig.equals(oldConfig) ? mOverrideConfig : null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001489 }
1490
Andrii Kuliandaea3572016-04-08 13:20:51 -07001491 private void subtractNonDecorInsets(Rect inOutBounds, Rect inInsetBounds,
1492 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001493 mTmpRect2.set(inInsetBounds);
1494 mService.mWindowManager.subtractNonDecorInsets(mTmpRect2);
1495 int leftInset = mTmpRect2.left - inInsetBounds.left;
1496 int topInset = mTmpRect2.top - inInsetBounds.top;
Andrii Kuliandaea3572016-04-08 13:20:51 -07001497 int rightInset = overrideWidth ? 0 : inInsetBounds.right - mTmpRect2.right;
1498 int bottomInset = overrideHeight ? 0 : inInsetBounds.bottom - mTmpRect2.bottom;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001499 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset);
1500 }
1501
Andrii Kuliandaea3572016-04-08 13:20:51 -07001502 private void subtractStableInsets(Rect inOutBounds, Rect inInsetBounds,
1503 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi0a932142016-02-01 17:42:25 -08001504 mTmpRect2.set(inInsetBounds);
1505 mService.mWindowManager.subtractStableInsets(mTmpRect2);
1506 int leftInset = mTmpRect2.left - inInsetBounds.left;
1507 int topInset = mTmpRect2.top - inInsetBounds.top;
Andrii Kuliandaea3572016-04-08 13:20:51 -07001508 int rightInset = overrideWidth ? 0 : inInsetBounds.right - mTmpRect2.right;
1509 int bottomInset = overrideHeight ? 0 : inInsetBounds.bottom - mTmpRect2.bottom;
Jorim Jaggi0a932142016-02-01 17:42:25 -08001510 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset);
1511 }
1512
Andrii Kuliandaea3572016-04-08 13:20:51 -07001513 private Configuration calculateOverrideConfig(Rect bounds, Rect insetBounds,
1514 boolean overrideWidth, boolean overrideHeight) {
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001515 mTmpNonDecorBounds.set(bounds);
1516 mTmpStableBounds.set(bounds);
1517 subtractNonDecorInsets(
Andrii Kuliandaea3572016-04-08 13:20:51 -07001518 mTmpNonDecorBounds, insetBounds != null ? insetBounds : bounds,
1519 overrideWidth, overrideHeight);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001520 subtractStableInsets(
Andrii Kuliandaea3572016-04-08 13:20:51 -07001521 mTmpStableBounds, insetBounds != null ? insetBounds : bounds,
1522 overrideWidth, overrideHeight);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001523
1524 // For calculating screenWidthDp, screenWidthDp, we use the stable inset screen area,
1525 // i.e. the screen area without the system bars.
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001526 final Configuration serviceConfig = mService.mConfiguration;
1527 final Configuration config = new Configuration(Configuration.EMPTY);
1528 // TODO(multidisplay): Update Dp to that of display stack is on.
1529 final float density = serviceConfig.densityDpi * DisplayMetrics.DENSITY_DEFAULT_SCALE;
1530 config.screenWidthDp =
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001531 Math.min((int)(mTmpStableBounds.width() / density), serviceConfig.screenWidthDp);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001532 config.screenHeightDp =
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001533 Math.min((int)(mTmpStableBounds.height() / density), serviceConfig.screenHeightDp);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001534
1535 // TODO: Orientation?
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001536 config.orientation = (config.screenWidthDp <= config.screenHeightDp)
1537 ? Configuration.ORIENTATION_PORTRAIT
1538 : Configuration.ORIENTATION_LANDSCAPE;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001539
Jorim Jaggi85639432016-05-06 17:27:55 -07001540 // For calculating screen layout, we need to use the non-decor inset screen area for the
1541 // calculation for compatibility reasons, i.e. screen area without system bars that could
1542 // never go away in Honeycomb.
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001543 final int compatScreenWidthDp = (int)(mTmpNonDecorBounds.width() / density);
1544 final int compatScreenHeightDp = (int)(mTmpNonDecorBounds.height() / density);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001545 final int sl = Configuration.resetScreenLayout(serviceConfig.screenLayout);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001546 final int longSize = Math.max(compatScreenHeightDp, compatScreenWidthDp);
Jorim Jaggi85639432016-05-06 17:27:55 -07001547 final int shortSize = Math.min(compatScreenHeightDp, compatScreenWidthDp);;
1548 config.screenLayout = Configuration.reduceScreenLayout(sl, longSize, shortSize);
1549
1550 config.smallestScreenWidthDp = mService.mWindowManager.getSmallestWidthForTaskBounds(
1551 insetBounds != null ? insetBounds : bounds);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001552 return config;
1553 }
1554
1555 /**
1556 * Using the existing configuration {@param config}, creates a new task override config such
1557 * that all the fields that are usually set in an override config are set to the ones in
1558 * {@param config}.
1559 */
1560 Configuration extractOverrideConfig(Configuration config) {
1561 final Configuration extracted = new Configuration(Configuration.EMPTY);
1562 extracted.screenWidthDp = config.screenWidthDp;
1563 extracted.screenHeightDp = config.screenHeightDp;
1564 extracted.smallestScreenWidthDp = config.smallestScreenWidthDp;
1565 extracted.orientation = config.orientation;
1566 extracted.screenLayout = config.screenLayout;
1567 return extracted;
1568 }
1569
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08001570 Rect updateOverrideConfigurationFromLaunchBounds() {
1571 final Rect bounds = validateBounds(getLaunchBounds());
1572 updateOverrideConfiguration(bounds);
Andrii Kulian73336d812016-03-24 12:56:08 -07001573 if (bounds != null) {
1574 bounds.set(mBounds);
1575 }
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08001576 return bounds;
1577 }
1578
Andrii Kulianf12fce12016-05-27 17:30:16 -07001579 /**
1580 * Update fields that are not overridden for task from global configuration.
1581 *
1582 * @param globalConfig global configuration to update from.
1583 */
1584 void sanitizeOverrideConfiguration(Configuration globalConfig) {
Chong Zhanga8cc3782016-06-01 12:20:10 -07001585 // If it's fullscreen, the override config should be empty and we should leave it alone.
1586 if (mFullscreen) {
1587 return;
1588 }
1589
Andrii Kulianf12fce12016-05-27 17:30:16 -07001590 // screenLayout field is set in #calculateOverrideConfig but only part of it is really
1591 // overridden - aspect ratio and size. Other flags (like layout direction) can be updated
1592 // separately in global config and they also must be updated in override config.
1593 int overrideScreenLayout = mOverrideConfig.screenLayout;
1594 int newScreenLayout = globalConfig.screenLayout;
1595 newScreenLayout = (newScreenLayout & ~SCREENLAYOUT_LONG_MASK)
1596 | (overrideScreenLayout & SCREENLAYOUT_LONG_MASK);
1597 newScreenLayout = (newScreenLayout & ~SCREENLAYOUT_SIZE_MASK)
1598 | (overrideScreenLayout & SCREENLAYOUT_SIZE_MASK);
1599 mOverrideConfig.screenLayout = newScreenLayout;
1600 }
1601
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08001602 static Rect validateBounds(Rect bounds) {
1603 if (bounds != null && bounds.isEmpty()) {
1604 Slog.wtf(TAG, "Received strange task bounds: " + bounds, new Throwable());
1605 return null;
1606 }
1607 return bounds;
1608 }
1609
Wale Ogunwale935e5022015-11-10 12:36:10 -08001610 /** Updates the task's bounds and override configuration to match what is expected for the
1611 * input stack. */
1612 void updateOverrideConfigurationForStack(ActivityStack inStack) {
1613 if (stack != null && stack == inStack) {
1614 return;
1615 }
1616
1617 if (inStack.mStackId == FREEFORM_WORKSPACE_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001618 if (!isResizeable()) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08001619 throw new IllegalArgumentException("Can not position non-resizeable task="
1620 + this + " in stack=" + inStack);
1621 }
1622 if (mBounds != null) {
1623 return;
1624 }
1625 if (mLastNonFullscreenBounds != null) {
1626 updateOverrideConfiguration(mLastNonFullscreenBounds);
1627 } else {
1628 inStack.layoutTaskInStack(this, null);
1629 }
1630 } else {
1631 updateOverrideConfiguration(inStack.mBounds);
1632 }
1633 }
1634
Chong Zhang0fa656b2015-08-31 15:17:21 -07001635 /**
1636 * Returns the correct stack to use based on task type and currently set bounds,
1637 * regardless of the focused stack and current stack association of the task.
1638 * The task will be moved (and stack focus changed) later if necessary.
1639 */
1640 int getLaunchStackId() {
1641 if (!isApplicationTask()) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001642 return HOME_STACK_ID;
1643 }
Chong Zhang0fa656b2015-08-31 15:17:21 -07001644 if (mBounds != null) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001645 return FREEFORM_WORKSPACE_STACK_ID;
1646 }
1647 return FULLSCREEN_WORKSPACE_STACK_ID;
1648 }
1649
1650 /** Returns the bounds that should be used to launch this task. */
1651 Rect getLaunchBounds() {
Chong Zhang75b37202015-12-04 14:16:36 -08001652 // If we're over lockscreen, forget about stack bounds and use fullscreen.
1653 if (mService.mLockScreenShown == LOCK_SCREEN_SHOWN) {
1654 return null;
1655 }
1656
Chong Zhang7d5f5102016-01-13 10:29:24 -08001657 if (stack == null) {
1658 return null;
1659 }
1660
1661 final int stackId = stack.mStackId;
1662 if (stackId == HOME_STACK_ID
1663 || stackId == FULLSCREEN_WORKSPACE_STACK_ID
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001664 || (stackId == DOCKED_STACK_ID && !isResizeable())) {
1665 return isResizeable() ? stack.mBounds : null;
Wale Ogunwale3797c222015-10-27 14:21:58 -07001666 } else if (!StackId.persistTaskBounds(stackId)) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001667 return stack.mBounds;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001668 }
1669 return mLastNonFullscreenBounds;
1670 }
1671
Wale Ogunwale39381972015-12-17 17:15:29 -08001672 boolean canMatchRootAffinity() {
1673 // We don't allow root affinity matching on the pinned stack as no other task should
1674 // be launching in it based on affinity.
1675 return rootAffinity != null && (stack == null || stack.mStackId != PINNED_STACK_ID);
1676 }
1677
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001678 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001679 pw.print(prefix); pw.print("userId="); pw.print(userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001680 pw.print(" effectiveUid="); UserHandle.formatUid(pw, effectiveUid);
1681 pw.print(" mCallingUid="); UserHandle.formatUid(pw, mCallingUid);
Suprabh Shukla7745c142016-03-07 18:21:10 -08001682 pw.print(" mUserSetupComplete="); pw.print(mUserSetupComplete);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001683 pw.print(" mCallingPackage="); pw.println(mCallingPackage);
Dianne Hackborn79228822014-09-16 11:11:23 -07001684 if (affinity != null || rootAffinity != null) {
1685 pw.print(prefix); pw.print("affinity="); pw.print(affinity);
1686 if (affinity == null || !affinity.equals(rootAffinity)) {
1687 pw.print(" root="); pw.println(rootAffinity);
1688 } else {
1689 pw.println();
1690 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001691 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07001692 if (voiceSession != null || voiceInteractor != null) {
1693 pw.print(prefix); pw.print("VOICE: session=0x");
1694 pw.print(Integer.toHexString(System.identityHashCode(voiceSession)));
1695 pw.print(" interactor=0x");
1696 pw.println(Integer.toHexString(System.identityHashCode(voiceInteractor)));
1697 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001698 if (intent != null) {
1699 StringBuilder sb = new StringBuilder(128);
1700 sb.append(prefix); sb.append("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001701 intent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001702 sb.append('}');
1703 pw.println(sb.toString());
1704 }
1705 if (affinityIntent != null) {
1706 StringBuilder sb = new StringBuilder(128);
1707 sb.append(prefix); sb.append("affinityIntent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001708 affinityIntent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001709 sb.append('}');
1710 pw.println(sb.toString());
1711 }
1712 if (origActivity != null) {
1713 pw.print(prefix); pw.print("origActivity=");
1714 pw.println(origActivity.flattenToShortString());
1715 }
1716 if (realActivity != null) {
1717 pw.print(prefix); pw.print("realActivity=");
1718 pw.println(realActivity.flattenToShortString());
1719 }
Dianne Hackborn852975d2014-08-22 17:42:43 -07001720 if (autoRemoveRecents || isPersistable || taskType != 0 || mTaskToReturnTo != 0
1721 || numFullscreen != 0) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001722 pw.print(prefix); pw.print("autoRemoveRecents="); pw.print(autoRemoveRecents);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001723 pw.print(" isPersistable="); pw.print(isPersistable);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001724 pw.print(" numFullscreen="); pw.print(numFullscreen);
1725 pw.print(" taskType="); pw.print(taskType);
1726 pw.print(" mTaskToReturnTo="); pw.println(mTaskToReturnTo);
1727 }
Craig Mautner432f64e2015-05-20 14:59:57 -07001728 if (rootWasReset || mNeverRelinquishIdentity || mReuseTask
1729 || mLockTaskAuth != LOCK_TASK_AUTH_PINNABLE) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001730 pw.print(prefix); pw.print("rootWasReset="); pw.print(rootWasReset);
1731 pw.print(" mNeverRelinquishIdentity="); pw.print(mNeverRelinquishIdentity);
Craig Mautner432f64e2015-05-20 14:59:57 -07001732 pw.print(" mReuseTask="); pw.print(mReuseTask);
1733 pw.print(" mLockTaskAuth="); pw.println(lockTaskAuthToString());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001734 }
Wale Ogunwale18795a22014-12-03 11:38:33 -08001735 if (mAffiliatedTaskId != taskId || mPrevAffiliateTaskId != INVALID_TASK_ID
1736 || mPrevAffiliate != null || mNextAffiliateTaskId != INVALID_TASK_ID
1737 || mNextAffiliate != null) {
Dianne Hackborn852975d2014-08-22 17:42:43 -07001738 pw.print(prefix); pw.print("affiliation="); pw.print(mAffiliatedTaskId);
1739 pw.print(" prevAffiliation="); pw.print(mPrevAffiliateTaskId);
1740 pw.print(" (");
1741 if (mPrevAffiliate == null) {
1742 pw.print("null");
1743 } else {
1744 pw.print(Integer.toHexString(System.identityHashCode(mPrevAffiliate)));
1745 }
1746 pw.print(") nextAffiliation="); pw.print(mNextAffiliateTaskId);
1747 pw.print(" (");
1748 if (mNextAffiliate == null) {
1749 pw.print("null");
1750 } else {
1751 pw.print(Integer.toHexString(System.identityHashCode(mNextAffiliate)));
1752 }
1753 pw.println(")");
1754 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001755 pw.print(prefix); pw.print("Activities="); pw.println(mActivities);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001756 if (!askedCompatMode || !inRecents || !isAvailable) {
1757 pw.print(prefix); pw.print("askedCompatMode="); pw.print(askedCompatMode);
1758 pw.print(" inRecents="); pw.print(inRecents);
1759 pw.print(" isAvailable="); pw.println(isAvailable);
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07001760 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001761 pw.print(prefix); pw.print("lastThumbnail="); pw.print(mLastThumbnail);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001762 pw.print(" lastThumbnailFile="); pw.println(mLastThumbnailFile);
1763 if (lastDescription != null) {
1764 pw.print(prefix); pw.print("lastDescription="); pw.println(lastDescription);
1765 }
Wale Ogunwale069fbe42015-07-29 11:38:01 -07001766 if (stack != null) {
1767 pw.print(prefix); pw.print("stackId="); pw.println(stack.mStackId);
1768 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001769 pw.print(prefix + "hasBeenVisible=" + hasBeenVisible);
1770 pw.print(" mResizeMode=" + ActivityInfo.resizeModeToString(mResizeMode));
1771 pw.print(" isResizeable=" + isResizeable());
1772 pw.print(" firstActiveTime=" + lastActiveTime);
1773 pw.print(" lastActiveTime=" + lastActiveTime);
1774 pw.println(" (inactive for " + (getInactiveDuration() / 1000) + "s)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001775 }
1776
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001777 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001778 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001779 StringBuilder sb = new StringBuilder(128);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001780 if (stringName != null) {
1781 sb.append(stringName);
1782 sb.append(" U=");
1783 sb.append(userId);
Wale Ogunwale6c5eb1c2015-11-10 07:52:22 -08001784 sb.append(" StackId=");
1785 sb.append(stack != null ? stack.mStackId : INVALID_STACK_ID);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001786 sb.append(" sz=");
1787 sb.append(mActivities.size());
1788 sb.append('}');
1789 return sb.toString();
1790 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001791 sb.append("TaskRecord{");
1792 sb.append(Integer.toHexString(System.identityHashCode(this)));
1793 sb.append(" #");
1794 sb.append(taskId);
1795 if (affinity != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001796 sb.append(" A=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001797 sb.append(affinity);
1798 } else if (intent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001799 sb.append(" I=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001800 sb.append(intent.getComponent().flattenToShortString());
1801 } else if (affinityIntent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001802 sb.append(" aI=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001803 sb.append(affinityIntent.getComponent().flattenToShortString());
1804 } else {
1805 sb.append(" ??");
1806 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001807 stringName = sb.toString();
1808 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001809 }
1810}