blob: f966bcf405f836dd2ad149e567aed59ad02e9c61 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.am;
18
Wale Ogunwale843bfb92015-03-27 11:06:48 -070019import static android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT;
20import static android.content.Intent.FLAG_ACTIVITY_RETAIN_IN_RECENTS;
Craig Mautner15df08a2015-04-01 12:17:18 -070021import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_ALWAYS;
22import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_DEFAULT;
23import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED;
24import static android.content.pm.ActivityInfo.LOCK_TASK_LAUNCH_MODE_NEVER;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -070025import static android.content.pm.ApplicationInfo.PRIVATE_FLAG_PRIVILEGED;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070026import static com.android.server.am.ActivityManagerDebugConfig.*;
Craig Mautner84984fa2014-06-19 11:19:20 -070027import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
28import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
29import static com.android.server.am.ActivityRecord.RECENTS_ACTIVITY_TYPE;
Craig Mautnerde4ef022013-04-07 19:01:33 -070030
Craig Mautnerb0f7dc72013-04-01 16:34:45 -070031import android.app.Activity;
Craig Mautner9db9a0b2013-04-29 17:05:56 -070032import android.app.ActivityManager;
Craig Mautnerc0ffce52014-07-01 12:38:52 -070033import android.app.ActivityManager.TaskThumbnail;
Craig Mautner648f69b2014-09-18 14:16:26 -070034import android.app.ActivityManager.TaskDescription;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -070035import android.app.ActivityOptions;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070036import android.app.AppGlobals;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.content.ComponentName;
38import android.content.Intent;
39import android.content.pm.ActivityInfo;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070040import android.content.pm.ApplicationInfo;
41import android.content.pm.IPackageManager;
42import android.content.pm.PackageManager;
Craig Mautner9db9a0b2013-04-29 17:05:56 -070043import android.graphics.Bitmap;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070044import android.os.Debug;
Craig Mautnerc0ffce52014-07-01 12:38:52 -070045import android.os.ParcelFileDescriptor;
Dianne Hackborn885fbe52014-08-23 15:23:58 -070046import android.os.RemoteException;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070047import android.os.UserHandle;
Dianne Hackborn91097de2014-04-04 18:02:06 -070048import android.service.voice.IVoiceInteractionSession;
Dianne Hackborn7f96b792012-05-29 18:46:45 -070049import android.util.Slog;
Dianne Hackborn91097de2014-04-04 18:02:06 -070050import com.android.internal.app.IVoiceInteractor;
Craig Mautner21d24a22014-04-23 11:45:37 -070051import com.android.internal.util.XmlUtils;
52import org.xmlpull.v1.XmlPullParser;
53import org.xmlpull.v1.XmlPullParserException;
54import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055
Craig Mautnerc0ffce52014-07-01 12:38:52 -070056import java.io.File;
Craig Mautner21d24a22014-04-23 11:45:37 -070057import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058import java.io.PrintWriter;
Craig Mautner5d9c7be2013-02-15 14:02:56 -080059import java.util.ArrayList;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060
Craig Mautnerc0ffce52014-07-01 12:38:52 -070061final class TaskRecord {
Wale Ogunwalee23149f2015-03-06 15:39:44 -080062 private static final String TAG = TAG_WITH_CLASS_NAME ? "TaskRecord" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070063 private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070064 private static final String TAG_RECENTS = TAG + POSTFIX_RECENTS;
Craig Mautnere0570202015-05-13 13:06:11 -070065 private static final String TAG_LOCKTASK = TAG + POSTFIX_LOCKTASK;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070066 private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080067
Wale Ogunwale18795a22014-12-03 11:38:33 -080068 static final String ATTR_TASKID = "task_id";
Craig Mautner21d24a22014-04-23 11:45:37 -070069 private static final String TAG_INTENT = "intent";
70 private static final String TAG_AFFINITYINTENT = "affinity_intent";
Wale Ogunwale18795a22014-12-03 11:38:33 -080071 static final String ATTR_REALACTIVITY = "real_activity";
Craig Mautner21d24a22014-04-23 11:45:37 -070072 private static final String ATTR_ORIGACTIVITY = "orig_activity";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -070073 private static final String TAG_ACTIVITY = "activity";
Craig Mautner21d24a22014-04-23 11:45:37 -070074 private static final String ATTR_AFFINITY = "affinity";
Dianne Hackborn79228822014-09-16 11:11:23 -070075 private static final String ATTR_ROOT_AFFINITY = "root_affinity";
Craig Mautner21d24a22014-04-23 11:45:37 -070076 private static final String ATTR_ROOTHASRESET = "root_has_reset";
Dianne Hackborn13420f22014-07-18 15:43:56 -070077 private static final String ATTR_AUTOREMOVERECENTS = "auto_remove_recents";
Craig Mautner21d24a22014-04-23 11:45:37 -070078 private static final String ATTR_ASKEDCOMPATMODE = "asked_compat_mode";
79 private static final String ATTR_USERID = "user_id";
Dianne Hackborn885fbe52014-08-23 15:23:58 -070080 private static final String ATTR_EFFECTIVE_UID = "effective_uid";
Craig Mautner21d24a22014-04-23 11:45:37 -070081 private static final String ATTR_TASKTYPE = "task_type";
Winson Chungffa2ec62014-07-03 15:54:42 -070082 private static final String ATTR_FIRSTACTIVETIME = "first_active_time";
Winson Chungf1fbd772014-06-24 18:06:58 -070083 private static final String ATTR_LASTACTIVETIME = "last_active_time";
Craig Mautner21d24a22014-04-23 11:45:37 -070084 private static final String ATTR_LASTDESCRIPTION = "last_description";
85 private static final String ATTR_LASTTIMEMOVED = "last_time_moved";
Craig Mautner9d4e9bc2014-06-18 18:34:56 -070086 private static final String ATTR_NEVERRELINQUISH = "never_relinquish_identity";
Wale Ogunwale18795a22014-12-03 11:38:33 -080087 static final String ATTR_TASK_AFFILIATION = "task_affiliation";
Craig Mautnera228ae92014-07-09 05:44:55 -070088 private static final String ATTR_PREV_AFFILIATION = "prev_affiliation";
89 private static final String ATTR_NEXT_AFFILIATION = "next_affiliation";
Winson Chungec396d62014-08-06 17:08:00 -070090 private static final String ATTR_TASK_AFFILIATION_COLOR = "task_affiliation_color";
Craig Mautnerdc00cbe2014-07-20 17:48:47 -070091 private static final String ATTR_CALLING_UID = "calling_uid";
92 private static final String ATTR_CALLING_PACKAGE = "calling_package";
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -080093 private static final String ATTR_RESIZEABLE = "resizeable";
Wale Ogunwalea7afaa22015-05-01 20:39:18 -070094 private static final String ATTR_PRIVILEGED = "privileged";
Craig Mautner21d24a22014-04-23 11:45:37 -070095
96 private static final String TASK_THUMBNAIL_SUFFIX = "_task_thumbnail";
97
Craig Mautner0b633fc2014-07-23 10:42:18 -070098 static final boolean IGNORE_RETURN_TO_RECENTS = true;
99
Wale Ogunwale18795a22014-12-03 11:38:33 -0800100 static final int INVALID_TASK_ID = -1;
101
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800102 final int taskId; // Unique identifier for this task.
Dianne Hackborn79228822014-09-16 11:11:23 -0700103 String affinity; // The affinity name for this task, or null; may change identity.
104 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
Dianne Hackborn91097de2014-04-04 18:02:06 -0700105 final IVoiceInteractionSession voiceSession; // Voice interaction session driving task
106 final IVoiceInteractor voiceInteractor; // Associated interactor to provide to app
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800107 Intent intent; // The original intent that started the task.
108 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700109 int effectiveUid; // The current effective uid of the identity of this task.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 ComponentName origActivity; // The non-alias activity component of the intent.
111 ComponentName realActivity; // The actual activity component that started the task.
Winson Chungffa2ec62014-07-03 15:54:42 -0700112 long firstActiveTime; // First time this task was active.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 long lastActiveTime; // Last time this task was active, including sleep.
Dianne Hackborn852975d2014-08-22 17:42:43 -0700114 boolean inRecents; // Actually in the recents list?
115 boolean isAvailable; // Is the activity available to be launched?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 boolean rootWasReset; // True if the intent at the root of the task had
117 // the FLAG_ACTIVITY_RESET_TASK_IF_NEEDED flag.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700118 boolean autoRemoveRecents; // If true, we should automatically remove the task from
119 // recents when activity finishes
Dianne Hackborn36cd41f2011-05-25 21:00:46 -0700120 boolean askedCompatMode;// Have asked the user about compat mode for this task.
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700121 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 -0800122
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700123 String stringName; // caching of toString() result.
Dianne Hackborn9da2d402012-03-15 13:43:08 -0700124 int userId; // user for which this task was created
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800125
126 int numFullscreen; // Number of fullscreen activities.
127
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800128 boolean mResizeable; // Activities in the task resizeable. Based on the resizable setting of
129 // the root activity.
Craig Mautner15df08a2015-04-01 12:17:18 -0700130 int mLockTaskMode; // Which tasklock mode to launch this task in. One of
131 // ActivityManager.LOCK_TASK_LAUNCH_MODE_*
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700132 private boolean mPrivileged; // The root activity application of this task holds
133 // privileged permissions.
134
Craig Mautner15df08a2015-04-01 12:17:18 -0700135 /** Can't be put in lockTask mode. */
136 final static int LOCK_TASK_AUTH_DONT_LOCK = 0;
Craig Mautnere0570202015-05-13 13:06:11 -0700137 /** Can enter lockTask with user approval. Can never start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700138 final static int LOCK_TASK_AUTH_PINNABLE = 1;
139 /** Starts in LOCK_TASK_MODE_LOCKED automatically. Can start over existing lockTask task. */
140 final static int LOCK_TASK_AUTH_LAUNCHABLE = 2;
Craig Mautnere0570202015-05-13 13:06:11 -0700141 /** Can enter lockTask with user approval. Can start over existing lockTask task. */
Craig Mautner15df08a2015-04-01 12:17:18 -0700142 final static int LOCK_TASK_AUTH_WHITELISTED = 3;
143 int mLockTaskAuth = LOCK_TASK_AUTH_PINNABLE;
144
145 int mLockTaskUid = -1; // The uid of the application that called startLockTask().
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800146
Winson Chung03a9bae2014-05-02 09:56:12 -0700147 // This represents the last resolved activity values for this task
148 // NOTE: This value needs to be persisted with each task
Craig Mautner648f69b2014-09-18 14:16:26 -0700149 TaskDescription lastTaskDescription = new TaskDescription();
Winson Chung03a9bae2014-05-02 09:56:12 -0700150
Craig Mautnerd2328952013-03-05 12:46:26 -0800151 /** List of all activities in the task arranged in history order */
Craig Mautner21d24a22014-04-23 11:45:37 -0700152 final ArrayList<ActivityRecord> mActivities;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800153
Craig Mautnerd2328952013-03-05 12:46:26 -0800154 /** Current stack */
155 ActivityStack stack;
156
Craig Mautner2c1faed2013-07-23 12:56:02 -0700157 /** Takes on same set of values as ActivityRecord.mActivityType */
Craig Mautner21d24a22014-04-23 11:45:37 -0700158 int taskType;
Craig Mautner1602ec22013-05-12 10:24:27 -0700159
Craig Mautner21d24a22014-04-23 11:45:37 -0700160 /** Takes on same value as first root activity */
161 boolean isPersistable = false;
Craig Mautnerffcfcaa2014-06-05 09:54:38 -0700162 int maxRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700163
164 /** Only used for persistable tasks, otherwise 0. The last time this task was moved. Used for
165 * determining the order when restoring. Sign indicates whether last task movement was to front
166 * (positive) or back (negative). Absolute value indicates time. */
167 long mLastTimeMoved = System.currentTimeMillis();
168
Craig Mautner84984fa2014-06-19 11:19:20 -0700169 /** Indication of what to run next when task exits. Use ActivityRecord types.
170 * ActivityRecord.APPLICATION_ACTIVITY_TYPE indicates to resume the task below this one in the
171 * task stack. */
172 private int mTaskToReturnTo = APPLICATION_ACTIVITY_TYPE;
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700173
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700174 /** If original intent did not allow relinquishing task identity, save that information */
175 boolean mNeverRelinquishIdentity = true;
176
Craig Mautner362449a2014-06-20 14:04:39 -0700177 // Used in the unique case where we are clearing the task in order to reuse it. In that case we
178 // do not want to delete the stack when the task goes empty.
179 boolean mReuseTask = false;
180
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700181 private Bitmap mLastThumbnail; // Last thumbnail captured for this item.
Wale Ogunwalebe23ff42014-10-21 16:29:51 -0700182 private final File mLastThumbnailFile; // File containing last thumbnail.
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700183 private final String mFilename;
184 CharSequence lastDescription; // Last description captured for this item.
185
Craig Mautnera228ae92014-07-09 05:44:55 -0700186 int mAffiliatedTaskId; // taskId of parent affiliation or self if no parent.
Winson Chungec396d62014-08-06 17:08:00 -0700187 int mAffiliatedTaskColor; // color of the parent task affiliation.
Craig Mautnera228ae92014-07-09 05:44:55 -0700188 TaskRecord mPrevAffiliate; // previous task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800189 int mPrevAffiliateTaskId = INVALID_TASK_ID; // previous id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700190 TaskRecord mNextAffiliate; // next task in affiliated chain.
Wale Ogunwale18795a22014-12-03 11:38:33 -0800191 int mNextAffiliateTaskId = INVALID_TASK_ID; // next id for persistence.
Craig Mautnera228ae92014-07-09 05:44:55 -0700192
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700193 // For relaunching the task from recents as though it was launched by the original launcher.
194 int mCallingUid;
195 String mCallingPackage;
196
Craig Mautner21d24a22014-04-23 11:45:37 -0700197 final ActivityManagerService mService;
198
199 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Dianne Hackborn91097de2014-04-04 18:02:06 -0700200 IVoiceInteractionSession _voiceSession, IVoiceInteractor _voiceInteractor) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700201 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700202 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
203 TaskPersister.IMAGE_EXTENSION;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700204 mLastThumbnailFile = new File(TaskPersister.sImagesDir, mFilename);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800205 taskId = _taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700206 mAffiliatedTaskId = _taskId;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700207 voiceSession = _voiceSession;
208 voiceInteractor = _voiceInteractor;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700209 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800210 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700211 mCallingUid = info.applicationInfo.uid;
212 mCallingPackage = info.packageName;
Martijn Coenend4a69702014-06-30 11:12:17 -0700213 setIntent(_intent, info);
Craig Mautner21d24a22014-04-23 11:45:37 -0700214 }
215
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700216 TaskRecord(ActivityManagerService service, int _taskId, ActivityInfo info, Intent _intent,
Craig Mautner648f69b2014-09-18 14:16:26 -0700217 TaskDescription _taskDescription) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700218 mService = service;
219 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
220 TaskPersister.IMAGE_EXTENSION;
221 mLastThumbnailFile = new File(TaskPersister.sImagesDir, mFilename);
222 taskId = _taskId;
223 mAffiliatedTaskId = _taskId;
224 voiceSession = null;
225 voiceInteractor = null;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700226 isAvailable = true;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800227 mActivities = new ArrayList<>();
Craig Mautner15df08a2015-04-01 12:17:18 -0700228 mCallingUid = info.applicationInfo.uid;
229 mCallingPackage = info.packageName;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700230 setIntent(_intent, info);
231
232 taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
233 isPersistable = true;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700234 // Clamp to [1, max].
235 maxRecents = Math.min(Math.max(info.maxRecents, 1),
236 ActivityManager.getMaxAppRecentsLimitStatic());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700237
238 taskType = APPLICATION_ACTIVITY_TYPE;
239 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
240 userId = UserHandle.getUserId(info.applicationInfo.uid);
241 lastTaskDescription = _taskDescription;
Dianne Hackbornaec68bb2014-08-20 15:25:13 -0700242 }
243
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800244 private TaskRecord(ActivityManagerService service, int _taskId, Intent _intent,
245 Intent _affinityIntent, String _affinity, String _rootAffinity,
246 ComponentName _realActivity, ComponentName _origActivity, boolean _rootWasReset,
247 boolean _autoRemoveRecents, boolean _askedCompatMode, int _taskType, int _userId,
248 int _effectiveUid, String _lastDescription, ArrayList<ActivityRecord> activities,
249 long _firstActiveTime, long _lastActiveTime, long lastTimeMoved,
250 boolean neverRelinquishIdentity, TaskDescription _lastTaskDescription,
251 int taskAffiliation, int prevTaskId, int nextTaskId, int taskAffiliationColor,
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700252 int callingUid, String callingPackage, boolean resizeable, boolean privileged) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700253 mService = service;
Craig Mautnera228ae92014-07-09 05:44:55 -0700254 mFilename = String.valueOf(_taskId) + TASK_THUMBNAIL_SUFFIX +
255 TaskPersister.IMAGE_EXTENSION;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700256 mLastThumbnailFile = new File(TaskPersister.sImagesDir, mFilename);
Craig Mautner21d24a22014-04-23 11:45:37 -0700257 taskId = _taskId;
258 intent = _intent;
259 affinityIntent = _affinityIntent;
260 affinity = _affinity;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800261 rootAffinity = _rootAffinity;
Craig Mautner21d24a22014-04-23 11:45:37 -0700262 voiceSession = null;
263 voiceInteractor = null;
264 realActivity = _realActivity;
265 origActivity = _origActivity;
266 rootWasReset = _rootWasReset;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700267 isAvailable = true;
Dianne Hackborn13420f22014-07-18 15:43:56 -0700268 autoRemoveRecents = _autoRemoveRecents;
Craig Mautner21d24a22014-04-23 11:45:37 -0700269 askedCompatMode = _askedCompatMode;
270 taskType = _taskType;
Craig Mautner84984fa2014-06-19 11:19:20 -0700271 mTaskToReturnTo = HOME_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -0700272 userId = _userId;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700273 effectiveUid = _effectiveUid;
Winson Chungffa2ec62014-07-03 15:54:42 -0700274 firstActiveTime = _firstActiveTime;
Winson Chungf1fbd772014-06-24 18:06:58 -0700275 lastActiveTime = _lastActiveTime;
Craig Mautner21d24a22014-04-23 11:45:37 -0700276 lastDescription = _lastDescription;
277 mActivities = activities;
278 mLastTimeMoved = lastTimeMoved;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700279 mNeverRelinquishIdentity = neverRelinquishIdentity;
Winson Chung2cb86c72014-06-25 12:03:30 -0700280 lastTaskDescription = _lastTaskDescription;
Craig Mautnera228ae92014-07-09 05:44:55 -0700281 mAffiliatedTaskId = taskAffiliation;
Winson Chungec396d62014-08-06 17:08:00 -0700282 mAffiliatedTaskColor = taskAffiliationColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700283 mPrevAffiliateTaskId = prevTaskId;
284 mNextAffiliateTaskId = nextTaskId;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700285 mCallingUid = callingUid;
286 mCallingPackage = callingPackage;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800287 mResizeable = resizeable;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700288 mPrivileged = privileged;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800289 }
290
291 void touchActiveTime() {
Craig Mautner494f6bdd2014-07-21 11:17:46 -0700292 lastActiveTime = System.currentTimeMillis();
Winson Chungffa2ec62014-07-03 15:54:42 -0700293 if (firstActiveTime == 0) {
294 firstActiveTime = lastActiveTime;
295 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800296 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700297
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 long getInactiveDuration() {
Craig Mautner494f6bdd2014-07-21 11:17:46 -0700299 return System.currentTimeMillis() - lastActiveTime;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800300 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700301
Winson Chungfee26772014-08-05 12:21:52 -0700302 /** Sets the original intent, and the calling uid and package. */
303 void setIntent(ActivityRecord r) {
Winson Chungfee26772014-08-05 12:21:52 -0700304 mCallingUid = r.launchedFromUid;
305 mCallingPackage = r.launchedFromPackage;
Craig Mautner15df08a2015-04-01 12:17:18 -0700306 setIntent(r.intent, r.info);
Winson Chungfee26772014-08-05 12:21:52 -0700307 }
308
309 /** Sets the original intent, _without_ updating the calling uid or package. */
310 private void setIntent(Intent _intent, ActivityInfo info) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700311 if (intent == null) {
312 mNeverRelinquishIdentity =
313 (info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0;
314 } else if (mNeverRelinquishIdentity) {
315 return;
316 }
317
318 affinity = info.taskAffinity;
Dianne Hackborn79228822014-09-16 11:11:23 -0700319 if (intent == null) {
320 // If this task already has an intent associated with it, don't set the root
321 // affinity -- we don't want it changing after initially set, but the initially
322 // set value may be null.
323 rootAffinity = affinity;
324 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700325 effectiveUid = info.applicationInfo.uid;
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700326 stringName = null;
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800327
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800328 if (info.targetActivity == null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800329 if (_intent != null) {
330 // If this Intent has a selector, we want to clear it for the
331 // recent task since it is not relevant if the user later wants
332 // to re-launch the app.
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700333 if (_intent.getSelector() != null || _intent.getSourceBounds() != null) {
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800334 _intent = new Intent(_intent);
335 _intent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700336 _intent.setSourceBounds(null);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800337 }
338 }
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700339 if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Setting Intent of " + this + " to " + _intent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800340 intent = _intent;
341 realActivity = _intent != null ? _intent.getComponent() : null;
342 origActivity = null;
343 } else {
344 ComponentName targetComponent = new ComponentName(
345 info.packageName, info.targetActivity);
346 if (_intent != null) {
347 Intent targetIntent = new Intent(_intent);
348 targetIntent.setComponent(targetComponent);
Dianne Hackbornf5b86712011-12-05 17:42:41 -0800349 targetIntent.setSelector(null);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700350 targetIntent.setSourceBounds(null);
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700351 if (DEBUG_TASKS) Slog.v(TAG_TASKS,
Dianne Hackborn7f96b792012-05-29 18:46:45 -0700352 "Setting Intent of " + this + " to target " + targetIntent);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800353 intent = targetIntent;
354 realActivity = targetComponent;
355 origActivity = _intent.getComponent();
356 } else {
357 intent = null;
358 realActivity = targetComponent;
359 origActivity = new ComponentName(info.packageName, info.name);
360 }
361 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700362
Craig Mautner47b20ba2014-09-17 17:23:44 -0700363 final int intentFlags = intent == null ? 0 : intent.getFlags();
364 if ((intentFlags & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800365 // Once we are set to an Intent with this flag, we count this
366 // task as having a true root activity.
367 rootWasReset = true;
368 }
Amith Yamasani742a6712011-05-04 14:49:28 -0700369
Dianne Hackborn09233282014-04-30 11:33:59 -0700370 userId = UserHandle.getUserId(info.applicationInfo.uid);
Craig Mautner41db4a72014-05-07 17:20:56 -0700371 if ((info.flags & ActivityInfo.FLAG_AUTO_REMOVE_FROM_RECENTS) != 0) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700372 // If the activity itself has requested auto-remove, then just always do it.
373 autoRemoveRecents = true;
Wale Ogunwale843bfb92015-03-27 11:06:48 -0700374 } else if ((intentFlags & (FLAG_ACTIVITY_NEW_DOCUMENT | FLAG_ACTIVITY_RETAIN_IN_RECENTS))
375 == FLAG_ACTIVITY_NEW_DOCUMENT) {
Dianne Hackborn13420f22014-07-18 15:43:56 -0700376 // If the caller has not asked for the document to be retained, then we may
377 // want to turn on auto-remove, depending on whether the target has set its
378 // own document launch mode.
379 if (info.documentLaunchMode != ActivityInfo.DOCUMENT_LAUNCH_NONE) {
380 autoRemoveRecents = false;
381 } else {
382 autoRemoveRecents = true;
383 }
384 } else {
385 autoRemoveRecents = false;
Craig Mautner41db4a72014-05-07 17:20:56 -0700386 }
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800387 mResizeable = info.resizeable;
Craig Mautner15df08a2015-04-01 12:17:18 -0700388 mLockTaskMode = info.lockTaskLaunchMode;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700389 mPrivileged = (info.applicationInfo.privateFlags & PRIVATE_FLAG_PRIVILEGED) != 0;
Craig Mautner15df08a2015-04-01 12:17:18 -0700390 setLockTaskAuth();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800391 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800392
Craig Mautner84984fa2014-06-19 11:19:20 -0700393 void setTaskToReturnTo(int taskToReturnTo) {
Wale Ogunwale2d0f39b2015-04-17 15:35:39 -0700394 mTaskToReturnTo = (IGNORE_RETURN_TO_RECENTS && taskToReturnTo == RECENTS_ACTIVITY_TYPE)
395 ? HOME_ACTIVITY_TYPE : taskToReturnTo;
Craig Mautner84984fa2014-06-19 11:19:20 -0700396 }
397
398 int getTaskToReturnTo() {
399 return mTaskToReturnTo;
400 }
401
Craig Mautnera228ae92014-07-09 05:44:55 -0700402 void setPrevAffiliate(TaskRecord prevAffiliate) {
403 mPrevAffiliate = prevAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800404 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700405 }
406
407 void setNextAffiliate(TaskRecord nextAffiliate) {
408 mNextAffiliate = nextAffiliate;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800409 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId;
Craig Mautnera228ae92014-07-09 05:44:55 -0700410 }
411
412 // Close up recents linked list.
413 void closeRecentsChain() {
414 if (mPrevAffiliate != null) {
415 mPrevAffiliate.setNextAffiliate(mNextAffiliate);
416 }
417 if (mNextAffiliate != null) {
418 mNextAffiliate.setPrevAffiliate(mPrevAffiliate);
419 }
420 setPrevAffiliate(null);
421 setNextAffiliate(null);
422 }
423
Winson Chung740c3ac2014-11-12 16:14:38 -0800424 void removedFromRecents() {
Dianne Hackborn852975d2014-08-22 17:42:43 -0700425 disposeThumbnail();
426 closeRecentsChain();
427 if (inRecents) {
428 inRecents = false;
Winson Chung740c3ac2014-11-12 16:14:38 -0800429 mService.notifyTaskPersisterLocked(this, false);
Dianne Hackborn852975d2014-08-22 17:42:43 -0700430 }
431 }
432
Craig Mautnera228ae92014-07-09 05:44:55 -0700433 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
434 closeRecentsChain();
435 mAffiliatedTaskId = taskToAffiliateWith.mAffiliatedTaskId;
Winson Chungec396d62014-08-06 17:08:00 -0700436 mAffiliatedTaskColor = taskToAffiliateWith.mAffiliatedTaskColor;
Craig Mautnera228ae92014-07-09 05:44:55 -0700437 // Find the end
438 while (taskToAffiliateWith.mNextAffiliate != null) {
439 final TaskRecord nextRecents = taskToAffiliateWith.mNextAffiliate;
440 if (nextRecents.mAffiliatedTaskId != mAffiliatedTaskId) {
441 Slog.e(TAG, "setTaskToAffiliateWith: nextRecents=" + nextRecents + " affilTaskId="
442 + nextRecents.mAffiliatedTaskId + " should be " + mAffiliatedTaskId);
443 if (nextRecents.mPrevAffiliate == taskToAffiliateWith) {
444 nextRecents.setPrevAffiliate(null);
445 }
446 taskToAffiliateWith.setNextAffiliate(null);
447 break;
448 }
449 taskToAffiliateWith = nextRecents;
450 }
451 taskToAffiliateWith.setNextAffiliate(this);
452 setPrevAffiliate(taskToAffiliateWith);
453 setNextAffiliate(null);
454 }
455
Winson Chung096f36b2014-08-20 15:39:01 -0700456 /**
457 * Sets the last thumbnail.
458 * @return whether the thumbnail was set
459 */
460 boolean setLastThumbnail(Bitmap thumbnail) {
461 if (mLastThumbnail != thumbnail) {
462 mLastThumbnail = thumbnail;
463 if (thumbnail == null) {
464 if (mLastThumbnailFile != null) {
465 mLastThumbnailFile.delete();
466 }
467 } else {
468 mService.mTaskPersister.saveImage(thumbnail, mFilename);
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700469 }
Winson Chung096f36b2014-08-20 15:39:01 -0700470 return true;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700471 }
Winson Chung096f36b2014-08-20 15:39:01 -0700472 return false;
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700473 }
474
475 void getLastThumbnail(TaskThumbnail thumbs) {
476 thumbs.mainThumbnail = mLastThumbnail;
477 thumbs.thumbnailFileDescriptor = null;
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700478 if (mLastThumbnail == null) {
Craig Mautner648f69b2014-09-18 14:16:26 -0700479 thumbs.mainThumbnail = mService.mTaskPersister.getImageFromWriteQueue(mFilename);
Craig Mautnerf4f8bb72014-07-29 10:41:40 -0700480 }
Winson Chung096f36b2014-08-20 15:39:01 -0700481 // Only load the thumbnail file if we don't have a thumbnail
482 if (thumbs.mainThumbnail == null && mLastThumbnailFile.exists()) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700483 try {
484 thumbs.thumbnailFileDescriptor = ParcelFileDescriptor.open(mLastThumbnailFile,
485 ParcelFileDescriptor.MODE_READ_ONLY);
486 } catch (IOException e) {
Dianne Hackborn9844d292013-10-04 16:44:22 -0700487 }
488 }
489 }
490
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700491 void freeLastThumbnail() {
492 mLastThumbnail = null;
493 }
494
495 void disposeThumbnail() {
496 mLastThumbnail = null;
497 lastDescription = null;
498 }
499
Winson Chung1147c402014-05-14 11:05:00 -0700500 /** Returns the intent for the root activity for this task */
501 Intent getBaseIntent() {
502 return intent != null ? intent : affinityIntent;
503 }
504
Winson Chung3b3f4642014-04-22 10:08:18 -0700505 /** Returns the first non-finishing activity from the root. */
506 ActivityRecord getRootActivity() {
507 for (int i = 0; i < mActivities.size(); i++) {
508 final ActivityRecord r = mActivities.get(i);
509 if (r.finishing) {
510 continue;
511 }
512 return r;
513 }
514 return null;
515 }
516
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800517 ActivityRecord getTopActivity() {
518 for (int i = mActivities.size() - 1; i >= 0; --i) {
519 final ActivityRecord r = mActivities.get(i);
520 if (r.finishing) {
521 continue;
522 }
523 return r;
524 }
525 return null;
526 }
527
Craig Mautner6b74cb52013-09-27 17:02:21 -0700528 ActivityRecord topRunningActivityLocked(ActivityRecord notTop) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700529 if (stack != null) {
530 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
531 ActivityRecord r = mActivities.get(activityNdx);
532 if (!r.finishing && r != notTop && stack.okToShowLocked(r)) {
533 return r;
534 }
Craig Mautner6b74cb52013-09-27 17:02:21 -0700535 }
536 }
537 return null;
538 }
539
Craig Mautner3b475fe2013-12-16 15:58:31 -0800540 /** Call after activity movement or finish to make sure that frontOfTask is set correctly */
541 final void setFrontOfTask() {
542 boolean foundFront = false;
543 final int numActivities = mActivities.size();
Craig Mautner704e40b2013-12-18 16:43:51 -0800544 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
Craig Mautner3b475fe2013-12-16 15:58:31 -0800545 final ActivityRecord r = mActivities.get(activityNdx);
546 if (foundFront || r.finishing) {
547 r.frontOfTask = false;
548 } else {
549 r.frontOfTask = true;
550 // Set frontOfTask false for every following activity.
551 foundFront = true;
552 }
553 }
Craig Mautner9587ee02014-06-23 15:00:10 +0000554 if (!foundFront && numActivities > 0) {
555 // All activities of this task are finishing. As we ought to have a frontOfTask
556 // activity, make the bottom activity front.
557 mActivities.get(0).frontOfTask = true;
558 }
Craig Mautner3b475fe2013-12-16 15:58:31 -0800559 }
560
Craig Mautnerde4ef022013-04-07 19:01:33 -0700561 /**
Craig Mautner3b475fe2013-12-16 15:58:31 -0800562 * Reorder the history stack so that the passed activity is brought to the front.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700563 */
564 final void moveActivityToFrontLocked(ActivityRecord newTop) {
Wale Ogunwale0fc365c2015-05-25 19:35:42 -0700565 if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
566 "Removing and adding activity " + newTop
567 + " to stack at top callers=" + Debug.getCallers(4));
Craig Mautnerde4ef022013-04-07 19:01:33 -0700568
Craig Mautnerde4ef022013-04-07 19:01:33 -0700569 mActivities.remove(newTop);
570 mActivities.add(newTop);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700571 updateEffectiveIntent();
Craig Mautner3b475fe2013-12-16 15:58:31 -0800572
573 setFrontOfTask();
Craig Mautnerde4ef022013-04-07 19:01:33 -0700574 }
575
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800576 void addActivityAtBottom(ActivityRecord r) {
Craig Mautner77878772013-03-04 19:46:24 -0800577 addActivityAtIndex(0, r);
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800578 }
579
580 void addActivityToTop(ActivityRecord r) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700581 addActivityAtIndex(mActivities.size(), r);
582 }
583
584 void addActivityAtIndex(int index, ActivityRecord r) {
Craig Mautner6170f732013-04-02 13:05:23 -0700585 // 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 -0800586 if (!mActivities.remove(r) && r.fullscreen) {
587 // Was not previously in list.
588 numFullscreen++;
589 }
Craig Mautner2c1faed2013-07-23 12:56:02 -0700590 // Only set this based on the first activity
591 if (mActivities.isEmpty()) {
Craig Mautner21d24a22014-04-23 11:45:37 -0700592 taskType = r.mActivityType;
593 isPersistable = r.isPersistable();
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700594 mCallingUid = r.launchedFromUid;
595 mCallingPackage = r.launchedFromPackage;
Dianne Hackborn852975d2014-08-22 17:42:43 -0700596 // Clamp to [1, max].
597 maxRecents = Math.min(Math.max(r.info.maxRecents, 1),
598 ActivityManager.getMaxAppRecentsLimitStatic());
Craig Mautner2c1faed2013-07-23 12:56:02 -0700599 } else {
600 // Otherwise make all added activities match this one.
Craig Mautner21d24a22014-04-23 11:45:37 -0700601 r.mActivityType = taskType;
Craig Mautner78733002013-06-10 13:54:49 -0700602 }
Craig Mautner77878772013-03-04 19:46:24 -0800603 mActivities.add(index, r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700604 updateEffectiveIntent();
Craig Mautner21d24a22014-04-23 11:45:37 -0700605 if (r.isPersistable()) {
606 mService.notifyTaskPersisterLocked(this, false);
607 }
Craig Mautner77878772013-03-04 19:46:24 -0800608 }
609
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800610 /** @return true if this was the last activity in the task */
611 boolean removeActivity(ActivityRecord r) {
612 if (mActivities.remove(r) && r.fullscreen) {
613 // Was previously in list.
614 numFullscreen--;
615 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700616 if (r.isPersistable()) {
617 mService.notifyTaskPersisterLocked(this, false);
618 }
Craig Mautner41326202014-06-20 14:38:21 -0700619 if (mActivities.isEmpty()) {
Craig Mautner5afcd4d2014-06-21 18:11:33 -0700620 return !mReuseTask;
Craig Mautner41326202014-06-20 14:38:21 -0700621 }
622 updateEffectiveIntent();
623 return false;
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800624 }
625
Craig Mautner41db4a72014-05-07 17:20:56 -0700626 boolean autoRemoveFromRecents() {
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700627 // We will automatically remove the task either if it has explicitly asked for
628 // this, or it is empty and has never contained an activity that got shown to
629 // the user.
Dianne Hackborn13420f22014-07-18 15:43:56 -0700630 return autoRemoveRecents || (mActivities.isEmpty() && !hasBeenVisible);
Craig Mautner41db4a72014-05-07 17:20:56 -0700631 }
632
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700633 /**
634 * Completely remove all activities associated with an existing
635 * task starting at a specified index.
636 */
637 final void performClearTaskAtIndexLocked(int activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700638 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700639 for ( ; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700640 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700641 if (r.finishing) {
642 continue;
643 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700644 if (stack == null) {
645 // Task was restored from persistent storage.
646 r.takeFromHistory();
647 mActivities.remove(activityNdx);
648 --activityNdx;
649 --numActivities;
Todd Kennedy539db512014-12-15 09:57:55 -0800650 } else if (stack.finishActivityLocked(
651 r, Activity.RESULT_CANCELED, null, "clear-task-index", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700652 --activityNdx;
653 --numActivities;
654 }
655 }
656 }
657
658 /**
659 * Completely remove all activities associated with an existing task.
660 */
661 final void performClearTaskLocked() {
Craig Mautner362449a2014-06-20 14:04:39 -0700662 mReuseTask = true;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700663 performClearTaskAtIndexLocked(0);
Craig Mautner362449a2014-06-20 14:04:39 -0700664 mReuseTask = false;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700665 }
666
667 /**
668 * Perform clear operation as requested by
669 * {@link Intent#FLAG_ACTIVITY_CLEAR_TOP}: search from the top of the
670 * stack to the given task, then look for
671 * an instance of that activity in the stack and, if found, finish all
672 * activities on top of it and return the instance.
673 *
674 * @param newR Description of the new activity being started.
675 * @return Returns the old activity that should be continued to be used,
676 * or null if none was found.
677 */
678 final ActivityRecord performClearTaskLocked(ActivityRecord newR, int launchFlags) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700679 int numActivities = mActivities.size();
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700680 for (int activityNdx = numActivities - 1; activityNdx >= 0; --activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700681 ActivityRecord r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700682 if (r.finishing) {
683 continue;
684 }
685 if (r.realActivity.equals(newR.realActivity)) {
686 // Here it is! Now finish everything in front...
Craig Mautner1602ec22013-05-12 10:24:27 -0700687 final ActivityRecord ret = r;
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700688
689 for (++activityNdx; activityNdx < numActivities; ++activityNdx) {
Craig Mautner1602ec22013-05-12 10:24:27 -0700690 r = mActivities.get(activityNdx);
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700691 if (r.finishing) {
692 continue;
693 }
694 ActivityOptions opts = r.takeOptionsLocked();
695 if (opts != null) {
696 ret.updateOptionsLocked(opts);
697 }
Wale Ogunwale7d701172015-03-11 15:36:30 -0700698 if (stack != null && stack.finishActivityLocked(
Todd Kennedy539db512014-12-15 09:57:55 -0800699 r, Activity.RESULT_CANCELED, null, "clear-task-stack", false)) {
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700700 --activityNdx;
701 --numActivities;
702 }
703 }
704
705 // Finally, if this is a normal launch mode (that is, not
706 // expecting onNewIntent()), then we will finish the current
707 // instance of the activity so a new fresh one can be started.
708 if (ret.launchMode == ActivityInfo.LAUNCH_MULTIPLE
709 && (launchFlags & Intent.FLAG_ACTIVITY_SINGLE_TOP) == 0) {
710 if (!ret.finishing) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700711 if (stack != null) {
712 stack.finishActivityLocked(
713 ret, Activity.RESULT_CANCELED, null, "clear-task-top", false);
714 }
Craig Mautnerb0f7dc72013-04-01 16:34:45 -0700715 return null;
716 }
717 }
718
719 return ret;
720 }
721 }
722
723 return null;
724 }
725
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700726 public TaskThumbnail getTaskThumbnailLocked() {
Craig Mautner21d24a22014-04-23 11:45:37 -0700727 if (stack != null) {
728 final ActivityRecord resumedActivity = stack.mResumedActivity;
729 if (resumedActivity != null && resumedActivity.task == this) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700730 final Bitmap thumbnail = stack.screenshotActivities(resumedActivity);
731 setLastThumbnail(thumbnail);
Craig Mautner21d24a22014-04-23 11:45:37 -0700732 }
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700733 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700734 final TaskThumbnail taskThumbnail = new TaskThumbnail();
735 getLastThumbnail(taskThumbnail);
736 return taskThumbnail;
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700737 }
738
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700739 public void removeTaskActivitiesLocked() {
740 // Just remove the entire task.
741 performClearTaskAtIndexLocked(0);
Craig Mautner9db9a0b2013-04-29 17:05:56 -0700742 }
743
Craig Mautner432f64e2015-05-20 14:59:57 -0700744 String lockTaskAuthToString() {
745 switch (mLockTaskAuth) {
746 case LOCK_TASK_AUTH_DONT_LOCK: return "LOCK_TASK_AUTH_DONT_LOCK";
747 case LOCK_TASK_AUTH_PINNABLE: return "LOCK_TASK_AUTH_PINNABLE";
748 case LOCK_TASK_AUTH_LAUNCHABLE: return "LOCK_TASK_AUTH_LAUNCHABLE";
749 case LOCK_TASK_AUTH_WHITELISTED: return "LOCK_TASK_AUTH_WHITELISTED";
750 default: return "unknown=" + mLockTaskAuth;
751 }
752 }
753
Craig Mautner15df08a2015-04-01 12:17:18 -0700754 void setLockTaskAuth() {
755 switch (mLockTaskMode) {
756 case LOCK_TASK_LAUNCH_MODE_DEFAULT:
757 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
758 LOCK_TASK_AUTH_WHITELISTED : LOCK_TASK_AUTH_PINNABLE;
759 break;
760
761 case LOCK_TASK_LAUNCH_MODE_NEVER:
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700762 mLockTaskAuth = mPrivileged ?
Craig Mautner15df08a2015-04-01 12:17:18 -0700763 LOCK_TASK_AUTH_DONT_LOCK : LOCK_TASK_AUTH_PINNABLE;
764 break;
765
766 case LOCK_TASK_LAUNCH_MODE_ALWAYS:
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700767 mLockTaskAuth = mPrivileged ?
Craig Mautner15df08a2015-04-01 12:17:18 -0700768 LOCK_TASK_AUTH_LAUNCHABLE: LOCK_TASK_AUTH_PINNABLE;
769 break;
770
771 case LOCK_TASK_LAUNCH_MODE_IF_WHITELISTED:
772 mLockTaskAuth = isLockTaskWhitelistedLocked() ?
773 LOCK_TASK_AUTH_LAUNCHABLE : LOCK_TASK_AUTH_PINNABLE;
774 break;
775 }
Craig Mautner432f64e2015-05-20 14:59:57 -0700776 if (DEBUG_LOCKTASK) Slog.d(TAG_LOCKTASK, "setLockTaskAuth: task=" + this +
777 " mLockTaskAuth=" + lockTaskAuthToString());
Craig Mautner15df08a2015-04-01 12:17:18 -0700778 }
779
780 boolean isLockTaskWhitelistedLocked() {
781 if (mCallingPackage == null) {
782 return false;
783 }
784 String[] packages = mService.mLockTaskPackages.get(userId);
785 if (packages == null) {
786 return false;
787 }
788 for (int i = packages.length - 1; i >= 0; --i) {
789 if (mCallingPackage.equals(packages[i])) {
790 return true;
791 }
792 }
793 return false;
794 }
Craig Mautnera82aa092013-09-13 15:34:08 -0700795 boolean isHomeTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -0700796 return taskType == HOME_ACTIVITY_TYPE;
Craig Mautnera82aa092013-09-13 15:34:08 -0700797 }
798
Craig Mautner86d67a42013-05-14 10:34:38 -0700799 boolean isApplicationTask() {
Craig Mautner84984fa2014-06-19 11:19:20 -0700800 return taskType == APPLICATION_ACTIVITY_TYPE;
801 }
802
803 boolean isOverHomeStack() {
804 return mTaskToReturnTo == HOME_ACTIVITY_TYPE || mTaskToReturnTo == RECENTS_ACTIVITY_TYPE;
Craig Mautner1602ec22013-05-12 10:24:27 -0700805 }
806
Craig Mautner525f3d92013-05-07 14:01:50 -0700807 /**
808 * Find the activity in the history stack within the given task. Returns
809 * the index within the history at which it's found, or < 0 if not found.
810 */
811 final ActivityRecord findActivityInHistoryLocked(ActivityRecord r) {
812 final ComponentName realActivity = r.realActivity;
813 for (int activityNdx = mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
814 ActivityRecord candidate = mActivities.get(activityNdx);
815 if (candidate.finishing) {
816 continue;
817 }
818 if (candidate.realActivity.equals(realActivity)) {
819 return candidate;
820 }
821 }
822 return null;
823 }
824
Winson Chunga449dc02014-05-16 11:15:04 -0700825 /** Updates the last task description values. */
826 void updateTaskDescription() {
827 // Traverse upwards looking for any break between main task activities and
828 // utility activities.
829 int activityNdx;
830 final int numActivities = mActivities.size();
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700831 final boolean relinquish = numActivities == 0 ? false :
832 (mActivities.get(0).info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) != 0;
Winson Chunga449dc02014-05-16 11:15:04 -0700833 for (activityNdx = Math.min(numActivities, 1); activityNdx < numActivities;
Craig Mautner21d24a22014-04-23 11:45:37 -0700834 ++activityNdx) {
Winson Chunga449dc02014-05-16 11:15:04 -0700835 final ActivityRecord r = mActivities.get(activityNdx);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700836 if (relinquish && (r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
837 // This will be the top activity for determining taskDescription. Pre-inc to
838 // overcome initial decrement below.
839 ++activityNdx;
840 break;
841 }
Winson Chunga449dc02014-05-16 11:15:04 -0700842 if (r.intent != null &&
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700843 (r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
Winson Chunga449dc02014-05-16 11:15:04 -0700844 break;
845 }
846 }
847 if (activityNdx > 0) {
848 // Traverse downwards starting below break looking for set label, icon.
849 // Note that if there are activities in the task but none of them set the
850 // recent activity values, then we do not fall back to the last set
851 // values in the TaskRecord.
852 String label = null;
Craig Mautner648f69b2014-09-18 14:16:26 -0700853 String iconFilename = null;
Winson Chunga449dc02014-05-16 11:15:04 -0700854 int colorPrimary = 0;
855 for (--activityNdx; activityNdx >= 0; --activityNdx) {
856 final ActivityRecord r = mActivities.get(activityNdx);
857 if (r.taskDescription != null) {
858 if (label == null) {
859 label = r.taskDescription.getLabel();
860 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700861 if (iconFilename == null) {
862 iconFilename = r.taskDescription.getIconFilename();
Winson Chunga449dc02014-05-16 11:15:04 -0700863 }
864 if (colorPrimary == 0) {
865 colorPrimary = r.taskDescription.getPrimaryColor();
Winson Chunga449dc02014-05-16 11:15:04 -0700866 }
867 }
868 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700869 lastTaskDescription = new TaskDescription(label, colorPrimary, iconFilename);
Winson Chungec396d62014-08-06 17:08:00 -0700870 // Update the task affiliation color if we are the parent of the group
871 if (taskId == mAffiliatedTaskId) {
872 mAffiliatedTaskColor = lastTaskDescription.getPrimaryColor();
873 }
Winson Chunga449dc02014-05-16 11:15:04 -0700874 }
875 }
876
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700877 int findEffectiveRootIndex() {
Craig Mautner4767f4b2014-09-18 15:38:33 -0700878 int effectiveNdx = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700879 final int topActivityNdx = mActivities.size() - 1;
Dianne Hackborn39569af2014-09-23 10:56:58 -0700880 for (int activityNdx = 0; activityNdx <= topActivityNdx; ++activityNdx) {
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700881 final ActivityRecord r = mActivities.get(activityNdx);
882 if (r.finishing) {
883 continue;
884 }
Craig Mautner4767f4b2014-09-18 15:38:33 -0700885 effectiveNdx = activityNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700886 if ((r.info.flags & ActivityInfo.FLAG_RELINQUISH_TASK_IDENTITY) == 0) {
887 break;
888 }
889 }
Craig Mautner4767f4b2014-09-18 15:38:33 -0700890 return effectiveNdx;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700891 }
892
893 void updateEffectiveIntent() {
894 final int effectiveRootIndex = findEffectiveRootIndex();
895 final ActivityRecord r = mActivities.get(effectiveRootIndex);
Winson Chungfee26772014-08-05 12:21:52 -0700896 setIntent(r);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700897 }
898
Craig Mautner21d24a22014-04-23 11:45:37 -0700899 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700900 if (DEBUG_RECENTS) Slog.i(TAG_RECENTS, "Saving task=" + this);
Craig Mautner21d24a22014-04-23 11:45:37 -0700901
902 out.attribute(null, ATTR_TASKID, String.valueOf(taskId));
903 if (realActivity != null) {
904 out.attribute(null, ATTR_REALACTIVITY, realActivity.flattenToShortString());
905 }
906 if (origActivity != null) {
907 out.attribute(null, ATTR_ORIGACTIVITY, origActivity.flattenToShortString());
908 }
Dianne Hackborn79228822014-09-16 11:11:23 -0700909 // Write affinity, and root affinity if it is different from affinity.
910 // We use the special string "@" for a null root affinity, so we can identify
911 // later whether we were given a root affinity or should just make it the
912 // same as the affinity.
Craig Mautner21d24a22014-04-23 11:45:37 -0700913 if (affinity != null) {
914 out.attribute(null, ATTR_AFFINITY, affinity);
Dianne Hackborn79228822014-09-16 11:11:23 -0700915 if (!affinity.equals(rootAffinity)) {
916 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
917 }
918 } else if (rootAffinity != null) {
919 out.attribute(null, ATTR_ROOT_AFFINITY, rootAffinity != null ? rootAffinity : "@");
Craig Mautner21d24a22014-04-23 11:45:37 -0700920 }
921 out.attribute(null, ATTR_ROOTHASRESET, String.valueOf(rootWasReset));
Dianne Hackborn13420f22014-07-18 15:43:56 -0700922 out.attribute(null, ATTR_AUTOREMOVERECENTS, String.valueOf(autoRemoveRecents));
Craig Mautner21d24a22014-04-23 11:45:37 -0700923 out.attribute(null, ATTR_ASKEDCOMPATMODE, String.valueOf(askedCompatMode));
924 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700925 out.attribute(null, ATTR_EFFECTIVE_UID, String.valueOf(effectiveUid));
Craig Mautner21d24a22014-04-23 11:45:37 -0700926 out.attribute(null, ATTR_TASKTYPE, String.valueOf(taskType));
Winson Chungffa2ec62014-07-03 15:54:42 -0700927 out.attribute(null, ATTR_FIRSTACTIVETIME, String.valueOf(firstActiveTime));
Winson Chungf1fbd772014-06-24 18:06:58 -0700928 out.attribute(null, ATTR_LASTACTIVETIME, String.valueOf(lastActiveTime));
Craig Mautner21d24a22014-04-23 11:45:37 -0700929 out.attribute(null, ATTR_LASTTIMEMOVED, String.valueOf(mLastTimeMoved));
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700930 out.attribute(null, ATTR_NEVERRELINQUISH, String.valueOf(mNeverRelinquishIdentity));
Craig Mautner21d24a22014-04-23 11:45:37 -0700931 if (lastDescription != null) {
932 out.attribute(null, ATTR_LASTDESCRIPTION, lastDescription.toString());
933 }
Winson Chung2cb86c72014-06-25 12:03:30 -0700934 if (lastTaskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -0700935 lastTaskDescription.saveToXml(out);
Winson Chung2cb86c72014-06-25 12:03:30 -0700936 }
Winson Chungec396d62014-08-06 17:08:00 -0700937 out.attribute(null, ATTR_TASK_AFFILIATION_COLOR, String.valueOf(mAffiliatedTaskColor));
Craig Mautnera228ae92014-07-09 05:44:55 -0700938 out.attribute(null, ATTR_TASK_AFFILIATION, String.valueOf(mAffiliatedTaskId));
939 out.attribute(null, ATTR_PREV_AFFILIATION, String.valueOf(mPrevAffiliateTaskId));
940 out.attribute(null, ATTR_NEXT_AFFILIATION, String.valueOf(mNextAffiliateTaskId));
Craig Mautnerdc00cbe2014-07-20 17:48:47 -0700941 out.attribute(null, ATTR_CALLING_UID, String.valueOf(mCallingUid));
942 out.attribute(null, ATTR_CALLING_PACKAGE, mCallingPackage == null ? "" : mCallingPackage);
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -0800943 out.attribute(null, ATTR_RESIZEABLE, String.valueOf(mResizeable));
Wale Ogunwalea7afaa22015-05-01 20:39:18 -0700944 out.attribute(null, ATTR_PRIVILEGED, String.valueOf(mPrivileged));
Winson Chung2cb86c72014-06-25 12:03:30 -0700945
Craig Mautner21d24a22014-04-23 11:45:37 -0700946 if (affinityIntent != null) {
947 out.startTag(null, TAG_AFFINITYINTENT);
948 affinityIntent.saveToXml(out);
949 out.endTag(null, TAG_AFFINITYINTENT);
950 }
951
952 out.startTag(null, TAG_INTENT);
953 intent.saveToXml(out);
954 out.endTag(null, TAG_INTENT);
955
956 final ArrayList<ActivityRecord> activities = mActivities;
957 final int numActivities = activities.size();
958 for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
959 final ActivityRecord r = activities.get(activityNdx);
Craig Mautner43e52ed2014-06-16 17:18:52 -0700960 if (r.info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY || !r.isPersistable() ||
Wale Ogunwale843bfb92015-03-27 11:06:48 -0700961 ((r.intent.getFlags() & FLAG_ACTIVITY_NEW_DOCUMENT
962 | FLAG_ACTIVITY_RETAIN_IN_RECENTS) == FLAG_ACTIVITY_NEW_DOCUMENT) &&
Craig Mautner43e52ed2014-06-16 17:18:52 -0700963 activityNdx > 0) {
Craig Mautnerf357c0c2014-06-09 09:23:27 -0700964 // Stop at first non-persistable or first break in task (CLEAR_WHEN_TASK_RESET).
Craig Mautner21d24a22014-04-23 11:45:37 -0700965 break;
966 }
967 out.startTag(null, TAG_ACTIVITY);
968 r.saveToXml(out);
969 out.endTag(null, TAG_ACTIVITY);
970 }
Craig Mautner21d24a22014-04-23 11:45:37 -0700971 }
972
973 static TaskRecord restoreFromXml(XmlPullParser in, ActivityStackSupervisor stackSupervisor)
974 throws IOException, XmlPullParserException {
975 Intent intent = null;
976 Intent affinityIntent = null;
977 ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
978 ComponentName realActivity = null;
979 ComponentName origActivity = null;
980 String affinity = null;
Dianne Hackborn79228822014-09-16 11:11:23 -0700981 String rootAffinity = null;
982 boolean hasRootAffinity = false;
Craig Mautner21d24a22014-04-23 11:45:37 -0700983 boolean rootHasReset = false;
Dianne Hackborn13420f22014-07-18 15:43:56 -0700984 boolean autoRemoveRecents = false;
Craig Mautner21d24a22014-04-23 11:45:37 -0700985 boolean askedCompatMode = false;
986 int taskType = ActivityRecord.APPLICATION_ACTIVITY_TYPE;
Craig Mautner21d24a22014-04-23 11:45:37 -0700987 int userId = 0;
Dianne Hackborn885fbe52014-08-23 15:23:58 -0700988 int effectiveUid = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -0700989 String lastDescription = null;
Winson Chungffa2ec62014-07-03 15:54:42 -0700990 long firstActiveTime = -1;
Winson Chung2cb86c72014-06-25 12:03:30 -0700991 long lastActiveTime = -1;
Craig Mautner21d24a22014-04-23 11:45:37 -0700992 long lastTimeOnTop = 0;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -0700993 boolean neverRelinquishIdentity = true;
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700994 int taskId = INVALID_TASK_ID;
Craig Mautner21d24a22014-04-23 11:45:37 -0700995 final int outerDepth = in.getDepth();
Craig Mautner648f69b2014-09-18 14:16:26 -0700996 TaskDescription taskDescription = new TaskDescription();
Wale Ogunwale18795a22014-12-03 11:38:33 -0800997 int taskAffiliation = INVALID_TASK_ID;
Winson Chungec396d62014-08-06 17:08:00 -0700998 int taskAffiliationColor = 0;
Wale Ogunwale18795a22014-12-03 11:38:33 -0800999 int prevTaskId = INVALID_TASK_ID;
1000 int nextTaskId = INVALID_TASK_ID;
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001001 int callingUid = -1;
1002 String callingPackage = "";
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08001003 boolean resizeable = false;
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001004 boolean privileged = false;
Craig Mautner21d24a22014-04-23 11:45:37 -07001005
1006 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1007 final String attrName = in.getAttributeName(attrNdx);
1008 final String attrValue = in.getAttributeValue(attrNdx);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001009 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: attribute name=" +
1010 attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001011 if (ATTR_TASKID.equals(attrName)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001012 if (taskId == INVALID_TASK_ID) taskId = Integer.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001013 } else if (ATTR_REALACTIVITY.equals(attrName)) {
1014 realActivity = ComponentName.unflattenFromString(attrValue);
1015 } else if (ATTR_ORIGACTIVITY.equals(attrName)) {
1016 origActivity = ComponentName.unflattenFromString(attrValue);
1017 } else if (ATTR_AFFINITY.equals(attrName)) {
1018 affinity = attrValue;
Dianne Hackborn79228822014-09-16 11:11:23 -07001019 } else if (ATTR_ROOT_AFFINITY.equals(attrName)) {
1020 rootAffinity = attrValue;
1021 hasRootAffinity = true;
Craig Mautner21d24a22014-04-23 11:45:37 -07001022 } else if (ATTR_ROOTHASRESET.equals(attrName)) {
1023 rootHasReset = Boolean.valueOf(attrValue);
Dianne Hackborn13420f22014-07-18 15:43:56 -07001024 } else if (ATTR_AUTOREMOVERECENTS.equals(attrName)) {
1025 autoRemoveRecents = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001026 } else if (ATTR_ASKEDCOMPATMODE.equals(attrName)) {
1027 askedCompatMode = Boolean.valueOf(attrValue);
1028 } else if (ATTR_USERID.equals(attrName)) {
1029 userId = Integer.valueOf(attrValue);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001030 } else if (ATTR_EFFECTIVE_UID.equals(attrName)) {
1031 effectiveUid = Integer.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001032 } else if (ATTR_TASKTYPE.equals(attrName)) {
1033 taskType = Integer.valueOf(attrValue);
Winson Chungffa2ec62014-07-03 15:54:42 -07001034 } else if (ATTR_FIRSTACTIVETIME.equals(attrName)) {
1035 firstActiveTime = Long.valueOf(attrValue);
Winson Chungf1fbd772014-06-24 18:06:58 -07001036 } else if (ATTR_LASTACTIVETIME.equals(attrName)) {
1037 lastActiveTime = Long.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001038 } else if (ATTR_LASTDESCRIPTION.equals(attrName)) {
1039 lastDescription = attrValue;
1040 } else if (ATTR_LASTTIMEMOVED.equals(attrName)) {
1041 lastTimeOnTop = Long.valueOf(attrValue);
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001042 } else if (ATTR_NEVERRELINQUISH.equals(attrName)) {
1043 neverRelinquishIdentity = Boolean.valueOf(attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001044 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1045 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautnera228ae92014-07-09 05:44:55 -07001046 } else if (ATTR_TASK_AFFILIATION.equals(attrName)) {
1047 taskAffiliation = Integer.valueOf(attrValue);
1048 } else if (ATTR_PREV_AFFILIATION.equals(attrName)) {
1049 prevTaskId = Integer.valueOf(attrValue);
1050 } else if (ATTR_NEXT_AFFILIATION.equals(attrName)) {
1051 nextTaskId = Integer.valueOf(attrValue);
Winson Chungec396d62014-08-06 17:08:00 -07001052 } else if (ATTR_TASK_AFFILIATION_COLOR.equals(attrName)) {
1053 taskAffiliationColor = Integer.valueOf(attrValue);
Craig Mautnerdc00cbe2014-07-20 17:48:47 -07001054 } else if (ATTR_CALLING_UID.equals(attrName)) {
1055 callingUid = Integer.valueOf(attrValue);
1056 } else if (ATTR_CALLING_PACKAGE.equals(attrName)) {
1057 callingPackage = attrValue;
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08001058 } else if (ATTR_RESIZEABLE.equals(attrName)) {
1059 resizeable = Boolean.valueOf(attrValue);
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001060 } else if (ATTR_PRIVILEGED.equals(attrName)) {
1061 privileged = Boolean.valueOf(attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001062 } else {
1063 Slog.w(TAG, "TaskRecord: Unknown attribute=" + attrName);
1064 }
1065 }
1066
1067 int event;
1068 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
1069 (event != XmlPullParser.END_TAG || in.getDepth() < outerDepth)) {
1070 if (event == XmlPullParser.START_TAG) {
1071 final String name = in.getName();
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001072 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: START_TAG name=" +
1073 name);
Craig Mautner21d24a22014-04-23 11:45:37 -07001074 if (TAG_AFFINITYINTENT.equals(name)) {
1075 affinityIntent = Intent.restoreFromXml(in);
1076 } else if (TAG_INTENT.equals(name)) {
1077 intent = Intent.restoreFromXml(in);
1078 } else if (TAG_ACTIVITY.equals(name)) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001079 ActivityRecord activity = ActivityRecord.restoreFromXml(in, stackSupervisor);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001080 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "TaskRecord: activity=" +
1081 activity);
Craig Mautner21d24a22014-04-23 11:45:37 -07001082 if (activity != null) {
1083 activities.add(activity);
1084 }
1085 } else {
1086 Slog.e(TAG, "restoreTask: Unexpected name=" + name);
1087 XmlUtils.skipCurrentTag(in);
1088 }
1089 }
1090 }
Dianne Hackborn79228822014-09-16 11:11:23 -07001091 if (!hasRootAffinity) {
1092 rootAffinity = affinity;
1093 } else if ("@".equals(rootAffinity)) {
1094 rootAffinity = null;
1095 }
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001096 if (effectiveUid <= 0) {
1097 Intent checkIntent = intent != null ? intent : affinityIntent;
1098 effectiveUid = 0;
1099 if (checkIntent != null) {
1100 IPackageManager pm = AppGlobals.getPackageManager();
1101 try {
1102 ApplicationInfo ai = pm.getApplicationInfo(
1103 checkIntent.getComponent().getPackageName(),
1104 PackageManager.GET_UNINSTALLED_PACKAGES
1105 | PackageManager.GET_DISABLED_COMPONENTS, userId);
1106 if (ai != null) {
1107 effectiveUid = ai.uid;
1108 }
1109 } catch (RemoteException e) {
1110 }
1111 }
1112 Slog.w(TAG, "Updating task #" + taskId + " for " + checkIntent
1113 + ": effectiveUid=" + effectiveUid);
1114 }
1115
Craig Mautner21d24a22014-04-23 11:45:37 -07001116 final TaskRecord task = new TaskRecord(stackSupervisor.mService, taskId, intent,
Dianne Hackborn79228822014-09-16 11:11:23 -07001117 affinityIntent, affinity, rootAffinity, realActivity, origActivity, rootHasReset,
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001118 autoRemoveRecents, askedCompatMode, taskType, userId, effectiveUid, lastDescription,
1119 activities, firstActiveTime, lastActiveTime, lastTimeOnTop, neverRelinquishIdentity,
Winson Chungec396d62014-08-06 17:08:00 -07001120 taskDescription, taskAffiliation, prevTaskId, nextTaskId, taskAffiliationColor,
Wale Ogunwalea7afaa22015-05-01 20:39:18 -07001121 callingUid, callingPackage, resizeable, privileged);
Craig Mautner21d24a22014-04-23 11:45:37 -07001122
1123 for (int activityNdx = activities.size() - 1; activityNdx >=0; --activityNdx) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001124 activities.get(activityNdx).task = task;
Craig Mautner21d24a22014-04-23 11:45:37 -07001125 }
1126
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001127 if (DEBUG_RECENTS) Slog.d(TAG_RECENTS, "Restored task=" + task);
Craig Mautner21d24a22014-04-23 11:45:37 -07001128 return task;
1129 }
1130
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001131 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001132 pw.print(prefix); pw.print("userId="); pw.print(userId);
Dianne Hackborn885fbe52014-08-23 15:23:58 -07001133 pw.print(" effectiveUid="); UserHandle.formatUid(pw, effectiveUid);
1134 pw.print(" mCallingUid="); UserHandle.formatUid(pw, mCallingUid);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001135 pw.print(" mCallingPackage="); pw.println(mCallingPackage);
Dianne Hackborn79228822014-09-16 11:11:23 -07001136 if (affinity != null || rootAffinity != null) {
1137 pw.print(prefix); pw.print("affinity="); pw.print(affinity);
1138 if (affinity == null || !affinity.equals(rootAffinity)) {
1139 pw.print(" root="); pw.println(rootAffinity);
1140 } else {
1141 pw.println();
1142 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001143 }
Dianne Hackborn91097de2014-04-04 18:02:06 -07001144 if (voiceSession != null || voiceInteractor != null) {
1145 pw.print(prefix); pw.print("VOICE: session=0x");
1146 pw.print(Integer.toHexString(System.identityHashCode(voiceSession)));
1147 pw.print(" interactor=0x");
1148 pw.println(Integer.toHexString(System.identityHashCode(voiceInteractor)));
1149 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001150 if (intent != null) {
1151 StringBuilder sb = new StringBuilder(128);
1152 sb.append(prefix); sb.append("intent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001153 intent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001154 sb.append('}');
1155 pw.println(sb.toString());
1156 }
1157 if (affinityIntent != null) {
1158 StringBuilder sb = new StringBuilder(128);
1159 sb.append(prefix); sb.append("affinityIntent={");
Dianne Hackborn21c241e2012-03-08 13:57:23 -08001160 affinityIntent.toShortString(sb, false, true, false, true);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001161 sb.append('}');
1162 pw.println(sb.toString());
1163 }
1164 if (origActivity != null) {
1165 pw.print(prefix); pw.print("origActivity=");
1166 pw.println(origActivity.flattenToShortString());
1167 }
1168 if (realActivity != null) {
1169 pw.print(prefix); pw.print("realActivity=");
1170 pw.println(realActivity.flattenToShortString());
1171 }
Dianne Hackborn852975d2014-08-22 17:42:43 -07001172 if (autoRemoveRecents || isPersistable || taskType != 0 || mTaskToReturnTo != 0
1173 || numFullscreen != 0) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001174 pw.print(prefix); pw.print("autoRemoveRecents="); pw.print(autoRemoveRecents);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001175 pw.print(" isPersistable="); pw.print(isPersistable);
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001176 pw.print(" numFullscreen="); pw.print(numFullscreen);
1177 pw.print(" taskType="); pw.print(taskType);
1178 pw.print(" mTaskToReturnTo="); pw.println(mTaskToReturnTo);
1179 }
Craig Mautner432f64e2015-05-20 14:59:57 -07001180 if (rootWasReset || mNeverRelinquishIdentity || mReuseTask
1181 || mLockTaskAuth != LOCK_TASK_AUTH_PINNABLE) {
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001182 pw.print(prefix); pw.print("rootWasReset="); pw.print(rootWasReset);
1183 pw.print(" mNeverRelinquishIdentity="); pw.print(mNeverRelinquishIdentity);
Craig Mautner432f64e2015-05-20 14:59:57 -07001184 pw.print(" mReuseTask="); pw.print(mReuseTask);
1185 pw.print(" mLockTaskAuth="); pw.println(lockTaskAuthToString());
Dianne Hackbornaec68bb2014-08-20 15:25:13 -07001186 }
Wale Ogunwale18795a22014-12-03 11:38:33 -08001187 if (mAffiliatedTaskId != taskId || mPrevAffiliateTaskId != INVALID_TASK_ID
1188 || mPrevAffiliate != null || mNextAffiliateTaskId != INVALID_TASK_ID
1189 || mNextAffiliate != null) {
Dianne Hackborn852975d2014-08-22 17:42:43 -07001190 pw.print(prefix); pw.print("affiliation="); pw.print(mAffiliatedTaskId);
1191 pw.print(" prevAffiliation="); pw.print(mPrevAffiliateTaskId);
1192 pw.print(" (");
1193 if (mPrevAffiliate == null) {
1194 pw.print("null");
1195 } else {
1196 pw.print(Integer.toHexString(System.identityHashCode(mPrevAffiliate)));
1197 }
1198 pw.print(") nextAffiliation="); pw.print(mNextAffiliateTaskId);
1199 pw.print(" (");
1200 if (mNextAffiliate == null) {
1201 pw.print("null");
1202 } else {
1203 pw.print(Integer.toHexString(System.identityHashCode(mNextAffiliate)));
1204 }
1205 pw.println(")");
1206 }
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001207 pw.print(prefix); pw.print("Activities="); pw.println(mActivities);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001208 if (!askedCompatMode || !inRecents || !isAvailable) {
1209 pw.print(prefix); pw.print("askedCompatMode="); pw.print(askedCompatMode);
1210 pw.print(" inRecents="); pw.print(inRecents);
1211 pw.print(" isAvailable="); pw.println(isAvailable);
Dianne Hackborn36cd41f2011-05-25 21:00:46 -07001212 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001213 pw.print(prefix); pw.print("lastThumbnail="); pw.print(mLastThumbnail);
Dianne Hackborn852975d2014-08-22 17:42:43 -07001214 pw.print(" lastThumbnailFile="); pw.println(mLastThumbnailFile);
1215 if (lastDescription != null) {
1216 pw.print(prefix); pw.print("lastDescription="); pw.println(lastDescription);
1217 }
Dianne Hackbornd38aed82014-06-10 21:36:35 -07001218 pw.print(prefix); pw.print("hasBeenVisible="); pw.print(hasBeenVisible);
Wale Ogunwale9d3de4c2015-02-01 16:49:44 -08001219 pw.print(" mResizeable="); pw.print(mResizeable);
Winson Chungffa2ec62014-07-03 15:54:42 -07001220 pw.print(" firstActiveTime="); pw.print(lastActiveTime);
Dianne Hackbornd38aed82014-06-10 21:36:35 -07001221 pw.print(" lastActiveTime="); pw.print(lastActiveTime);
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001222 pw.print(" (inactive for ");
1223 pw.print((getInactiveDuration()/1000)); pw.println("s)");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001224 }
1225
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001226 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001227 public String toString() {
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001228 StringBuilder sb = new StringBuilder(128);
Craig Mautnerde4ef022013-04-07 19:01:33 -07001229 if (stringName != null) {
1230 sb.append(stringName);
1231 sb.append(" U=");
1232 sb.append(userId);
1233 sb.append(" sz=");
1234 sb.append(mActivities.size());
1235 sb.append('}');
1236 return sb.toString();
1237 }
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001238 sb.append("TaskRecord{");
1239 sb.append(Integer.toHexString(System.identityHashCode(this)));
1240 sb.append(" #");
1241 sb.append(taskId);
1242 if (affinity != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001243 sb.append(" A=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001244 sb.append(affinity);
1245 } else if (intent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001246 sb.append(" I=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001247 sb.append(intent.getComponent().flattenToShortString());
1248 } else if (affinityIntent != null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -08001249 sb.append(" aI=");
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001250 sb.append(affinityIntent.getComponent().flattenToShortString());
1251 } else {
1252 sb.append(" ??");
1253 }
Craig Mautnerde4ef022013-04-07 19:01:33 -07001254 stringName = sb.toString();
1255 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001256 }
1257}