blob: 4eae45c616e58769fad06d86ec65a5848c87aba2 [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.ActivityInfo.RESIZE_MODE_RESIZEABLE;
76import static android.content.pm.ActivityInfo.RESIZE_MODE_UNRESIZEABLE;
77import static android.content.pm.ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
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;
93
Craig Mautnerc0ffce52014-07-01 12:38:52 -070094final class TaskRecord {
Wale Ogunwalee23149f2015-03-06 15:39:44 -080095 private static final String TAG = TAG_WITH_CLASS_NAME ? "TaskRecord" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070096 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070097 private static final String TAG_RECENTS = TAG + POSTFIX_RECENTS;
Craig Mautnere0570202015-05-13 13:06:11 -070098 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070099 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800100
Wale Ogunwale18795a22014-12-03 11:38:33 -0800101 static final String ATTR_TASKID = "task_id";
Craig Mautner21d24a22014-04-23 11:45:37 -0700102 private static final String TAG_INTENT = "intent";
103 private static final String TAG_AFFINITYINTENT = "affinity_intent";
Wale Ogunwale18795a22014-12-03 11:38:33 -0800104 static final String ATTR_REALACTIVITY = "real_activity";
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +0000105 static final String ATTR_REALACTIVITY_SUSPENDED = "real_activity_suspended";
Craig Mautner21d24a22014-04-23 11:45:37 -0700106 private static final String ATTR_ORIGACTIVITY = "orig_activity";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700107 private static final String TAG_ACTIVITY = "activity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700108 private static final String ATTR_AFFINITY = "affinity";
Dianne Hackborn79228822014-09-16 11:11:23 -0700109 private static final String ATTR_ROOT_AFFINITY = "root_affinity";
Craig Mautner21d24a22014-04-23 11:45:37 -0700110 private static final String ATTR_ROOTHASRESET = "root_has_reset";
Dianne Hackborn13420f22014-07-18 15:43:56 -0700111 private static final String ATTR_AUTOREMOVERECENTS = "auto_remove_recents";
Craig Mautner21d24a22014-04-23 11:45:37 -0700112 private static final String ATTR_ASKEDCOMPATMODE = "asked_compat_mode";
113 private static final String ATTR_USERID = "user_id";
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800114 private static final String ATTR_USER_SETUP_COMPLETE = "user_setup_complete";
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700115 private static final String ATTR_EFFECTIVE_UID = "effective_uid";
Craig Mautner21d24a22014-04-23 11:45:37 -0700116 private static final String ATTR_TASKTYPE = "task_type";
Winson Chungffa2ec62014-07-03 15:54:42 -0700117 private static final String ATTR_FIRSTACTIVETIME = "first_active_time";
Winson Chungf1fbd772014-06-24 18:06:58 -0700118 private static final String ATTR_LASTACTIVETIME = "last_active_time";
Craig Mautner21d24a22014-04-23 11:45:37 -0700119 private static final String ATTR_LASTDESCRIPTION = "last_description";
120 private static final String ATTR_LASTTIMEMOVED = "last_time_moved";
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700121 private static final String ATTR_NEVERRELINQUISH = "never_relinquish_identity";
Wale Ogunwale18795a22014-12-03 11:38:33 -0800122 static final String ATTR_TASK_AFFILIATION = "task_affiliation";
Craig Mautnera228ae92014-07-09 05:44:55 -0700123 private static final String ATTR_PREV_AFFILIATION = "prev_affiliation";
124 private static final String ATTR_NEXT_AFFILIATION = "next_affiliation";
Winson Chungec396d62014-08-06 17:08:00 -0700125 private static final String ATTR_TASK_AFFILIATION_COLOR = "task_affiliation_color";
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700126 private static final String ATTR_CALLING_UID = "calling_uid";
127 private static final String ATTR_CALLING_PACKAGE = "calling_package";
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800128 private static final String ATTR_RESIZE_MODE = "resize_mode";
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700129 private static final String ATTR_PRIVILEGED = "privileged";
Wale Ogunwale706ed792015-08-02 10:29:44 -0700130 private static final String ATTR_NON_FULLSCREEN_BOUNDS = "non_fullscreen_bounds";
Craig Mautner21d24a22014-04-23 11:45:37 -0700131
132 private static final String TASK_THUMBNAIL_SUFFIX = "_task_thumbnail";
133
Wale Ogunwale18795a22014-12-03 11:38:33 -0800134 static final int INVALID_TASK_ID = -1;
135
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136 final int taskId; // Unique identifier for this task.
Dianne Hackborn79228822014-09-16 11:11:23 -0700137 String affinity; // The affinity name for this task, or null; may change identity.
138 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
Dianne Hackborn91097de2014-04-04 18:02:06 -0700139 final IVoiceInteractionSession voiceSession; // Voice interaction session driving task
140 final IVoiceInteractor voiceInteractor; // Associated interactor to provide to app
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141 Intent intent; // The original intent that started the task.
142 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700143 int effectiveUid; // The current effective uid of the identity of this task.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 ComponentName origActivity; // The non-alias activity component of the intent.
145 ComponentName realActivity; // The actual activity component that started the task.
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +0000146 boolean realActivitySuspended; // True if the actual activity component that started the
147 // task is suspended.
Winson Chungffa2ec62014-07-03 15:54:42 -0700148 long firstActiveTime; // First time this task was active.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 long lastActiveTime; // Last time this task was active, including sleep.
Dianne Hackborn852975d2014-08-22 17:42:43 -0700150 boolean inRecents; // Actually in the recents list?
151 boolean isAvailable; // Is the activity available to be launched?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 boolean rootWasReset; // True if the intent at the root of the task had
153 // the FLAG_ACTIVITY_RESET_TASK_IF_NEEDED flag.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700154 boolean autoRemoveRecents; // If true, we should automatically remove the task from
155 // recents when activity finishes
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700156 boolean askedCompatMode;// Have asked the user about compat mode for this task.
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700157 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 -0800158
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700159 String stringName; // caching of toString() result.
Dianne Hackborn9da2d402012-03-15 13:43:08 -0700160 int userId; // user for which this task was created
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800161 boolean mUserSetupComplete; // The user set-up is complete as of the last time the task activity
162 // was changed.
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800163
164 int numFullscreen; // Number of fullscreen activities.
165
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800166 int mResizeMode; // The resize mode of this task and its activities.
167 // Based on the {@link ActivityInfo#resizeMode} of the root activity.
Jorim Jaggi8202b2a2016-02-03 19:24:31 -0800168 boolean mTemporarilyUnresizable; // Separate flag from mResizeMode used to suppress resize
169 // changes on a temporary basis.
Craig Mautner15df08a2015-04-01 12:17:18 -0700170 int mLockTaskMode; // Which tasklock mode to launch this task in. One of
171 // ActivityManager.LOCK_TASK_LAUNCH_MODE_*
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700172 private boolean mPrivileged; // The root activity application of this task holds
173 // privileged permissions.
174
Craig Mautner15df08a2015-04-01 12:17:18 -0700175 /** Can't be put in lockTask mode. */
176 final static int LOCK_TASK_AUTH_DONT_LOCK = 0;
Benjamin Franz469dd582015-06-09 14:24:36 +0100177 /** Can enter app pinning with user approval. Can never start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700178 final static int LOCK_TASK_AUTH_PINNABLE = 1;
179 /** Starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing lockTask task. */
180 final static int LOCK_TASK_AUTH_LAUNCHABLE = 2;
Benjamin Franz469dd582015-06-09 14:24:36 +0100181 /** Can enter lockTask without user approval. Can start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700182 final static int LOCK_TASK_AUTH_WHITELISTED = 3;
Benjamin Franz469dd582015-06-09 14:24:36 +0100183 /** Priv-app that starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing
184 * lockTask task. */
185 final static int LOCK_TASK_AUTH_LAUNCHABLE_PRIV = 4;
Craig Mautner15df08a2015-04-01 12:17:18 -0700186 int mLockTaskAuth = LOCK_TASK_AUTH_PINNABLE;
187
188 int mLockTaskUid = -1; // The uid of the application that called startLockTask().
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800189
Winson Chung03a9bae2014-05-02 09:56:12 -0700190 // This represents the last resolved activity values for this task
191 // NOTE: This value needs to be persisted with each task
Craig Mautner648f69b2014-09-18 14:16:26 -0700192 TaskDescription lastTaskDescription = new TaskDescription();
Winson Chung03a9bae2014-05-02 09:56:12 -0700193
Craig Mautnerd2328952013-03-05 12:46:26 -0800194 /** List of all activities in the task arranged in history order */
Craig Mautner21d24a22014-04-23 11:45:37 -0700195 final ArrayList<ActivityRecord> mActivities;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800196
Craig Mautnerd2328952013-03-05 12:46:26 -0800197 /** Current stack */
198 ActivityStack stack;
199
Craig Mautner2c1faed2013-07-23 12:56:02 -0700200 /** Takes on same set of values as ActivityRecord.mActivityType */
Craig Mautner21d24a22014-04-23 11:45:37 -0700201 int taskType;
Craig Mautner1602ec22013-05-12 10:24:27 -0700202
Craig Mautner21d24a22014-04-23 11:45:37 -0700203 /** Takes on same value as first root activity */
204 boolean isPersistable = false;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700205 int maxRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700206
207 /** Only used for persistable tasks, otherwise 0. The last time this task was moved. Used for
208 * determining the order when restoring. Sign indicates whether last task movement was to front
209 * (positive) or back (negative). Absolute value indicates time. */
210 long mLastTimeMoved = System.currentTimeMillis();
211
Craig Mautner84984fa2014-06-19 11:19:20 -0700212 /** Indication of what to run next when task exits. Use ActivityRecord types.
213 * ActivityRecord.APPLICATION_ACTIVITY_TYPE indicates to resume the task below this one in the
214 * task stack. */
215 private int mTaskToReturnTo = APPLICATION_ACTIVITY_TYPE;
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700216
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700217 /** If original intent did not allow relinquishing task identity, save that information */
218 boolean mNeverRelinquishIdentity = true;
219
Craig Mautner362449a2014-06-20 14:04:39 -0700220 // Used in the unique case where we are clearing the task in order to reuse it. In that case we
221 // do not want to delete the stack when the task goes empty.
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800222 private boolean mReuseTask = false;
Craig Mautner362449a2014-06-20 14:04:39 -0700223
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700224 private Bitmap mLastThumbnail; // Last thumbnail captured for this item.
Wale Ogunwalebe23ff42014-10-21 16:29:51 -0700225 private final File mLastThumbnailFile; // File containing last thumbnail.
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700226 private final String mFilename;
Winsonc809cbb2015-11-02 12:06:15 -0800227 private TaskThumbnailInfo mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700228 CharSequence lastDescription; // Last description captured for this item.
229
Craig Mautnera228ae92014-07-09 05:44:55 -0700230 int mAffiliatedTaskId; // taskId of parent affiliation or self if no parent.
Winson Chungec396d62014-08-06 17:08:00 -0700231 int mAffiliatedTaskColor; // color of the parent task affiliation.
Craig Mautnera228ae92014-07-09 05:44:55 -0700232 TaskRecord mPrevAffiliate; // previous task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800233 int mPrevAffiliateTaskId = INVALID_TASK_ID; // previous id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700234 TaskRecord mNextAffiliate; // next task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800235 int mNextAffiliateTaskId = INVALID_TASK_ID; // next id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700236
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700237 // For relaunching the task from recents as though it was launched by the original launcher.
238 int mCallingUid;
239 String mCallingPackage;
240
Craig Mautner21d24a22014-04-23 11:45:37 -0700241 final ActivityManagerService mService;
242
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700243 // Whether or not this task covers the entire screen; by default tasks are fullscreen.
244 boolean mFullscreen = true;
245
246 // Bounds of the Task. null for fullscreen tasks.
247 Rect mBounds = null;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -0800248 private final Rect mTmpStableBounds = new Rect();
249 private final Rect mTmpNonDecorBounds = new Rect();
Wale Ogunwale9a08f822016-02-17 19:03:58 -0800250 private final Rect mTmpRect = new Rect();
Jorim Jaggi0a932142016-02-01 17:42:25 -0800251 private final Rect mTmpRect2 = new Rect();
252
Wale Ogunwale706ed792015-08-02 10:29:44 -0700253 // Last non-fullscreen bounds the task was launched in or resized to.
254 // The information is persisted and used to determine the appropriate stack to launch the
255 // task into on restore.
256 Rect mLastNonFullscreenBounds = null;
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -0700257 // Minimal size for width/height of this task when it's resizeable. -1 means it should use the
258 // default minimal size.
259 final int mMinimalSize;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700260
Chong Zhangfdcc4d42015-10-14 16:50:12 -0700261 // Ranking (from top) of this task among all visible tasks. (-1 means it's not visible)
262 // This number will be assigned when we evaluate OOM scores for all visible tasks.
263 int mLayerRank = -1;
264
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700265 Configuration mOverrideConfig = Configuration.EMPTY;
266
Craig Mautner21d24a22014-04-23 11:45:37 -0700267 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Dianne Hackborn91097de2014-04-04 18:02:06 -0700268 IVoiceInteractionSession _voiceSession, IVoiceInteractor _voiceInteractor) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700269 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700270 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
271 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800272 userId = UserHandle.getUserId(info.applicationInfo.uid);
273 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800274 mLastThumbnailInfo = new TaskThumbnailInfo();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800275 taskId = _taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700276 mAffiliatedTaskId = _taskId;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700277 voiceSession = _voiceSession;
278 voiceInteractor = _voiceInteractor;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700279 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800280 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700281 mCallingUid = info.applicationInfo.uid;
282 mCallingPackage = info.packageName;
Martijn Coenend4a69702014-06-30 11:12:17 -0700283 setIntent(_intent, info);
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -0700284 mMinimalSize = info != null && info.layout != null ? info.layout.minimalSize : -1;
Craig Mautner21d24a22014-04-23 11:45:37 -0700285 }
286
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700287 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Winsonc809cbb2015-11-02 12:06:15 -0800288 TaskDescription _taskDescription, TaskThumbnailInfo thumbnailInfo) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700289 mService = service;
290 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
291 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800292 userId = UserHandle.getUserId(info.applicationInfo.uid);
293 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800294 mLastThumbnailInfo = thumbnailInfo;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700295 taskId = _taskId;
296 mAffiliatedTaskId = _taskId;
297 voiceSession = null;
298 voiceInteractor = null;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700299 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800300 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700301 mCallingUid = info.applicationInfo.uid;
302 mCallingPackage = info.packageName;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700303 setIntent(_intent, info);
304
305 taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
306 isPersistable = true;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700307 // Clamp to [1, max].
308 maxRecents = Math.min(Math.max(info.maxRecents, 1),
309 ActivityManager.getMaxAppRecentsLimitStatic());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700310
311 taskType = APPLICATION_ACTIVITY_TYPE;
312 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700313 lastTaskDescription = _taskDescription;
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -0700314 mMinimalSize = info != null && info.layout != null ? info.layout.minimalSize : -1;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700315 }
316
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800317 private TaskRecord(ActivityManagerService service, int _taskId, Intent _intent,
318 Intent _affinityIntent, String _affinity, String _rootAffinity,
319 ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset,
320 boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId,
321 int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities,
322 long _firstActiveTime, long _lastActiveTime, long lastTimeMoved,
323 boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription,
Winsonc809cbb2015-11-02 12:06:15 -0800324 TaskThumbnailInfo lastThumbnailInfo, int taskAffiliation, int prevTaskId,
325 int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage,
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800326 int resizeMode, boolean privileged, boolean _realActivitySuspended,
327 boolean userSetupComplete) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700328 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700329 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
330 TaskPersister.IMAGE_EXTENSION;
Suprabh Shukla23593142015-11-03 17:31:15 -0800331 mLastThumbnailFile = new File(TaskPersister.getUserImagesDir(_userId), mFilename);
Winsonc809cbb2015-11-02 12:06:15 -0800332 mLastThumbnailInfo = lastThumbnailInfo;
Craig Mautner21d24a22014-04-23 11:45:37 -0700333 taskId = _taskId;
334 intent = _intent;
335 affinityIntent = _affinityIntent;
336 affinity = _affinity;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800337 rootAffinity = _rootAffinity;
Craig Mautner21d24a22014-04-23 11:45:37 -0700338 voiceSession = null;
339 voiceInteractor = null;
340 realActivity = _realActivity;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800341 realActivitySuspended = _realActivitySuspended;
Craig Mautner21d24a22014-04-23 11:45:37 -0700342 origActivity = _origActivity;
343 rootWasReset = _rootWasReset;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700344 isAvailable = true;
Dianne Hackborn13420f22014-07-18 15:43:56 -0700345 autoRemoveRecents = _autoRemoveRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700346 askedCompatMode = _askedCompatMode;
347 taskType = _taskType;
Craig Mautner84984fa2014-06-19 11:19:20 -0700348 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -0700349 userId = _userId;
Wale Ogunwalef80170f2016-02-04 15:12:29 -0800350 mUserSetupComplete = userSetupComplete;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700351 effectiveUid = _effectiveUid;
Winson Chungffa2ec62014-07-03 15:54:42 -0700352 firstActiveTime = _firstActiveTime;
Winson Chungf1fbd772014-06-24 18:06:58 -0700353 lastActiveTime = _lastActiveTime;
Craig Mautner21d24a22014-04-23 11:45:37 -0700354 lastDescription = _lastDescription;
355 mActivities = activities;
356 mLastTimeMoved = lastTimeMoved;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700357 mNeverRelinquishIdentity = neverRelinquishIdentity;
Winson Chung2cb86c72014-06-25 12:03:30 -0700358 lastTaskDescription = _lastTaskDescription;
Craig Mautnera228ae92014-07-09 05:44:55 -0700359 mAffiliatedTaskId = taskAffiliation;
Winson Chungec396d62014-08-06 17:08:00 -0700360 mAffiliatedTaskColor = taskAffiliationColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700361 mPrevAffiliateTaskId = prevTaskId;
362 mNextAffiliateTaskId = nextTaskId;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700363 mCallingUid = callingUid;
364 mCallingPackage = callingPackage;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800365 mResizeMode = resizeMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700366 mPrivileged = privileged;
Suprabh Shukla74f9f162015-11-06 15:39:42 -0800367 ActivityInfo info = (mActivities.size() > 0) ? mActivities.get(0).info : null;
Filip Gruszczynskid2f1d942015-10-14 15:10:12 -0700368 mMinimalSize = info != null && info.layout != null ? info.layout.minimalSize : -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800369 }
370
371 void touchActiveTime() {
Craig Mautner494f6bdd2014-07-21 11:17:46 -0700372 lastActiveTime = System.currentTimeMillis();
Winson Chungffa2ec62014-07-03 15:54:42 -0700373 if (firstActiveTime == 0) {
374 firstActiveTime = lastActiveTime;
375 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800376 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700377
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 long getInactiveDuration() {
Craig Mautner494f6bdd2014-07-21 11:17:46 -0700379 return System.currentTimeMillis() - lastActiveTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700381
Winson Chungfee26772014-08-05 12:21:52 -0700382 /** Sets the original intent, and the calling uid and package. */
383 void setIntent(ActivityRecord r) {
Winson Chungfee26772014-08-05 12:21:52 -0700384 mCallingUid = r.launchedFromUid;
385 mCallingPackage = r.launchedFromPackage;
Craig Mautner15df08a2015-04-01 12:17:18 -0700386 setIntent(r.intent, r.info);
Winson Chungfee26772014-08-05 12:21:52 -0700387 }
388
389 /** Sets the original intent, _without_ updating the calling uid or package. */
390 private void setIntent(Intent _intent, ActivityInfo info) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700391 if (intent == null) {
392 mNeverRelinquishIdentity =
393 (info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0;
394 } else if (mNeverRelinquishIdentity) {
395 return;
396 }
397
398 affinity = info.taskAffinity;
Dianne Hackborn79228822014-09-16 11:11:23 -0700399 if (intent == null) {
400 // If this task already has an intent associated with it, don't set the root
401 // affinity -- we don't want it changing after initially set, but the initially
402 // set value may be null.
403 rootAffinity = affinity;
404 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700405 effectiveUid = info.applicationInfo.uid;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700406 stringName = null;
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800407
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800408 if (info.targetActivity == null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800409 if (_intent != null) {
410 // If this Intent has a selector, we want to clear it for the
411 // recent task since it is not relevant if the user later wants
412 // to re-launch the app.
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700413 if (_intent.getSelector() != null || _intent.getSourceBounds() != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800414 _intent = new Intent(_intent);
415 _intent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700416 _intent.setSourceBounds(null);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800417 }
418 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700419 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Setting Intent of " + this + " to " + _intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800420 intent = _intent;
421 realActivity = _intent != null ? _intent.getComponent() : null;
422 origActivity = null;
423 } else {
424 ComponentName targetComponent = new ComponentName(
425 info.packageName, info.targetActivity);
426 if (_intent != null) {
427 Intent targetIntent = new Intent(_intent);
428 targetIntent.setComponent(targetComponent);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800429 targetIntent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700430 targetIntent.setSourceBounds(null);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700431 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Dianne Hackborn7f96b792012-05-29 18:46:45 -0700432 "Setting Intent of " + this + " to target " + targetIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800433 intent = targetIntent;
434 realActivity = targetComponent;
435 origActivity = _intent.getComponent();
436 } else {
437 intent = null;
438 realActivity = targetComponent;
439 origActivity = new ComponentName(info.packageName, info.name);
440 }
441 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700442
Craig Mautner47b20ba2014-09-17 17:23:44 -0700443 final int intentFlags = intent == null ? 0 : intent.getFlags();
444 if ((intentFlags & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800445 // Once we are set to an Intent with this flag, we count this
446 // task as having a true root activity.
447 rootWasReset = true;
448 }
Dianne Hackborn09233282014-04-30 11:33:59 -0700449 userId = UserHandle.getUserId(info.applicationInfo.uid);
Suprabh Shukla7745c142016-03-07 18:21:10 -0800450 mUserSetupComplete = Settings.Secure.getIntForUser(mService.mContext.getContentResolver(),
451 USER_SETUP_COMPLETE, 0, userId) != 0;
Craig Mautner41db4a72014-05-07 17:20:56 -0700452 if ((info.flags & ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS) != 0) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700453 // If the activity itself has requested auto-remove, then just always do it.
454 autoRemoveRecents = true;
Wale Ogunwale843bfb92015-03-27 11:06:48 -0700455 } else if ((intentFlags & (FLAG_ACTIVITY_NEW_DOCUMENT | FLAG_ACTIVITY_RETAIN_IN_RECENTS))
456 == FLAG_ACTIVITY_NEW_DOCUMENT) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700457 // If the caller has not asked for the document to be retained, then we may
458 // want to turn on auto-remove, depending on whether the target has set its
459 // own document launch mode.
460 if (info.documentLaunchMode != ActivityInfo.DOCUMENT_LAUNCH_NONE) {
461 autoRemoveRecents = false;
462 } else {
463 autoRemoveRecents = true;
464 }
465 } else {
466 autoRemoveRecents = false;
Craig Mautner41db4a72014-05-07 17:20:56 -0700467 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800468 mResizeMode = info.resizeMode;
Craig Mautner15df08a2015-04-01 12:17:18 -0700469 mLockTaskMode = info.lockTaskLaunchMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700470 mPrivileged = (info.applicationInfo.privateFlags & PRIVATE_FLAG_PRIVILEGED) != 0;
Craig Mautner15df08a2015-04-01 12:17:18 -0700471 setLockTaskAuth();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800473
Wale Ogunwale715a1dc2016-02-29 14:27:32 -0800474 /**
475 * Return true if the input activity has the same intent resolution as the intent this task
476 * record is based on (normally the root activity intent).
477 */
478 boolean isSameIntentResolution(ActivityRecord r) {
479 final Intent intent = new Intent(r.intent);
480 // Correct the activity intent for aliasing. The task record intent will always be based on
481 // the real activity that will be launched not the alias, so we need to use an intent with
482 // the component name pointing to the real activity not the alias in the activity record.
483 intent.setComponent(r.realActivity);
484 return this.intent.filterEquals(intent);
485 }
486
Craig Mautner84984fa2014-06-19 11:19:20 -0700487 void setTaskToReturnTo(int taskToReturnTo) {
Wale Ogunwale673cbd22016-01-30 18:30:55 -0800488 mTaskToReturnTo = (taskToReturnTo == RECENTS_ACTIVITY_TYPE)
489 ? HOME_ACTIVITY_TYPE : taskToReturnTo;
Craig Mautner84984fa2014-06-19 11:19:20 -0700490 }
491
492 int getTaskToReturnTo() {
493 return mTaskToReturnTo;
494 }
495
Craig Mautnera228ae92014-07-09 05:44:55 -0700496 void setPrevAffiliate(TaskRecord prevAffiliate) {
497 mPrevAffiliate = prevAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800498 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700499 }
500
501 void setNextAffiliate(TaskRecord nextAffiliate) {
502 mNextAffiliate = nextAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800503 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700504 }
505
506 // Close up recents linked list.
507 void closeRecentsChain() {
508 if (mPrevAffiliate != null) {
509 mPrevAffiliate.setNextAffiliate(mNextAffiliate);
510 }
511 if (mNextAffiliate != null) {
512 mNextAffiliate.setPrevAffiliate(mPrevAffiliate);
513 }
514 setPrevAffiliate(null);
515 setNextAffiliate(null);
516 }
517
Winson Chung740c3ac2014-11-12 16:14:38 -0800518 void removedFromRecents() {
Dianne Hackborn852975d2014-08-22 17:42:43 -0700519 disposeThumbnail();
520 closeRecentsChain();
521 if (inRecents) {
522 inRecents = false;
Winson Chung740c3ac2014-11-12 16:14:38 -0800523 mService.notifyTaskPersisterLocked(this, false);
Dianne Hackborn852975d2014-08-22 17:42:43 -0700524 }
525 }
526
Craig Mautnera228ae92014-07-09 05:44:55 -0700527 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
528 closeRecentsChain();
529 mAffiliatedTaskId = taskToAffiliateWith.mAffiliatedTaskId;
Winson Chungec396d62014-08-06 17:08:00 -0700530 mAffiliatedTaskColor = taskToAffiliateWith.mAffiliatedTaskColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700531 // Find the end
532 while (taskToAffiliateWith.mNextAffiliate != null) {
533 final TaskRecord nextRecents = taskToAffiliateWith.mNextAffiliate;
534 if (nextRecents.mAffiliatedTaskId != mAffiliatedTaskId) {
535 Slog.e(TAG, "setTaskToAffiliateWith: nextRecents=" + nextRecents + " affilTaskId="
536 + nextRecents.mAffiliatedTaskId + " should be " + mAffiliatedTaskId);
537 if (nextRecents.mPrevAffiliate == taskToAffiliateWith) {
538 nextRecents.setPrevAffiliate(null);
539 }
540 taskToAffiliateWith.setNextAffiliate(null);
541 break;
542 }
543 taskToAffiliateWith = nextRecents;
544 }
545 taskToAffiliateWith.setNextAffiliate(this);
546 setPrevAffiliate(taskToAffiliateWith);
547 setNextAffiliate(null);
548 }
549
Winson Chung096f36b2014-08-20 15:39:01 -0700550 /**
Winsonc809cbb2015-11-02 12:06:15 -0800551 * Sets the last thumbnail with the current task bounds and the system orientation.
Winson Chung096f36b2014-08-20 15:39:01 -0700552 * @return whether the thumbnail was set
553 */
Winsonc809cbb2015-11-02 12:06:15 -0800554 boolean setLastThumbnailLocked(Bitmap thumbnail) {
555 final Configuration serviceConfig = mService.mConfiguration;
556 int taskWidth = 0;
557 int taskHeight = 0;
558 if (mBounds != null) {
559 // Non-fullscreen tasks
560 taskWidth = mBounds.width();
561 taskHeight = mBounds.height();
562 } else if (stack != null) {
563 // Fullscreen tasks
564 final Point displaySize = new Point();
565 stack.getDisplaySize(displaySize);
566 taskWidth = displaySize.x;
567 taskHeight = displaySize.y;
568 } else {
569 Slog.e(TAG, "setLastThumbnailLocked() called on Task without stack");
570 }
571 return setLastThumbnailLocked(thumbnail, taskWidth, taskHeight, serviceConfig.orientation);
572 }
573
574 /**
575 * Sets the last thumbnail with the current task bounds.
576 * @return whether the thumbnail was set
577 */
578 private boolean setLastThumbnailLocked(Bitmap thumbnail, int taskWidth, int taskHeight,
579 int screenOrientation) {
Winson Chung096f36b2014-08-20 15:39:01 -0700580 if (mLastThumbnail != thumbnail) {
581 mLastThumbnail = thumbnail;
Winsonc809cbb2015-11-02 12:06:15 -0800582 mLastThumbnailInfo.taskWidth = taskWidth;
583 mLastThumbnailInfo.taskHeight = taskHeight;
584 mLastThumbnailInfo.screenOrientation = screenOrientation;
Winson Chung096f36b2014-08-20 15:39:01 -0700585 if (thumbnail == null) {
586 if (mLastThumbnailFile != null) {
587 mLastThumbnailFile.delete();
588 }
589 } else {
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800590 mService.mRecentTasks.saveImage(thumbnail, mLastThumbnailFile.getAbsolutePath());
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700591 }
Winson Chung096f36b2014-08-20 15:39:01 -0700592 return true;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700593 }
Winson Chung096f36b2014-08-20 15:39:01 -0700594 return false;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700595 }
596
597 void getLastThumbnail(TaskThumbnail thumbs) {
598 thumbs.mainThumbnail = mLastThumbnail;
Winsonc809cbb2015-11-02 12:06:15 -0800599 thumbs.thumbnailInfo = mLastThumbnailInfo;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700600 thumbs.thumbnailFileDescriptor = null;
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700601 if (mLastThumbnail == null) {
Suprabh Shukla09a88f52015-12-02 14:36:31 -0800602 thumbs.mainThumbnail = mService.mRecentTasks.getImageFromWriteQueue(
Suprabh Shukla23593142015-11-03 17:31:15 -0800603 mLastThumbnailFile.getAbsolutePath());
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700604 }
Winson Chung096f36b2014-08-20 15:39:01 -0700605 // Only load the thumbnail file if we don't have a thumbnail
606 if (thumbs.mainThumbnail == null && mLastThumbnailFile.exists()) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700607 try {
608 thumbs.thumbnailFileDescriptor = ParcelFileDescriptor.open(mLastThumbnailFile,
609 ParcelFileDescriptor.MODE_READ_ONLY);
610 } catch (IOException e) {
Dianne Hackborn9844d292013-10-04 16:44:22 -0700611 }
612 }
613 }
614
Winsonc809cbb2015-11-02 12:06:15 -0800615 /**
616 * Removes in-memory thumbnail data when the max number of in-memory task thumbnails is reached.
617 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700618 void freeLastThumbnail() {
619 mLastThumbnail = null;
620 }
621
Winsonc809cbb2015-11-02 12:06:15 -0800622 /**
623 * Removes all associated thumbnail data when a task is removed or pruned from recents.
624 */
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700625 void disposeThumbnail() {
Winsonc6a2da02015-11-11 18:11:59 -0800626 mLastThumbnailInfo.reset();
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700627 mLastThumbnail = null;
628 lastDescription = null;
629 }
630
Winson Chung1147c402014-05-14 11:05:00 -0700631 /** Returns the intent for the root activity for this task */
632 Intent getBaseIntent() {
633 return intent != null ? intent : affinityIntent;
634 }
635
Winson Chung3b3f4642014-04-22 10:08:18 -0700636 /** Returns the first non-finishing activity from the root. */
637 ActivityRecord getRootActivity() {
638 for (int i = 0; i < mActivities.size(); i++) {
639 final ActivityRecord r = mActivities.get(i);
640 if (r.finishing) {
641 continue;
642 }
643 return r;
644 }
645 return null;
646 }
647
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800648 ActivityRecord getTopActivity() {
649 for (int i = mActivities.size() - 1; i >= 0; --i) {
650 final ActivityRecord r = mActivities.get(i);
651 if (r.finishing) {
652 continue;
653 }
654 return r;
655 }
656 return null;
657 }
658
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700659 ActivityRecord topRunningActivityLocked() {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700660 if (stack != null) {
661 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
662 ActivityRecord r = mActivities.get(activityNdx);
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700663 if (!r.finishing && stack.okToShowLocked(r)) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700664 return r;
665 }
Craig Mautner6b74cb52013-09-27 17:02:21 -0700666 }
667 }
668 return null;
669 }
670
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800671 void setFrontOfTask() {
672 setFrontOfTask(null);
673 }
674
Craig Mautner3b475fe2013-12-16 15:58:31 -0800675 /** Call after activity movement or finish to make sure that frontOfTask is set correctly */
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800676 void setFrontOfTask(ActivityRecord newTop) {
677 // If a top candidate is suggested by the caller, go ahead and use it and mark all others
678 // as not front. This is needed in situations where the current front activity in the
679 // task isn't finished yet and we want to set the front to the activity moved to the front
680 // of the task.
681 boolean foundFront = newTop != null ? true : false;
682
Craig Mautner3b475fe2013-12-16 15:58:31 -0800683 final int numActivities = mActivities.size();
Craig Mautner704e40b2013-12-18 16:43:51 -0800684 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
Craig Mautner3b475fe2013-12-16 15:58:31 -0800685 final ActivityRecord r = mActivities.get(activityNdx);
686 if (foundFront || r.finishing) {
687 r.frontOfTask = false;
688 } else {
689 r.frontOfTask = true;
690 // Set frontOfTask false for every following activity.
691 foundFront = true;
692 }
693 }
Craig Mautner9587ee02014-06-23 15:00:10 +0000694 if (!foundFront && numActivities > 0) {
695 // All activities of this task are finishing. As we ought to have a frontOfTask
696 // activity, make the bottom activity front.
697 mActivities.get(0).frontOfTask = true;
698 }
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800699 if (newTop != null) {
700 newTop.frontOfTask = true;
701 }
Craig Mautner3b475fe2013-12-16 15:58:31 -0800702 }
703
Craig Mautnerde4ef022013-04-07 19:01:33 -0700704 /**
Craig Mautner3b475fe2013-12-16 15:58:31 -0800705 * Reorder the history stack so that the passed activity is brought to the front.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700706 */
707 final void moveActivityToFrontLocked(ActivityRecord newTop) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700708 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
709 "Removing and adding activity " + newTop
710 + " to stack at top callers=" + Debug.getCallers(4));
Craig Mautnerde4ef022013-04-07 19:01:33 -0700711
Craig Mautnerde4ef022013-04-07 19:01:33 -0700712 mActivities.remove(newTop);
713 mActivities.add(newTop);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700714 updateEffectiveIntent();
Craig Mautner3b475fe2013-12-16 15:58:31 -0800715
Wale Ogunwale6d42df62015-11-05 09:50:55 -0800716 setFrontOfTask(newTop);
Craig Mautnerde4ef022013-04-07 19:01:33 -0700717 }
718
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800719 void addActivityAtBottom(ActivityRecord r) {
Craig Mautner77878772013-03-04 19:46:24 -0800720 addActivityAtIndex(0, r);
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800721 }
722
723 void addActivityToTop(ActivityRecord r) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700724 addActivityAtIndex(mActivities.size(), r);
725 }
726
727 void addActivityAtIndex(int index, ActivityRecord r) {
Craig Mautner6170f732013-04-02 13:05:23 -0700728 // 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 -0800729 if (!mActivities.remove(r) && r.fullscreen) {
730 // Was not previously in list.
731 numFullscreen++;
732 }
Craig Mautner2c1faed2013-07-23 12:56:02 -0700733 // Only set this based on the first activity
734 if (mActivities.isEmpty()) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700735 taskType = r.mActivityType;
736 isPersistable = r.isPersistable();
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700737 mCallingUid = r.launchedFromUid;
738 mCallingPackage = r.launchedFromPackage;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700739 // Clamp to [1, max].
740 maxRecents = Math.min(Math.max(r.info.maxRecents, 1),
741 ActivityManager.getMaxAppRecentsLimitStatic());
Craig Mautner2c1faed2013-07-23 12:56:02 -0700742 } else {
743 // Otherwise make all added activities match this one.
Craig Mautner21d24a22014-04-23 11:45:37 -0700744 r.mActivityType = taskType;
Craig Mautner78733002013-06-10 13:54:49 -0700745 }
Craig Mautner77878772013-03-04 19:46:24 -0800746 mActivities.add(index, r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700747 updateEffectiveIntent();
Craig Mautner21d24a22014-04-23 11:45:37 -0700748 if (r.isPersistable()) {
749 mService.notifyTaskPersisterLocked(this, false);
750 }
Craig Mautner77878772013-03-04 19:46:24 -0800751 }
752
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800753 /** @return true if this was the last activity in the task */
754 boolean removeActivity(ActivityRecord r) {
755 if (mActivities.remove(r) && r.fullscreen) {
756 // Was previously in list.
757 numFullscreen--;
758 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700759 if (r.isPersistable()) {
760 mService.notifyTaskPersisterLocked(this, false);
761 }
Wale Ogunwale89182d52016-03-11 10:38:36 -0800762
763 if (stack != null && stack.mStackId == PINNED_STACK_ID) {
764 // We normally notify listeners of task stack changes on pause, however pinned stack
765 // activities are normally in the paused state so no notification will be sent there
766 // before the activity is removed. We send it here so instead.
767 mService.notifyTaskStackChangedLocked();
768 }
769
Craig Mautner41326202014-06-20 14:38:21 -0700770 if (mActivities.isEmpty()) {
Craig Mautner5afcd4d2014-06-21 18:11:33 -0700771 return !mReuseTask;
Craig Mautner41326202014-06-20 14:38:21 -0700772 }
773 updateEffectiveIntent();
774 return false;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800775 }
776
Craig Mautner41db4a72014-05-07 17:20:56 -0700777 boolean autoRemoveFromRecents() {
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700778 // We will automatically remove the task either if it has explicitly asked for
779 // this, or it is empty and has never contained an activity that got shown to
780 // the user.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700781 return autoRemoveRecents || (mActivities.isEmpty() && !hasBeenVisible);
Craig Mautner41db4a72014-05-07 17:20:56 -0700782 }
783
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700784 /**
785 * Completely remove all activities associated with an existing
786 * task starting at a specified index.
787 */
788 final void performClearTaskAtIndexLocked(int activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700789 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700790 for ( ; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700791 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700792 if (r.finishing) {
793 continue;
794 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700795 if (stack == null) {
796 // Task was restored from persistent storage.
797 r.takeFromHistory();
798 mActivities.remove(activityNdx);
799 --activityNdx;
800 --numActivities;
Todd Kennedy539db512014-12-15 09:57:55 -0800801 } else if (stack.finishActivityLocked(
802 r, Activity.RESULT_CANCELED, null, "clear-task-index", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700803 --activityNdx;
804 --numActivities;
805 }
806 }
807 }
808
809 /**
810 * Completely remove all activities associated with an existing task.
811 */
812 final void performClearTaskLocked() {
Craig Mautner362449a2014-06-20 14:04:39 -0700813 mReuseTask = true;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700814 performClearTaskAtIndexLocked(0);
Craig Mautner362449a2014-06-20 14:04:39 -0700815 mReuseTask = false;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700816 }
817
Filip Gruszczynskibe9dabd2016-01-19 12:23:10 -0800818 ActivityRecord performClearTaskForReuseLocked(ActivityRecord newR, int launchFlags) {
819 mReuseTask = true;
820 final ActivityRecord result = performClearTaskLocked(newR, launchFlags);
821 mReuseTask = false;
822 return result;
823 }
824
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700825 /**
826 * Perform clear operation as requested by
827 * {@link Intent#FLAG_ACTIVITY_CLEAR_TOP}: search from the top of the
828 * stack to the given task, then look for
829 * an instance of that activity in the stack and, if found, finish all
830 * activities on top of it and return the instance.
831 *
832 * @param newR Description of the new activity being started.
833 * @return Returns the old activity that should be continued to be used,
834 * or null if none was found.
835 */
836 final ActivityRecord performClearTaskLocked(ActivityRecord newR, int launchFlags) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700837 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700838 for (int activityNdx = numActivities - 1; activityNdx >= 0; --activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700839 ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700840 if (r.finishing) {
841 continue;
842 }
843 if (r.realActivity.equals(newR.realActivity)) {
844 // Here it is! Now finish everything in front...
Craig Mautner1602ec22013-05-12 10:24:27 -0700845 final ActivityRecord ret = r;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700846
847 for (++activityNdx; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700848 r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700849 if (r.finishing) {
850 continue;
851 }
852 ActivityOptions opts = r.takeOptionsLocked();
853 if (opts != null) {
854 ret.updateOptionsLocked(opts);
855 }
Wale Ogunwale7d701172015-03-11 15:36:30 -0700856 if (stack != null && stack.finishActivityLocked(
Todd Kennedy539db512014-12-15 09:57:55 -0800857 r, Activity.RESULT_CANCELED, null, "clear-task-stack", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700858 --activityNdx;
859 --numActivities;
860 }
861 }
862
863 // Finally, if this is a normal launch mode (that is, not
864 // expecting onNewIntent()), then we will finish the current
865 // instance of the activity so a new fresh one can be started.
866 if (ret.launchMode == ActivityInfo.LAUNCH_MULTIPLE
867 && (launchFlags & Intent.FLAG_ACTIVITY_SINGLE_TOP) == 0) {
868 if (!ret.finishing) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700869 if (stack != null) {
870 stack.finishActivityLocked(
871 ret, Activity.RESULT_CANCELED, null, "clear-task-top", false);
872 }
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700873 return null;
874 }
875 }
876
877 return ret;
878 }
879 }
880
881 return null;
882 }
883
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700884 public TaskThumbnail getTaskThumbnailLocked() {
Craig Mautner21d24a22014-04-23 11:45:37 -0700885 if (stack != null) {
886 final ActivityRecord resumedActivity = stack.mResumedActivity;
887 if (resumedActivity != null && resumedActivity.task == this) {
Winson8b1871d2015-11-20 09:56:20 -0800888 final Bitmap thumbnail = stack.screenshotActivitiesLocked(resumedActivity);
Winsonc809cbb2015-11-02 12:06:15 -0800889 setLastThumbnailLocked(thumbnail);
Craig Mautner21d24a22014-04-23 11:45:37 -0700890 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700891 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700892 final TaskThumbnail taskThumbnail = new TaskThumbnail();
893 getLastThumbnail(taskThumbnail);
894 return taskThumbnail;
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700895 }
896
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700897 public void removeTaskActivitiesLocked() {
898 // Just remove the entire task.
899 performClearTaskAtIndexLocked(0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700900 }
901
Craig Mautner432f64e2015-05-20 14:59:57 -0700902 String lockTaskAuthToString() {
903 switch (mLockTaskAuth) {
904 case LOCK_TASK_AUTH_DONT_LOCK: return "LOCK_TASK_AUTH_DONT_LOCK";
905 case LOCK_TASK_AUTH_PINNABLE: return "LOCK_TASK_AUTH_PINNABLE";
906 case LOCK_TASK_AUTH_LAUNCHABLE: return "LOCK_TASK_AUTH_LAUNCHABLE";
907 case LOCK_TASK_AUTH_WHITELISTED: return "LOCK_TASK_AUTH_WHITELISTED";
Benjamin Franz469dd582015-06-09 14:24:36 +0100908 case LOCK_TASK_AUTH_LAUNCHABLE_PRIV: return "LOCK_TASK_AUTH_LAUNCHABLE_PRIV";
Craig Mautner432f64e2015-05-20 14:59:57 -0700909 default: return "unknown=" + mLockTaskAuth;
910 }
911 }
912
Craig Mautner15df08a2015-04-01 12:17:18 -0700913 void setLockTaskAuth() {
Benjamin Franz469dd582015-06-09 14:24:36 +0100914 if (!mPrivileged &&
915 (mLockTaskMode == LOCK_TASK_LAUNCH_MODE_ALWAYS ||
916 mLockTaskMode == LOCK_TASK_LAUNCH_MODE_NEVER)) {
917 // Non-priv apps are not allowed to use always or never, fall back to default
918 mLockTaskMode = LOCK_TASK_LAUNCH_MODE_DEFAULT;
919 }
Craig Mautner15df08a2015-04-01 12:17:18 -0700920 switch (mLockTaskMode) {
921 case LOCK_TASK_LAUNCH_MODE_DEFAULT:
922 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
923 LOCK_TASK_AUTH_WHITELISTED : LOCK_TASK_AUTH_PINNABLE;
924 break;
925
926 case LOCK_TASK_LAUNCH_MODE_NEVER:
Benjamin Franz469dd582015-06-09 14:24:36 +0100927 mLockTaskAuth = LOCK_TASK_AUTH_DONT_LOCK;
Craig Mautner15df08a2015-04-01 12:17:18 -0700928 break;
929
930 case LOCK_TASK_LAUNCH_MODE_ALWAYS:
Benjamin Franz469dd582015-06-09 14:24:36 +0100931 mLockTaskAuth = LOCK_TASK_AUTH_LAUNCHABLE_PRIV;
Craig Mautner15df08a2015-04-01 12:17:18 -0700932 break;
933
934 case LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED:
935 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
936 LOCK_TASK_AUTH_LAUNCHABLE : LOCK_TASK_AUTH_PINNABLE;
937 break;
938 }
Craig Mautner432f64e2015-05-20 14:59:57 -0700939 if (DEBUG_LOCKTASK) Slog.d(TAG_LOCKTASK, "setLockTaskAuth: task=" + this +
940 " mLockTaskAuth=" + lockTaskAuthToString());
Craig Mautner15df08a2015-04-01 12:17:18 -0700941 }
942
943 boolean isLockTaskWhitelistedLocked() {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +0100944 String pkg = (realActivity != null) ? realActivity.getPackageName() : null;
945 if (pkg == null) {
Craig Mautner15df08a2015-04-01 12:17:18 -0700946 return false;
947 }
948 String[] packages = mService.mLockTaskPackages.get(userId);
949 if (packages == null) {
950 return false;
951 }
952 for (int i = packages.length - 1; i >= 0; --i) {
Benjamin Franz6fd84cc2015-08-06 18:09:03 +0100953 if (pkg.equals(packages[i])) {
Craig Mautner15df08a2015-04-01 12:17:18 -0700954 return true;
955 }
956 }
957 return false;
958 }
Wale Ogunwale74e26592016-02-05 11:48:37 -0800959
Craig Mautnera82aa092013-09-13 15:34:08 -0700960 boolean isHomeTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -0700961 return taskType == HOME_ACTIVITY_TYPE;
Craig Mautnera82aa092013-09-13 15:34:08 -0700962 }
963
Wale Ogunwale74e26592016-02-05 11:48:37 -0800964 boolean isRecentsTask() {
965 return taskType == RECENTS_ACTIVITY_TYPE;
966 }
967
Craig Mautner86d67a42013-05-14 10:34:38 -0700968 boolean isApplicationTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -0700969 return taskType == APPLICATION_ACTIVITY_TYPE;
970 }
971
972 boolean isOverHomeStack() {
973 return mTaskToReturnTo == HOME_ACTIVITY_TYPE || mTaskToReturnTo == RECENTS_ACTIVITY_TYPE;
Craig Mautner1602ec22013-05-12 10:24:27 -0700974 }
975
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800976 boolean isResizeable() {
977 return !isHomeTask() && (mService.mForceResizableActivities
Jorim Jaggi8202b2a2016-02-03 19:24:31 -0800978 || ActivityInfo.isResizeableMode(mResizeMode)) && !mTemporarilyUnresizable;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800979 }
980
981 boolean inCropWindowsResizeMode() {
982 return !isResizeable() && mResizeMode == RESIZE_MODE_CROP_WINDOWS;
983 }
984
Wale Ogunwale513346d2016-01-27 10:55:01 -0800985 boolean canGoInDockedStack() {
986 return isResizeable() || inCropWindowsResizeMode();
987 }
988
Craig Mautner525f3d92013-05-07 14:01:50 -0700989 /**
990 * Find the activity in the history stack within the given task. Returns
991 * the index within the history at which it's found, or < 0 if not found.
992 */
993 final ActivityRecord findActivityInHistoryLocked(ActivityRecord r) {
994 final ComponentName realActivity = r.realActivity;
995 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
996 ActivityRecord candidate = mActivities.get(activityNdx);
997 if (candidate.finishing) {
998 continue;
999 }
1000 if (candidate.realActivity.equals(realActivity)) {
1001 return candidate;
1002 }
1003 }
1004 return null;
1005 }
1006
Winson Chunga449dc02014-05-16 11:15:04 -07001007 /** Updates the last task description values. */
1008 void updateTaskDescription() {
1009 // Traverse upwards looking for any break between main task activities and
1010 // utility activities.
1011 int activityNdx;
1012 final int numActivities = mActivities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001013 final boolean relinquish = numActivities == 0 ? false :
1014 (mActivities.get(0).info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) != 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001015 for (activityNdx = Math.min(numActivities, 1); activityNdx < numActivities;
Craig Mautner21d24a22014-04-23 11:45:37 -07001016 ++activityNdx) {
Winson Chunga449dc02014-05-16 11:15:04 -07001017 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001018 if (relinquish && (r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
1019 // This will be the top activity for determining taskDescription. Pre-inc to
1020 // overcome initial decrement below.
1021 ++activityNdx;
1022 break;
1023 }
Winson Chunga449dc02014-05-16 11:15:04 -07001024 if (r.intent != null &&
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001025 (r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Winson Chunga449dc02014-05-16 11:15:04 -07001026 break;
1027 }
1028 }
1029 if (activityNdx > 0) {
1030 // Traverse downwards starting below break looking for set label, icon.
1031 // Note that if there are activities in the task but none of them set the
1032 // recent activity values, then we do not fall back to the last set
1033 // values in the TaskRecord.
1034 String label = null;
Craig Mautner648f69b2014-09-18 14:16:26 -07001035 String iconFilename = null;
Winson Chunga449dc02014-05-16 11:15:04 -07001036 int colorPrimary = 0;
Winson Chung1af8eda2016-02-05 17:55:56 +00001037 int colorBackground = 0;
Winson Chunga449dc02014-05-16 11:15:04 -07001038 for (--activityNdx; activityNdx >= 0; --activityNdx) {
1039 final ActivityRecord r = mActivities.get(activityNdx);
1040 if (r.taskDescription != null) {
1041 if (label == null) {
1042 label = r.taskDescription.getLabel();
1043 }
Craig Mautner648f69b2014-09-18 14:16:26 -07001044 if (iconFilename == null) {
1045 iconFilename = r.taskDescription.getIconFilename();
Winson Chunga449dc02014-05-16 11:15:04 -07001046 }
1047 if (colorPrimary == 0) {
1048 colorPrimary = r.taskDescription.getPrimaryColor();
Winson Chunga449dc02014-05-16 11:15:04 -07001049 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001050 if (colorBackground == 0) {
1051 colorBackground = r.taskDescription.getBackgroundColor();
1052 }
Winson Chunga449dc02014-05-16 11:15:04 -07001053 }
1054 }
Winson Chung1af8eda2016-02-05 17:55:56 +00001055 lastTaskDescription = new TaskDescription(label, null, iconFilename, colorPrimary,
1056 colorBackground);
Winson Chungec396d62014-08-06 17:08:00 -07001057 // Update the task affiliation color if we are the parent of the group
1058 if (taskId == mAffiliatedTaskId) {
1059 mAffiliatedTaskColor = lastTaskDescription.getPrimaryColor();
1060 }
Winson Chunga449dc02014-05-16 11:15:04 -07001061 }
1062 }
1063
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001064 int findEffectiveRootIndex() {
Craig Mautner4767f4b2014-09-18 15:38:33 -07001065 int effectiveNdx = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001066 final int topActivityNdx = mActivities.size() - 1;
Dianne Hackborn39569af2014-09-23 10:56:58 -07001067 for (int activityNdx = 0; activityNdx <= topActivityNdx; ++activityNdx) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001068 final ActivityRecord r = mActivities.get(activityNdx);
1069 if (r.finishing) {
1070 continue;
1071 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001072 effectiveNdx = activityNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001073 if ((r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
1074 break;
1075 }
1076 }
Craig Mautner4767f4b2014-09-18 15:38:33 -07001077 return effectiveNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001078 }
1079
1080 void updateEffectiveIntent() {
1081 final int effectiveRootIndex = findEffectiveRootIndex();
1082 final ActivityRecord r = mActivities.get(effectiveRootIndex);
Winson Chungfee26772014-08-05 12:21:52 -07001083 setIntent(r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001084 }
1085
Craig Mautner21d24a22014-04-23 11:45:37 -07001086 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001087 if (DEBUG_RECENTS) Slog.i(TAG_RECENTS, "Saving task=" + this);
Craig Mautner21d24a22014-04-23 11:45:37 -07001088
1089 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
1090 if (realActivity != null) {
1091 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
1092 }
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001093 out.attribute(null, ATTR_REALACTIVITY_SUSPENDED, String.valueOf(realActivitySuspended));
Craig Mautner21d24a22014-04-23 11:45:37 -07001094 if (origActivity != null) {
1095 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
1096 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001097 // Write affinity, and root affinity if it is different from affinity.
1098 // We use the special string "@" for a null root affinity, so we can identify
1099 // later whether we were given a root affinity or should just make it the
1100 // same as the affinity.
Craig Mautner21d24a22014-04-23 11:45:37 -07001101 if (affinity != null) {
1102 out.attribute(null, ATTR_AFFINITY, affinity);
Dianne Hackborn79228822014-09-16 11:11:23 -07001103 if (!affinity.equals(rootAffinity)) {
1104 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
1105 }
1106 } else if (rootAffinity != null) {
1107 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
Craig Mautner21d24a22014-04-23 11:45:37 -07001108 }
1109 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
Dianne Hackborn13420f22014-07-18 15:43:56 -07001110 out.attribute(null, ATTR_AUTOREMOVERECENTS, String.valueOf(autoRemoveRecents));
Craig Mautner21d24a22014-04-23 11:45:37 -07001111 out.attribute(null, ATTR_ASKEDCOMPATMODE, String.valueOf(askedCompatMode));
1112 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001113 out.attribute(null, ATTR_USER_SETUP_COMPLETE, String.valueOf(mUserSetupComplete));
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001114 out.attribute(null, ATTR_EFFECTIVE_UID, String.valueOf(effectiveUid));
Craig Mautner21d24a22014-04-23 11:45:37 -07001115 out.attribute(null, ATTR_TASKTYPE, String.valueOf(taskType));
Winson Chungffa2ec62014-07-03 15:54:42 -07001116 out.attribute(null, ATTR_FIRSTACTIVETIME, String.valueOf(firstActiveTime));
Winson Chungf1fbd772014-06-24 18:06:58 -07001117 out.attribute(null, ATTR_LASTACTIVETIME, String.valueOf(lastActiveTime));
Craig Mautner21d24a22014-04-23 11:45:37 -07001118 out.attribute(null, ATTR_LASTTIMEMOVED, String.valueOf(mLastTimeMoved));
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001119 out.attribute(null, ATTR_NEVERRELINQUISH, String.valueOf(mNeverRelinquishIdentity));
Craig Mautner21d24a22014-04-23 11:45:37 -07001120 if (lastDescription != null) {
1121 out.attribute(null, ATTR_LASTDESCRIPTION, lastDescription.toString());
1122 }
Winson Chung2cb86c72014-06-25 12:03:30 -07001123 if (lastTaskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001124 lastTaskDescription.saveToXml(out);
Winson Chung2cb86c72014-06-25 12:03:30 -07001125 }
Winsonc809cbb2015-11-02 12:06:15 -08001126 mLastThumbnailInfo.saveToXml(out);
Winson Chungec396d62014-08-06 17:08:00 -07001127 out.attribute(null, ATTR_TASK_AFFILIATION_COLOR, String.valueOf(mAffiliatedTaskColor));
Craig Mautnera228ae92014-07-09 05:44:55 -07001128 out.attribute(null, ATTR_TASK_AFFILIATION, String.valueOf(mAffiliatedTaskId));
1129 out.attribute(null, ATTR_PREV_AFFILIATION, String.valueOf(mPrevAffiliateTaskId));
1130 out.attribute(null, ATTR_NEXT_AFFILIATION, String.valueOf(mNextAffiliateTaskId));
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001131 out.attribute(null, ATTR_CALLING_UID, String.valueOf(mCallingUid));
1132 out.attribute(null, ATTR_CALLING_PACKAGE, mCallingPackage == null ? "" : mCallingPackage);
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001133 out.attribute(null, ATTR_RESIZE_MODE, String.valueOf(mResizeMode));
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001134 out.attribute(null, ATTR_PRIVILEGED, String.valueOf(mPrivileged));
Wale Ogunwale706ed792015-08-02 10:29:44 -07001135 if (mLastNonFullscreenBounds != null) {
1136 out.attribute(
1137 null, ATTR_NON_FULLSCREEN_BOUNDS, mLastNonFullscreenBounds.flattenToString());
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001138 }
Winson Chung2cb86c72014-06-25 12:03:30 -07001139
Craig Mautner21d24a22014-04-23 11:45:37 -07001140 if (affinityIntent != null) {
1141 out.startTag(null, TAG_AFFINITYINTENT);
1142 affinityIntent.saveToXml(out);
1143 out.endTag(null, TAG_AFFINITYINTENT);
1144 }
1145
1146 out.startTag(null, TAG_INTENT);
1147 intent.saveToXml(out);
1148 out.endTag(null, TAG_INTENT);
1149
1150 final ArrayList<ActivityRecord> activities = mActivities;
1151 final int numActivities = activities.size();
1152 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
1153 final ActivityRecord r = activities.get(activityNdx);
Craig Mautner43e52ed2014-06-16 17:18:52 -07001154 if (r.info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY || !r.isPersistable() ||
Wale Ogunwale843bfb92015-03-27 11:06:48 -07001155 ((r.intent.getFlags() & FLAG_ACTIVITY_NEW_DOCUMENT
1156 | FLAG_ACTIVITY_RETAIN_IN_RECENTS) == FLAG_ACTIVITY_NEW_DOCUMENT) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -07001157 activityNdx > 0) {
Craig Mautnerf357c0c2014-06-09 09:23:27 -07001158 // Stop at first non-persistable or first break in task (CLEAR_WHEN_TASK_RESET).
Craig Mautner21d24a22014-04-23 11:45:37 -07001159 break;
1160 }
1161 out.startTag(null, TAG_ACTIVITY);
1162 r.saveToXml(out);
1163 out.endTag(null, TAG_ACTIVITY);
1164 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001165 }
1166
1167 static TaskRecord restoreFromXml(XmlPullParser in, ActivityStackSupervisor stackSupervisor)
1168 throws IOException, XmlPullParserException {
1169 Intent intent = null;
1170 Intent affinityIntent = null;
Winsonc809cbb2015-11-02 12:06:15 -08001171 ArrayList<ActivityRecord> activities = new ArrayList<>();
Craig Mautner21d24a22014-04-23 11:45:37 -07001172 ComponentName realActivity = null;
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001173 boolean realActivitySuspended = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001174 ComponentName origActivity = null;
1175 String affinity = null;
Dianne Hackborn79228822014-09-16 11:11:23 -07001176 String rootAffinity = null;
1177 boolean hasRootAffinity = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001178 boolean rootHasReset = false;
Dianne Hackborn13420f22014-07-18 15:43:56 -07001179 boolean autoRemoveRecents = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001180 boolean askedCompatMode = false;
1181 int taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -07001182 int userId = 0;
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001183 boolean userSetupComplete = true;
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001184 int effectiveUid = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001185 String lastDescription = null;
Winson Chungffa2ec62014-07-03 15:54:42 -07001186 long firstActiveTime = -1;
Winson Chung2cb86c72014-06-25 12:03:30 -07001187 long lastActiveTime = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -07001188 long lastTimeOnTop = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001189 boolean neverRelinquishIdentity = true;
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001190 int taskId = INVALID_TASK_ID;
Craig Mautner21d24a22014-04-23 11:45:37 -07001191 final int outerDepth = in.getDepth();
Craig Mautner648f69b2014-09-18 14:16:26 -07001192 TaskDescription taskDescription = new TaskDescription();
Winsonc809cbb2015-11-02 12:06:15 -08001193 TaskThumbnailInfo thumbnailInfo = new TaskThumbnailInfo();
Wale Ogunwale18795a22014-12-03 11:38:33 -08001194 int taskAffiliation = INVALID_TASK_ID;
Winson Chungec396d62014-08-06 17:08:00 -07001195 int taskAffiliationColor = 0;
Wale Ogunwale18795a22014-12-03 11:38:33 -08001196 int prevTaskId = INVALID_TASK_ID;
1197 int nextTaskId = INVALID_TASK_ID;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001198 int callingUid = -1;
1199 String callingPackage = "";
Wale Ogunwaled829d362016-02-10 19:24:49 -08001200 int resizeMode = RESIZE_MODE_FORCE_RESIZEABLE;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001201 boolean privileged = false;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001202 Rect bounds = null;
Craig Mautner21d24a22014-04-23 11:45:37 -07001203
1204 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1205 final String attrName = in.getAttributeName(attrNdx);
1206 final String attrValue = in.getAttributeValue(attrNdx);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001207 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: attribute name=" +
1208 attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001209 if (ATTR_TASKID.equals(attrName)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001210 if (taskId == INVALID_TASK_ID) taskId = Integer.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001211 } else if (ATTR_REALACTIVITY.equals(attrName)) {
1212 realActivity = ComponentName.unflattenFromString(attrValue);
Andrei Stingaceanu4ccec532016-01-13 12:10:21 +00001213 } else if (ATTR_REALACTIVITY_SUSPENDED.equals(attrName)) {
1214 realActivitySuspended = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001215 } else if (ATTR_ORIGACTIVITY.equals(attrName)) {
1216 origActivity = ComponentName.unflattenFromString(attrValue);
1217 } else if (ATTR_AFFINITY.equals(attrName)) {
1218 affinity = attrValue;
Dianne Hackborn79228822014-09-16 11:11:23 -07001219 } else if (ATTR_ROOT_AFFINITY.equals(attrName)) {
1220 rootAffinity = attrValue;
1221 hasRootAffinity = true;
Craig Mautner21d24a22014-04-23 11:45:37 -07001222 } else if (ATTR_ROOTHASRESET.equals(attrName)) {
1223 rootHasReset = Boolean.valueOf(attrValue);
Dianne Hackborn13420f22014-07-18 15:43:56 -07001224 } else if (ATTR_AUTOREMOVERECENTS.equals(attrName)) {
1225 autoRemoveRecents = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001226 } else if (ATTR_ASKEDCOMPATMODE.equals(attrName)) {
1227 askedCompatMode = Boolean.valueOf(attrValue);
1228 } else if (ATTR_USERID.equals(attrName)) {
1229 userId = Integer.valueOf(attrValue);
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001230 } else if (ATTR_USER_SETUP_COMPLETE.equals(attrName)) {
1231 userSetupComplete = Boolean.valueOf(attrValue);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001232 } else if (ATTR_EFFECTIVE_UID.equals(attrName)) {
1233 effectiveUid = Integer.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001234 } else if (ATTR_TASKTYPE.equals(attrName)) {
1235 taskType = Integer.valueOf(attrValue);
Winson Chungffa2ec62014-07-03 15:54:42 -07001236 } else if (ATTR_FIRSTACTIVETIME.equals(attrName)) {
1237 firstActiveTime = Long.valueOf(attrValue);
Winson Chungf1fbd772014-06-24 18:06:58 -07001238 } else if (ATTR_LASTACTIVETIME.equals(attrName)) {
1239 lastActiveTime = Long.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001240 } else if (ATTR_LASTDESCRIPTION.equals(attrName)) {
1241 lastDescription = attrValue;
1242 } else if (ATTR_LASTTIMEMOVED.equals(attrName)) {
1243 lastTimeOnTop = Long.valueOf(attrValue);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001244 } else if (ATTR_NEVERRELINQUISH.equals(attrName)) {
1245 neverRelinquishIdentity = Boolean.valueOf(attrValue);
Winsonc809cbb2015-11-02 12:06:15 -08001246 } else if (attrName.startsWith(TaskThumbnailInfo.ATTR_TASK_THUMBNAILINFO_PREFIX)) {
1247 thumbnailInfo.restoreFromXml(attrName, attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001248 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1249 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001250 } else if (ATTR_TASK_AFFILIATION.equals(attrName)) {
1251 taskAffiliation = Integer.valueOf(attrValue);
1252 } else if (ATTR_PREV_AFFILIATION.equals(attrName)) {
1253 prevTaskId = Integer.valueOf(attrValue);
1254 } else if (ATTR_NEXT_AFFILIATION.equals(attrName)) {
1255 nextTaskId = Integer.valueOf(attrValue);
Winson Chungec396d62014-08-06 17:08:00 -07001256 } else if (ATTR_TASK_AFFILIATION_COLOR.equals(attrName)) {
1257 taskAffiliationColor = Integer.valueOf(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001258 } else if (ATTR_CALLING_UID.equals(attrName)) {
1259 callingUid = Integer.valueOf(attrValue);
1260 } else if (ATTR_CALLING_PACKAGE.equals(attrName)) {
1261 callingPackage = attrValue;
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001262 } else if (ATTR_RESIZE_MODE.equals(attrName)) {
1263 resizeMode = Integer.valueOf(attrValue);
Wale Ogunwaled829d362016-02-10 19:24:49 -08001264 resizeMode = (resizeMode == RESIZE_MODE_CROP_WINDOWS)
1265 ? RESIZE_MODE_FORCE_RESIZEABLE : resizeMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001266 } else if (ATTR_PRIVILEGED.equals(attrName)) {
1267 privileged = Boolean.valueOf(attrValue);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001268 } else if (ATTR_NON_FULLSCREEN_BOUNDS.equals(attrName)) {
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001269 bounds = Rect.unflattenFromString(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001270 } else {
1271 Slog.w(TAG, "TaskRecord: Unknown attribute=" + attrName);
1272 }
1273 }
1274
1275 int event;
1276 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
Ben Kwa8814cf42015-07-08 10:54:56 -07001277 (event != XmlPullParser.END_TAG || in.getDepth() >= outerDepth)) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001278 if (event == XmlPullParser.START_TAG) {
1279 final String name = in.getName();
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001280 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: START_TAG name=" +
1281 name);
Craig Mautner21d24a22014-04-23 11:45:37 -07001282 if (TAG_AFFINITYINTENT.equals(name)) {
1283 affinityIntent = Intent.restoreFromXml(in);
1284 } else if (TAG_INTENT.equals(name)) {
1285 intent = Intent.restoreFromXml(in);
1286 } else if (TAG_ACTIVITY.equals(name)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001287 ActivityRecord activity = ActivityRecord.restoreFromXml(in, stackSupervisor);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001288 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: activity=" +
1289 activity);
Craig Mautner21d24a22014-04-23 11:45:37 -07001290 if (activity != null) {
1291 activities.add(activity);
1292 }
1293 } else {
1294 Slog.e(TAG, "restoreTask: Unexpected name=" + name);
1295 XmlUtils.skipCurrentTag(in);
1296 }
1297 }
1298 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001299 if (!hasRootAffinity) {
1300 rootAffinity = affinity;
1301 } else if ("@".equals(rootAffinity)) {
1302 rootAffinity = null;
1303 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001304 if (effectiveUid <= 0) {
1305 Intent checkIntent = intent != null ? intent : affinityIntent;
1306 effectiveUid = 0;
1307 if (checkIntent != null) {
1308 IPackageManager pm = AppGlobals.getPackageManager();
1309 try {
1310 ApplicationInfo ai = pm.getApplicationInfo(
1311 checkIntent.getComponent().getPackageName(),
1312 PackageManager.GET_UNINSTALLED_PACKAGES
1313 | PackageManager.GET_DISABLED_COMPONENTS, userId);
1314 if (ai != null) {
1315 effectiveUid = ai.uid;
1316 }
1317 } catch (RemoteException e) {
1318 }
1319 }
1320 Slog.w(TAG, "Updating task #" + taskId + " for " + checkIntent
1321 + ": effectiveUid=" + effectiveUid);
1322 }
1323
Craig Mautner21d24a22014-04-23 11:45:37 -07001324 final TaskRecord task = new TaskRecord(stackSupervisor.mService, taskId, intent,
Dianne Hackborn79228822014-09-16 11:11:23 -07001325 affinityIntent, affinity, rootAffinity, realActivity, origActivity, rootHasReset,
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001326 autoRemoveRecents, askedCompatMode, taskType, userId, effectiveUid, lastDescription,
1327 activities, firstActiveTime, lastActiveTime, lastTimeOnTop, neverRelinquishIdentity,
Winsonc809cbb2015-11-02 12:06:15 -08001328 taskDescription, thumbnailInfo, taskAffiliation, prevTaskId, nextTaskId,
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001329 taskAffiliationColor, callingUid, callingPackage, resizeMode, privileged,
Wale Ogunwalef80170f2016-02-04 15:12:29 -08001330 realActivitySuspended, userSetupComplete);
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07001331 task.updateOverrideConfiguration(bounds);
Craig Mautner21d24a22014-04-23 11:45:37 -07001332
1333 for (int activityNdx = activities.size() - 1; activityNdx >=0; --activityNdx) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001334 activities.get(activityNdx).task = task;
Craig Mautner21d24a22014-04-23 11:45:37 -07001335 }
1336
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001337 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "Restored task=" + task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001338 return task;
1339 }
1340
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001341 private void adjustForMinimalTaskDimensions(Rect bounds) {
1342 if (bounds == null) {
1343 return;
1344 }
Robert Carr9c5867d2016-03-10 15:52:46 -08001345 int minimalSize = mMinimalSize;
1346 // If the task has no requested minimal size, we'd like to enforce a minimal size
1347 // so that the user can not render the task too small to manipulate. We don't need
1348 // to do this for the pinned stack as the bounds are controlled by the system.
1349 if (minimalSize == -1 && stack.mStackId != PINNED_STACK_ID) {
1350 minimalSize = mService.mStackSupervisor.mDefaultMinimalSizeOfResizeableTask;
1351 }
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001352 final boolean adjustWidth = minimalSize > bounds.width();
1353 final boolean adjustHeight = minimalSize > bounds.height();
1354 if (!(adjustWidth || adjustHeight)) {
1355 return;
1356 }
1357
1358 if (adjustWidth) {
1359 if (mBounds != null && bounds.right == mBounds.right) {
1360 bounds.left = bounds.right - minimalSize;
1361 } else {
1362 // Either left bounds match, or neither match, or the previous bounds were
1363 // fullscreen and we default to keeping left.
1364 bounds.right = bounds.left + minimalSize;
1365 }
1366 }
1367 if (adjustHeight) {
1368 if (mBounds != null && bounds.bottom == mBounds.bottom) {
1369 bounds.top = bounds.bottom - minimalSize;
1370 } else {
1371 // Either top bounds match, or neither match, or the previous bounds were
1372 // fullscreen and we default to keeping top.
1373 bounds.bottom = bounds.top + minimalSize;
1374 }
1375 }
1376 }
1377
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001378 /**
1379 * Update task's override configuration based on the bounds.
Jorim Jaggi0a932142016-02-01 17:42:25 -08001380 * @param bounds The bounds of the task.
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001381 * @return Update configuration or null if there is no change.
1382 */
Filip Gruszczynskiaff7f132015-09-02 17:21:21 -07001383 Configuration updateOverrideConfiguration(Rect bounds) {
Jorim Jaggi0a932142016-02-01 17:42:25 -08001384 return updateOverrideConfiguration(bounds, null /* insetBounds */);
1385 }
1386
1387 /**
1388 * Update task's override configuration based on the bounds.
1389 * @param bounds The bounds of the task.
1390 * @param insetBounds The bounds used to calculate the system insets, which is used here to
1391 * subtract the navigation bar/status bar size from the screen size reported
1392 * to the application. See {@link IActivityManager#resizeDockedStack}.
1393 * @return Update configuration or null if there is no change.
1394 */
1395 Configuration updateOverrideConfiguration(Rect bounds, @Nullable Rect insetBounds) {
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001396 if (Objects.equals(mBounds, bounds)) {
1397 return null;
1398 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08001399 final Configuration oldConfig = mOverrideConfig;
1400 final boolean oldFullscreen = mFullscreen;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001401
1402 mFullscreen = bounds == null;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001403 if (mFullscreen) {
Wale Ogunwale3797c222015-10-27 14:21:58 -07001404 if (mBounds != null && StackId.persistTaskBounds(stack.mStackId)) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001405 mLastNonFullscreenBounds = mBounds;
1406 }
1407 mBounds = null;
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001408 mOverrideConfig = Configuration.EMPTY;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001409 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001410 mTmpRect.set(bounds);
1411 adjustForMinimalTaskDimensions(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001412 if (mBounds == null) {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001413 mBounds = new Rect(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001414 } else {
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001415 mBounds.set(mTmpRect);
Chong Zhangb15758a2015-11-17 12:12:03 -08001416 }
Wale Ogunwale3797c222015-10-27 14:21:58 -07001417 if (stack == null || StackId.persistTaskBounds(stack.mStackId)) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001418 mLastNonFullscreenBounds = mBounds;
1419 }
Wale Ogunwale9a08f822016-02-17 19:03:58 -08001420 mOverrideConfig = calculateOverrideConfig(mTmpRect, insetBounds);
Wale Ogunwale706ed792015-08-02 10:29:44 -07001421 }
Wale Ogunwale5f986092015-12-04 15:35:38 -08001422
1423 if (mFullscreen != oldFullscreen) {
Wale Ogunwale22e25262016-02-01 10:32:02 -08001424 mService.mStackSupervisor.scheduleReportMultiWindowChanged(this);
Wale Ogunwale5f986092015-12-04 15:35:38 -08001425 }
1426
Filip Gruszczynskiebcc8752015-08-25 16:51:05 -07001427 return !mOverrideConfig.equals(oldConfig) ? mOverrideConfig : null;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -07001428 }
1429
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001430 private void subtractNonDecorInsets(Rect inOutBounds, Rect inInsetBounds) {
1431 mTmpRect2.set(inInsetBounds);
1432 mService.mWindowManager.subtractNonDecorInsets(mTmpRect2);
1433 int leftInset = mTmpRect2.left - inInsetBounds.left;
1434 int topInset = mTmpRect2.top - inInsetBounds.top;
1435 int rightInset = inInsetBounds.right - mTmpRect2.right;
1436 int bottomInset = inInsetBounds.bottom - mTmpRect2.bottom;
1437 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset);
1438 }
1439
Jorim Jaggi0a932142016-02-01 17:42:25 -08001440 private void subtractStableInsets(Rect inOutBounds, Rect inInsetBounds) {
1441 mTmpRect2.set(inInsetBounds);
1442 mService.mWindowManager.subtractStableInsets(mTmpRect2);
1443 int leftInset = mTmpRect2.left - inInsetBounds.left;
1444 int topInset = mTmpRect2.top - inInsetBounds.top;
1445 int rightInset = inInsetBounds.right - mTmpRect2.right;
1446 int bottomInset = inInsetBounds.bottom - mTmpRect2.bottom;
1447 inOutBounds.inset(leftInset, topInset, rightInset, bottomInset);
1448 }
1449
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001450 private Configuration calculateOverrideConfig(Rect bounds, Rect insetBounds) {
1451 mTmpNonDecorBounds.set(bounds);
1452 mTmpStableBounds.set(bounds);
1453 subtractNonDecorInsets(
1454 mTmpNonDecorBounds, insetBounds != null ? insetBounds : bounds);
1455 subtractStableInsets(
1456 mTmpStableBounds, insetBounds != null ? insetBounds : bounds);
1457
1458 // For calculating screenWidthDp, screenWidthDp, we use the stable inset screen area,
1459 // i.e. the screen area without the system bars.
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001460 final Configuration serviceConfig = mService.mConfiguration;
1461 final Configuration config = new Configuration(Configuration.EMPTY);
1462 // TODO(multidisplay): Update Dp to that of display stack is on.
1463 final float density = serviceConfig.densityDpi * DisplayMetrics.DENSITY_DEFAULT_SCALE;
1464 config.screenWidthDp =
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001465 Math.min((int)(mTmpStableBounds.width() / density), serviceConfig.screenWidthDp);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001466 config.screenHeightDp =
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001467 Math.min((int)(mTmpStableBounds.height() / density), serviceConfig.screenHeightDp);
1468 config.smallestScreenWidthDp = Math.min(config.screenWidthDp, config.screenHeightDp);
1469
1470 // TODO: Orientation?
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001471 config.orientation = (config.screenWidthDp <= config.screenHeightDp)
1472 ? Configuration.ORIENTATION_PORTRAIT
1473 : Configuration.ORIENTATION_LANDSCAPE;
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001474
1475 // For calculating screen layout, we need to use the non-decor inset screen area for the
1476 // calculation for compatibility reasons, i.e. screen area without system bars that could
1477 // never go away in Honeycomb.
1478 final int compatScreenWidthDp = (int)(mTmpNonDecorBounds.width() / density);
1479 final int compatScreenHeightDp = (int)(mTmpNonDecorBounds.height() / density);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001480 final int sl = Configuration.resetScreenLayout(serviceConfig.screenLayout);
Jorim Jaggi82c9dc92016-02-05 15:10:33 -08001481 final int longSize = Math.max(compatScreenHeightDp, compatScreenWidthDp);
1482 final int shortSize = Math.min(compatScreenHeightDp, compatScreenWidthDp);
Jorim Jaggi0a932142016-02-01 17:42:25 -08001483 config.screenLayout = Configuration.reduceScreenLayout(sl, longSize, shortSize);
Jorim Jaggia95ca8d2016-01-15 22:54:46 -08001484 return config;
1485 }
1486
1487 /**
1488 * Using the existing configuration {@param config}, creates a new task override config such
1489 * that all the fields that are usually set in an override config are set to the ones in
1490 * {@param config}.
1491 */
1492 Configuration extractOverrideConfig(Configuration config) {
1493 final Configuration extracted = new Configuration(Configuration.EMPTY);
1494 extracted.screenWidthDp = config.screenWidthDp;
1495 extracted.screenHeightDp = config.screenHeightDp;
1496 extracted.smallestScreenWidthDp = config.smallestScreenWidthDp;
1497 extracted.orientation = config.orientation;
1498 extracted.screenLayout = config.screenLayout;
1499 return extracted;
1500 }
1501
Filip Gruszczynskidce2d162016-01-12 15:40:13 -08001502 Rect updateOverrideConfigurationFromLaunchBounds() {
1503 final Rect bounds = validateBounds(getLaunchBounds());
1504 updateOverrideConfiguration(bounds);
1505 return bounds;
1506 }
1507
1508 static Rect validateBounds(Rect bounds) {
1509 if (bounds != null && bounds.isEmpty()) {
1510 Slog.wtf(TAG, "Received strange task bounds: " + bounds, new Throwable());
1511 return null;
1512 }
1513 return bounds;
1514 }
1515
Wale Ogunwale935e5022015-11-10 12:36:10 -08001516 /** Updates the task's bounds and override configuration to match what is expected for the
1517 * input stack. */
1518 void updateOverrideConfigurationForStack(ActivityStack inStack) {
1519 if (stack != null && stack == inStack) {
1520 return;
1521 }
1522
1523 if (inStack.mStackId == FREEFORM_WORKSPACE_STACK_ID) {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001524 if (!isResizeable()) {
Wale Ogunwale935e5022015-11-10 12:36:10 -08001525 throw new IllegalArgumentException("Can not position non-resizeable task="
1526 + this + " in stack=" + inStack);
1527 }
1528 if (mBounds != null) {
1529 return;
1530 }
1531 if (mLastNonFullscreenBounds != null) {
1532 updateOverrideConfiguration(mLastNonFullscreenBounds);
1533 } else {
1534 inStack.layoutTaskInStack(this, null);
1535 }
1536 } else {
1537 updateOverrideConfiguration(inStack.mBounds);
1538 }
1539 }
1540
Chong Zhang0fa656b2015-08-31 15:17:21 -07001541 /**
1542 * Returns the correct stack to use based on task type and currently set bounds,
1543 * regardless of the focused stack and current stack association of the task.
1544 * The task will be moved (and stack focus changed) later if necessary.
1545 */
1546 int getLaunchStackId() {
1547 if (!isApplicationTask()) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001548 return HOME_STACK_ID;
1549 }
Chong Zhang0fa656b2015-08-31 15:17:21 -07001550 if (mBounds != null) {
Wale Ogunwale706ed792015-08-02 10:29:44 -07001551 return FREEFORM_WORKSPACE_STACK_ID;
1552 }
1553 return FULLSCREEN_WORKSPACE_STACK_ID;
1554 }
1555
1556 /** Returns the bounds that should be used to launch this task. */
1557 Rect getLaunchBounds() {
Chong Zhang75b37202015-12-04 14:16:36 -08001558 // If we're over lockscreen, forget about stack bounds and use fullscreen.
1559 if (mService.mLockScreenShown == LOCK_SCREEN_SHOWN) {
1560 return null;
1561 }
1562
Chong Zhang7d5f5102016-01-13 10:29:24 -08001563 if (stack == null) {
1564 return null;
1565 }
1566
1567 final int stackId = stack.mStackId;
1568 if (stackId == HOME_STACK_ID
1569 || stackId == FULLSCREEN_WORKSPACE_STACK_ID
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001570 || (stackId == DOCKED_STACK_ID && !isResizeable())) {
1571 return isResizeable() ? stack.mBounds : null;
Wale Ogunwale3797c222015-10-27 14:21:58 -07001572 } else if (!StackId.persistTaskBounds(stackId)) {
Wale Ogunwaleb34a7ad2015-08-14 11:05:30 -07001573 return stack.mBounds;
Wale Ogunwale706ed792015-08-02 10:29:44 -07001574 }
1575 return mLastNonFullscreenBounds;
1576 }
1577
Wale Ogunwale39381972015-12-17 17:15:29 -08001578 boolean canMatchRootAffinity() {
1579 // We don't allow root affinity matching on the pinned stack as no other task should
1580 // be launching in it based on affinity.
1581 return rootAffinity != null && (stack == null || stack.mStackId != PINNED_STACK_ID);
1582 }
1583
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001584 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001585 pw.print(prefix); pw.print("userId="); pw.print(userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001586 pw.print(" effectiveUid="); UserHandle.formatUid(pw, effectiveUid);
1587 pw.print(" mCallingUid="); UserHandle.formatUid(pw, mCallingUid);
Suprabh Shukla7745c142016-03-07 18:21:10 -08001588 pw.print(" mUserSetupComplete="); pw.print(mUserSetupComplete);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001589 pw.print(" mCallingPackage="); pw.println(mCallingPackage);
Dianne Hackborn79228822014-09-16 11:11:23 -07001590 if (affinity != null || rootAffinity != null) {
1591 pw.print(prefix); pw.print("affinity="); pw.print(affinity);
1592 if (affinity == null || !affinity.equals(rootAffinity)) {
1593 pw.print(" root="); pw.println(rootAffinity);
1594 } else {
1595 pw.println();
1596 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001597 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07001598 if (voiceSession != null || voiceInteractor != null) {
1599 pw.print(prefix); pw.print("VOICE: session=0x");
1600 pw.print(Integer.toHexString(System.identityHashCode(voiceSession)));
1601 pw.print(" interactor=0x");
1602 pw.println(Integer.toHexString(System.identityHashCode(voiceInteractor)));
1603 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001604 if (intent != null) {
1605 StringBuilder sb = new StringBuilder(128);
1606 sb.append(prefix); sb.append("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001607 intent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001608 sb.append('}');
1609 pw.println(sb.toString());
1610 }
1611 if (affinityIntent != null) {
1612 StringBuilder sb = new StringBuilder(128);
1613 sb.append(prefix); sb.append("affinityIntent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001614 affinityIntent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001615 sb.append('}');
1616 pw.println(sb.toString());
1617 }
1618 if (origActivity != null) {
1619 pw.print(prefix); pw.print("origActivity=");
1620 pw.println(origActivity.flattenToShortString());
1621 }
1622 if (realActivity != null) {
1623 pw.print(prefix); pw.print("realActivity=");
1624 pw.println(realActivity.flattenToShortString());
1625 }
Dianne Hackborn852975d2014-08-22 17:42:43 -07001626 if (autoRemoveRecents || isPersistable || taskType != 0 || mTaskToReturnTo != 0
1627 || numFullscreen != 0) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001628 pw.print(prefix); pw.print("autoRemoveRecents="); pw.print(autoRemoveRecents);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001629 pw.print(" isPersistable="); pw.print(isPersistable);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001630 pw.print(" numFullscreen="); pw.print(numFullscreen);
1631 pw.print(" taskType="); pw.print(taskType);
1632 pw.print(" mTaskToReturnTo="); pw.println(mTaskToReturnTo);
1633 }
Craig Mautner432f64e2015-05-20 14:59:57 -07001634 if (rootWasReset || mNeverRelinquishIdentity || mReuseTask
1635 || mLockTaskAuth != LOCK_TASK_AUTH_PINNABLE) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001636 pw.print(prefix); pw.print("rootWasReset="); pw.print(rootWasReset);
1637 pw.print(" mNeverRelinquishIdentity="); pw.print(mNeverRelinquishIdentity);
Craig Mautner432f64e2015-05-20 14:59:57 -07001638 pw.print(" mReuseTask="); pw.print(mReuseTask);
1639 pw.print(" mLockTaskAuth="); pw.println(lockTaskAuthToString());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001640 }
Wale Ogunwale18795a22014-12-03 11:38:33 -08001641 if (mAffiliatedTaskId != taskId || mPrevAffiliateTaskId != INVALID_TASK_ID
1642 || mPrevAffiliate != null || mNextAffiliateTaskId != INVALID_TASK_ID
1643 || mNextAffiliate != null) {
Dianne Hackborn852975d2014-08-22 17:42:43 -07001644 pw.print(prefix); pw.print("affiliation="); pw.print(mAffiliatedTaskId);
1645 pw.print(" prevAffiliation="); pw.print(mPrevAffiliateTaskId);
1646 pw.print(" (");
1647 if (mPrevAffiliate == null) {
1648 pw.print("null");
1649 } else {
1650 pw.print(Integer.toHexString(System.identityHashCode(mPrevAffiliate)));
1651 }
1652 pw.print(") nextAffiliation="); pw.print(mNextAffiliateTaskId);
1653 pw.print(" (");
1654 if (mNextAffiliate == null) {
1655 pw.print("null");
1656 } else {
1657 pw.print(Integer.toHexString(System.identityHashCode(mNextAffiliate)));
1658 }
1659 pw.println(")");
1660 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001661 pw.print(prefix); pw.print("Activities="); pw.println(mActivities);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001662 if (!askedCompatMode || !inRecents || !isAvailable) {
1663 pw.print(prefix); pw.print("askedCompatMode="); pw.print(askedCompatMode);
1664 pw.print(" inRecents="); pw.print(inRecents);
1665 pw.print(" isAvailable="); pw.println(isAvailable);
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07001666 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001667 pw.print(prefix); pw.print("lastThumbnail="); pw.print(mLastThumbnail);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001668 pw.print(" lastThumbnailFile="); pw.println(mLastThumbnailFile);
1669 if (lastDescription != null) {
1670 pw.print(prefix); pw.print("lastDescription="); pw.println(lastDescription);
1671 }
Wale Ogunwale069fbe42015-07-29 11:38:01 -07001672 if (stack != null) {
1673 pw.print(prefix); pw.print("stackId="); pw.println(stack.mStackId);
1674 }
Wale Ogunwaleb1faf602016-01-27 09:12:31 -08001675 pw.print(prefix + "hasBeenVisible=" + hasBeenVisible);
1676 pw.print(" mResizeMode=" + ActivityInfo.resizeModeToString(mResizeMode));
1677 pw.print(" isResizeable=" + isResizeable());
1678 pw.print(" firstActiveTime=" + lastActiveTime);
1679 pw.print(" lastActiveTime=" + lastActiveTime);
1680 pw.println(" (inactive for " + (getInactiveDuration() / 1000) + "s)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001681 }
1682
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001683 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001684 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001685 StringBuilder sb = new StringBuilder(128);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001686 if (stringName != null) {
1687 sb.append(stringName);
1688 sb.append(" U=");
1689 sb.append(userId);
Wale Ogunwale6c5eb1c2015-11-10 07:52:22 -08001690 sb.append(" StackId=");
1691 sb.append(stack != null ? stack.mStackId : INVALID_STACK_ID);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001692 sb.append(" sz=");
1693 sb.append(mActivities.size());
1694 sb.append('}');
1695 return sb.toString();
1696 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001697 sb.append("TaskRecord{");
1698 sb.append(Integer.toHexString(System.identityHashCode(this)));
1699 sb.append(" #");
1700 sb.append(taskId);
1701 if (affinity != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001702 sb.append(" A=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001703 sb.append(affinity);
1704 } else if (intent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001705 sb.append(" I=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001706 sb.append(intent.getComponent().flattenToShortString());
1707 } else if (affinityIntent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001708 sb.append(" aI=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001709 sb.append(affinityIntent.getComponent().flattenToShortString());
1710 } else {
1711 sb.append(" ??");
1712 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001713 stringName = sb.toString();
1714 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001715 }
1716}