blob: 32ca5bfa3049dbbe8b9a3515ac1d1d50a3014ef7 [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 Ogunwale4cea0f52015-12-25 06:30:31 -080019import static android.app.ActivityManager.StackId;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080020import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
Wale Ogunwale22e25262016-02-01 10:32:02 -080021import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
Wale Ogunwale513346d2016-01-27 10:55:01 -080022import static android.content.pm.ActivityInfo.RESIZE_MODE_CROP_WINDOWS;
Wale Ogunwale6cae7652015-12-26 07:36:26 -080023import static android.content.pm.ActivityInfo.FLAG_ALWAYS_FOCUSABLE;
Wale Ogunwaled26176f2016-01-25 20:04:04 -080024import static android.content.pm.ActivityInfo.RESIZE_MODE_RESIZEABLE_AND_PIPABLE;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080025import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONFIGURATION;
26import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SAVED_STATE;
27import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
28import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_THUMBNAILS;
29import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
30import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
31import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_THUMBNAILS;
32import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
33import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Wale Ogunwale18795a22014-12-03 11:38:33 -080034import static com.android.server.am.TaskRecord.INVALID_TASK_ID;
35
Craig Mautner21d24a22014-04-23 11:45:37 -070036import android.app.ActivityManager.TaskDescription;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070037import android.app.ActivityOptions;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080038import android.app.PendingIntent;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080039import android.app.ResultInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.content.ComponentName;
41import android.content.Intent;
42import android.content.pm.ActivityInfo;
43import android.content.pm.ApplicationInfo;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -070044import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.content.res.Configuration;
46import android.graphics.Bitmap;
Dianne Hackbornd367ca82012-05-07 15:49:39 -070047import android.graphics.Rect;
Dianne Hackborn247fe742011-01-08 17:25:57 -080048import android.os.Build;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080049import android.os.Bundle;
Dianne Hackbornbe707852011-11-11 14:32:10 -080050import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051import android.os.Message;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080052import android.os.PersistableBundle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080053import android.os.Process;
Dianne Hackborn39792d22010-08-19 18:01:52 -070054import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055import android.os.SystemClock;
Filip Gruszczynski3d026712015-12-16 13:46:38 -080056import android.os.Trace;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070057import android.os.UserHandle;
Amith Yamasani0af6fa72016-01-17 15:36:19 -080058import android.service.voice.IVoiceInteractionSession;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import android.util.EventLog;
60import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070061import android.util.Slog;
Dianne Hackborn0dad3642010-09-09 21:25:35 -070062import android.util.TimeUtils;
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -070063import android.view.AppTransitionAnimationSpec;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064import android.view.IApplicationToken;
Dianne Hackborn7eec10e2010-11-12 18:03:47 -080065import android.view.WindowManager;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070066
Filip Gruszczynski3d026712015-12-16 13:46:38 -080067import com.android.internal.app.ResolverActivity;
68import com.android.internal.content.ReferrerIntent;
69import com.android.internal.util.XmlUtils;
70import com.android.server.AttributeCache;
71import com.android.server.am.ActivityStack.ActivityState;
72import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073
Suprabh Shukla23593142015-11-03 17:31:15 -080074import java.io.File;
Craig Mautner21d24a22014-04-23 11:45:37 -070075import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080076import java.io.PrintWriter;
77import java.lang.ref.WeakReference;
78import java.util.ArrayList;
79import java.util.HashSet;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070080import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080081
Filip Gruszczynski3d026712015-12-16 13:46:38 -080082import org.xmlpull.v1.XmlPullParser;
83import org.xmlpull.v1.XmlPullParserException;
84import org.xmlpull.v1.XmlSerializer;
85
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086/**
87 * An entry in the history stack, representing an activity.
88 */
Dianne Hackbornbe707852011-11-11 14:32:10 -080089final class ActivityRecord {
Wale Ogunwalee23149f2015-03-06 15:39:44 -080090 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityRecord" : TAG_AM;
Wale Ogunwale0fc365c2015-05-25 19:35:42 -070091 private static final String TAG_STATES = TAG + POSTFIX_STATES;
Wale Ogunwaleee006da2015-03-30 14:49:25 -070092 private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
93 private static final String TAG_THUMBNAILS = TAG + POSTFIX_THUMBNAILS;
Wale Ogunwalee23149f2015-03-06 15:39:44 -080094
Wale Ogunwale3ab9a272015-03-16 09:55:45 -070095 private static final boolean SHOW_ACTIVITY_START_TIME = true;
Winson Chung740c3ac2014-11-12 16:14:38 -080096 final public static String RECENTS_PACKAGE_NAME = "com.android.systemui.recents";
Craig Mautnerb59dcfd2013-05-06 13:12:58 -070097
Craig Mautner21d24a22014-04-23 11:45:37 -070098 private static final String ATTR_ID = "id";
99 private static final String TAG_INTENT = "intent";
100 private static final String ATTR_USERID = "user_id";
101 private static final String TAG_PERSISTABLEBUNDLE = "persistable_bundle";
102 private static final String ATTR_LAUNCHEDFROMUID = "launched_from_uid";
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700103 private static final String ATTR_LAUNCHEDFROMPACKAGE = "launched_from_package";
Craig Mautner21d24a22014-04-23 11:45:37 -0700104 private static final String ATTR_RESOLVEDTYPE = "resolved_type";
105 private static final String ATTR_COMPONENTSPECIFIED = "component_specified";
Dianne Hackborn337abb32014-09-24 12:44:29 -0700106 static final String ACTIVITY_ICON_SUFFIX = "_activity_icon_";
Craig Mautner21d24a22014-04-23 11:45:37 -0700107
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 final ActivityManagerService service; // owner
Dianne Hackbornbe707852011-11-11 14:32:10 -0800109 final IApplicationToken.Stub appToken; // window manager token
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 final ActivityInfo info; // all about me
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700111 final ApplicationInfo appInfo; // information about activity's app
Stefan Kuhnee88d1e52015-05-18 10:33:45 -0700112 final int launchedFromUid; // always the uid who started the activity.
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800113 final String launchedFromPackage; // always the package who started the activity.
Amith Yamasani742a6712011-05-04 14:49:28 -0700114 final int userId; // Which user is this running for?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 final Intent intent; // the original intent that generated us
116 final ComponentName realActivity; // the intent component, or target of an alias.
117 final String shortComponentName; // the short component name of the intent
118 final String resolvedType; // as per original caller;
119 final String packageName; // the package implementing intent's component
120 final String processName; // process where this component wants to run
121 final String taskAffinity; // as per ActivityInfo.taskAffinity
122 final boolean stateNotNeeded; // As per ActivityInfo.flags
Craig Mautner4addfc52013-06-25 08:05:45 -0700123 boolean fullscreen; // covers the full screen?
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800124 final boolean noDisplay; // activity is not displayed?
The Android Open Source Project4df24232009-03-05 14:34:35 -0800125 final boolean componentSpecified; // did caller specifiy an explicit component?
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700126 final boolean rootVoiceInteraction; // was this the root activity of a voice interaction?
Craig Mautner86d67a42013-05-14 10:34:38 -0700127
128 static final int APPLICATION_ACTIVITY_TYPE = 0;
129 static final int HOME_ACTIVITY_TYPE = 1;
130 static final int RECENTS_ACTIVITY_TYPE = 2;
Craig Mautner2c1faed2013-07-23 12:56:02 -0700131 int mActivityType;
Craig Mautner86d67a42013-05-14 10:34:38 -0700132
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800133 CharSequence nonLocalizedLabel; // the label information from the package mgr.
134 int labelRes; // the label information from the package mgr.
135 int icon; // resource identifier of activity's icon.
Adam Powell04fe6eb2013-05-31 14:39:48 -0700136 int logo; // resource identifier of activity's logo.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800137 int theme; // resource identifier of activity's theme.
Dianne Hackborn247fe742011-01-08 17:25:57 -0800138 int realTheme; // actual theme resource we will use, never 0.
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800139 int windowFlags; // custom window flags for preview window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 TaskRecord task; // the task this is in.
Craig Mautner21d24a22014-04-23 11:45:37 -0700141 long createTime = System.currentTimeMillis();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700142 long displayStartTime; // when we started launching this activity
143 long fullyDrawnStartTime; // when we started launching this activity
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700144 long startTime; // last time this activity was started
Dianne Hackborn50685602011-12-01 12:23:37 -0800145 long lastVisibleTime; // last time this activity became visible
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700146 long cpuTimeAtResume; // the cpu time of host process at the time of resuming activity
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700147 long pauseTime; // last time we started pausing the activity
148 long launchTickTime; // base time for launch tick messages
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 Configuration configuration; // configuration activity was last running in
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700150 // Overridden configuration by the activity task
151 // WARNING: Reference points to {@link TaskRecord#mOverrideConfig}, so its internal state
Wale Ogunwale60454db2015-01-23 16:05:07 -0800152 // should never be altered directly.
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700153 Configuration taskConfigOverride;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -0700154 CompatibilityInfo compat;// last used compatibility mode
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700155 ActivityRecord resultTo; // who started this entry, so will get our reply
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156 final String resultWho; // additional identifier for use by resultTo.
157 final int requestCode; // code given by requester (resultTo)
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800158 ArrayList<ResultInfo> results; // pending ActivityResult objs we have received
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800159 HashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this act
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800160 ArrayList<ReferrerIntent> newIntents; // any pending new intents for single-top mode
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700161 ActivityOptions pendingOptions; // most recently given options
George Mount6ba042b2014-07-28 11:12:28 -0700162 ActivityOptions returningOptions; // options that are coming back via convertToTranslucent
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700163 AppTimeTracker appTimeTracker; // set if we are tracking the time in this app/task/activity
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800164 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold
Dianne Hackborn7e269642010-08-25 19:50:20 -0700165 UriPermissionOwner uriPermissions; // current special URI access perms.
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700166 ProcessRecord app; // if non-null, hosting application
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700167 ActivityState state; // current state we are in
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 Bundle icicle; // last saved activity state
Craig Mautnera0026042014-04-23 11:45:37 -0700169 PersistableBundle persistentState; // last persistently saved activity state
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800170 boolean frontOfTask; // is this the root activity of its task?
171 boolean launchFailed; // set if a launched failed, to abort on 2nd try
172 boolean haveState; // have we gotten the last activity state?
173 boolean stopped; // is activity pause finished?
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700174 boolean delayedResume; // not yet resumed because of stopped app switches?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 boolean finishing; // activity in pending finish list?
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800176 boolean deferRelaunchUntilPaused; // relaunch of activity is being deferred until pause is
177 // completed
178 boolean preserveWindowOnDeferredRelaunch; // activity windows are preserved on deferred relaunch
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800179 int configChangeFlags; // which config values have changed
180 boolean keysPaused; // has key dispatching been paused for it?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800181 int launchMode; // the launch mode activity attribute.
182 boolean visible; // does this activity's window need to be shown?
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800183 boolean sleeping; // have we told the activity to sleep?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800184 boolean nowVisible; // is this activity's window visible?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800185 boolean idle; // has the activity gone idle?
186 boolean hasBeenLaunched;// has this activity ever been launched?
187 boolean frozenBeforeDestroy;// has been frozen but not yet destroyed.
Daniel Sandler69a48172010-06-23 16:29:36 -0400188 boolean immersive; // immersive mode (don't interrupt if possible)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400189 boolean forceNewConfig; // force re-create with new config next time
Dianne Hackborn07981492013-01-28 11:36:23 -0800190 int launchCount; // count of launches since last state
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800191 long lastLaunchTime; // time of last launch of this activity
Ruben Brunkdd18a0b2015-12-04 16:16:31 -0800192 boolean isVrActivity; // is the activity running in VR mode?
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800193 ArrayList<ActivityContainer> mChildContainers = new ArrayList<>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700195 String stringName; // for caching of toString().
Craig Mautnerde4ef022013-04-07 19:01:33 -0700196
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700197 private boolean inHistory; // are we in the history stack?
Craig Mautnerde4ef022013-04-07 19:01:33 -0700198 final ActivityStackSupervisor mStackSupervisor;
Craig Mautnera61bc652013-10-28 15:43:18 -0700199 boolean mStartingWindowShown = false;
Jorim Jaggic2f262b2015-12-07 16:59:10 -0800200 boolean mUpdateTaskThumbnailWhenHidden;
Craig Mautnere0a38842013-12-16 16:14:02 -0800201 ActivityContainer mInitialActivityContainer;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700202
Craig Mautner21d24a22014-04-23 11:45:37 -0700203 TaskDescription taskDescription; // the recents information for this activity
Craig Mautnerbb742462014-07-07 15:28:55 -0700204 boolean mLaunchTaskBehind; // this activity is actively being launched with
205 // ActivityOptions.setLaunchTaskBehind, will be cleared once launch is completed.
Craig Mautner2fbd7542014-03-21 09:34:07 -0700206
Filip Gruszczynski23493322015-07-29 17:02:59 -0700207 // These configurations are collected from application's resources based on size-sensitive
208 // qualifiers. For example, layout-w800dp will be added to mHorizontalSizeConfigurations as 800
209 // and drawable-sw400dp will be added to both as 400.
210 private int[] mVerticalSizeConfigurations;
211 private int[] mHorizontalSizeConfigurations;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700212 private int[] mSmallestSizeConfigurations;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700213
Amith Yamasani0af6fa72016-01-17 15:36:19 -0800214 boolean pendingVoiceInteractionStart; // Waiting for activity-invoked voice session
215 IVoiceInteractionSession voiceSession; // Voice interaction session for this activity
216
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700218 final long now = SystemClock.uptimeMillis();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700219 pw.print(prefix); pw.print("packageName="); pw.print(packageName);
220 pw.print(" processName="); pw.println(processName);
221 pw.print(prefix); pw.print("launchedFromUid="); pw.print(launchedFromUid);
Craig Mautnere11f2b72013-04-01 12:37:17 -0700222 pw.print(" launchedFromPackage="); pw.print(launchedFromPackage);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800223 pw.print(" userId="); pw.println(userId);
224 pw.print(prefix); pw.print("app="); pw.println(app);
225 pw.print(prefix); pw.println(intent.toInsecureStringWithClip());
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700226 pw.print(prefix); pw.print("frontOfTask="); pw.print(frontOfTask);
227 pw.print(" task="); pw.println(task);
228 pw.print(prefix); pw.print("taskAffinity="); pw.println(taskAffinity);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700229 pw.print(prefix); pw.print("realActivity=");
230 pw.println(realActivity.flattenToShortString());
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700231 if (appInfo != null) {
232 pw.print(prefix); pw.print("baseDir="); pw.println(appInfo.sourceDir);
233 if (!Objects.equals(appInfo.sourceDir, appInfo.publicSourceDir)) {
234 pw.print(prefix); pw.print("resDir="); pw.println(appInfo.publicSourceDir);
235 }
236 pw.print(prefix); pw.print("dataDir="); pw.println(appInfo.dataDir);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800237 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700238 pw.print(prefix); pw.print("stateNotNeeded="); pw.print(stateNotNeeded);
239 pw.print(" componentSpecified="); pw.print(componentSpecified);
Craig Mautner86d67a42013-05-14 10:34:38 -0700240 pw.print(" mActivityType="); pw.println(mActivityType);
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700241 if (rootVoiceInteraction) {
242 pw.print(prefix); pw.print("rootVoiceInteraction="); pw.println(rootVoiceInteraction);
243 }
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800244 pw.print(prefix); pw.print("compat="); pw.print(compat);
245 pw.print(" labelRes=0x"); pw.print(Integer.toHexString(labelRes));
246 pw.print(" icon=0x"); pw.print(Integer.toHexString(icon));
247 pw.print(" theme=0x"); pw.println(Integer.toHexString(theme));
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700248 pw.print(prefix); pw.print("config="); pw.println(configuration);
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700249 pw.print(prefix); pw.print("taskConfigOverride="); pw.println(taskConfigOverride);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700250 if (resultTo != null || resultWho != null) {
251 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
252 pw.print(" resultWho="); pw.print(resultWho);
253 pw.print(" resultCode="); pw.println(requestCode);
254 }
Craig Mautner29c58ca2014-10-14 16:17:06 -0700255 if (taskDescription != null) {
256 final String iconFilename = taskDescription.getIconFilename();
257 if (iconFilename != null || taskDescription.getLabel() != null ||
258 taskDescription.getPrimaryColor() != 0) {
259 pw.print(prefix); pw.print("taskDescription:");
260 pw.print(" iconFilename="); pw.print(taskDescription.getIconFilename());
261 pw.print(" label=\""); pw.print(taskDescription.getLabel());
262 pw.print("\"");
263 pw.print(" color=");
264 pw.println(Integer.toHexString(taskDescription.getPrimaryColor()));
265 }
266 if (iconFilename == null && taskDescription.getIcon() != null) {
267 pw.print(prefix); pw.println("taskDescription contains Bitmap");
268 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700269 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700270 if (results != null) {
271 pw.print(prefix); pw.print("results="); pw.println(results);
272 }
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700273 if (pendingResults != null && pendingResults.size() > 0) {
274 pw.print(prefix); pw.println("Pending Results:");
275 for (WeakReference<PendingIntentRecord> wpir : pendingResults) {
276 PendingIntentRecord pir = wpir != null ? wpir.get() : null;
277 pw.print(prefix); pw.print(" - ");
278 if (pir == null) {
279 pw.println("null");
280 } else {
281 pw.println(pir);
282 pir.dump(pw, prefix + " ");
283 }
284 }
285 }
286 if (newIntents != null && newIntents.size() > 0) {
287 pw.print(prefix); pw.println("Pending New Intents:");
288 for (int i=0; i<newIntents.size(); i++) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800289 Intent intent = newIntents.get(i);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700290 pw.print(prefix); pw.print(" - ");
291 if (intent == null) {
292 pw.println("null");
293 } else {
294 pw.println(intent.toShortString(false, true, false, true));
295 }
296 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700297 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700298 if (pendingOptions != null) {
299 pw.print(prefix); pw.print("pendingOptions="); pw.println(pendingOptions);
300 }
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700301 if (appTimeTracker != null) {
302 appTimeTracker.dumpWithHeader(pw, prefix, false);
303 }
Dianne Hackborn7e269642010-08-25 19:50:20 -0700304 if (uriPermissions != null) {
Jeff Sharkey846318a2014-04-04 12:12:41 -0700305 uriPermissions.dump(pw, prefix);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700306 }
307 pw.print(prefix); pw.print("launchFailed="); pw.print(launchFailed);
Dianne Hackborn07981492013-01-28 11:36:23 -0800308 pw.print(" launchCount="); pw.print(launchCount);
309 pw.print(" lastLaunchTime=");
310 if (lastLaunchTime == 0) pw.print("0");
311 else TimeUtils.formatDuration(lastLaunchTime, now, pw);
312 pw.println();
Dianne Hackborncfc837f2013-06-27 18:32:07 -0700313 pw.print(prefix); pw.print("haveState="); pw.print(haveState);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700314 pw.print(" icicle="); pw.println(icicle);
315 pw.print(prefix); pw.print("state="); pw.print(state);
316 pw.print(" stopped="); pw.print(stopped);
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700317 pw.print(" delayedResume="); pw.print(delayedResume);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700318 pw.print(" finishing="); pw.println(finishing);
319 pw.print(prefix); pw.print("keysPaused="); pw.print(keysPaused);
320 pw.print(" inHistory="); pw.print(inHistory);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700321 pw.print(" visible="); pw.print(visible);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800322 pw.print(" sleeping="); pw.print(sleeping);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700323 pw.print(" idle="); pw.println(idle);
Wale Ogunwale9017ec02016-02-25 08:55:25 -0800324 pw.print(" mStartingWindowShown="); pw.println(mStartingWindowShown);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800325 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen);
326 pw.print(" noDisplay="); pw.print(noDisplay);
327 pw.print(" immersive="); pw.print(immersive);
328 pw.print(" launchMode="); pw.println(launchMode);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800329 pw.print(prefix); pw.print("frozenBeforeDestroy="); pw.print(frozenBeforeDestroy);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400330 pw.print(" forceNewConfig="); pw.println(forceNewConfig);
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700331 pw.print(prefix); pw.print("mActivityType=");
332 pw.println(activityTypeToString(mActivityType));
Ruben Brunkdd18a0b2015-12-04 16:16:31 -0800333 pw.print(prefix); pw.print("vrMode="); pw.println(isVrActivity);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700334 if (displayStartTime != 0 || startTime != 0) {
335 pw.print(prefix); pw.print("displayStartTime=");
336 if (displayStartTime == 0) pw.print("0");
337 else TimeUtils.formatDuration(displayStartTime, now, pw);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700338 pw.print(" startTime=");
339 if (startTime == 0) pw.print("0");
340 else TimeUtils.formatDuration(startTime, now, pw);
341 pw.println();
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700342 }
Craig Mautner8c14c152015-01-15 17:32:07 -0800343 final boolean waitingVisible = mStackSupervisor.mWaitingVisibleActivities.contains(this);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800344 if (lastVisibleTime != 0 || waitingVisible || nowVisible) {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700345 pw.print(prefix); pw.print("waitingVisible="); pw.print(waitingVisible);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800346 pw.print(" nowVisible="); pw.print(nowVisible);
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700347 pw.print(" lastVisibleTime=");
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700348 if (lastVisibleTime == 0) pw.print("0");
349 else TimeUtils.formatDuration(lastVisibleTime, now, pw);
350 pw.println();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700351 }
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800352 if (deferRelaunchUntilPaused || configChangeFlags != 0) {
353 pw.print(prefix); pw.print("deferRelaunchUntilPaused="); pw.print(deferRelaunchUntilPaused);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700354 pw.print(" configChangeFlags=");
355 pw.println(Integer.toHexString(configChangeFlags));
356 }
357 if (connections != null) {
358 pw.print(prefix); pw.print("connections="); pw.println(connections);
359 }
Wale Ogunwaled26176f2016-01-25 20:04:04 -0800360 if (info != null) {
361 pw.println(prefix + "resizeMode=" + ActivityInfo.resizeModeToString(info.resizeMode));
362 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800363 }
364
Filip Gruszczynski23493322015-07-29 17:02:59 -0700365 public boolean crossesHorizontalSizeThreshold(int firstDp, int secondDp) {
366 return crossesSizeThreshold(mHorizontalSizeConfigurations, firstDp, secondDp);
367 }
368
369 public boolean crossesVerticalSizeThreshold(int firstDp, int secondDp) {
370 return crossesSizeThreshold(mVerticalSizeConfigurations, firstDp, secondDp);
371 }
372
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700373 public boolean crossesSmallestSizeThreshold(int firstDp, int secondDp) {
374 return crossesSizeThreshold(mSmallestSizeConfigurations, firstDp, secondDp);
375 }
376
Filip Gruszczynski23493322015-07-29 17:02:59 -0700377 /**
378 * The purpose of this method is to decide whether the activity needs to be relaunched upon
379 * changing its size. In most cases the activities don't need to be relaunched, if the resize
380 * is small, all the activity content has to do is relayout itself within new bounds. There are
381 * cases however, where the activity's content would be completely changed in the new size and
382 * the full relaunch is required.
383 *
384 * The activity will report to us vertical and horizontal thresholds after which a relaunch is
385 * required. These thresholds are collected from the application resource qualifiers. For
386 * example, if application has layout-w600dp resource directory, then it needs a relaunch when
387 * we resize from width of 650dp to 550dp, as it crosses the 600dp threshold. However, if
388 * it resizes width from 620dp to 700dp, it won't be relaunched as it stays on the same side
389 * of the threshold.
390 */
391 private static boolean crossesSizeThreshold(int[] thresholds, int firstDp,
392 int secondDp) {
393 if (thresholds == null) {
394 return false;
395 }
396 for (int i = thresholds.length - 1; i >= 0; i--) {
397 final int threshold = thresholds[i];
398 if ((firstDp < threshold && secondDp >= threshold)
399 || (firstDp >= threshold && secondDp < threshold)) {
400 return true;
401 }
402 }
403 return false;
404 }
405
406 public void setSizeConfigurations(int[] horizontalSizeConfiguration,
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700407 int[] verticalSizeConfigurations, int[] smallestSizeConfigurations) {
Filip Gruszczynski23493322015-07-29 17:02:59 -0700408 mHorizontalSizeConfigurations = horizontalSizeConfiguration;
409 mVerticalSizeConfigurations = verticalSizeConfigurations;
Filip Gruszczynski20aa0ae2015-10-30 10:08:27 -0700410 mSmallestSizeConfigurations = smallestSizeConfigurations;
Filip Gruszczynski23493322015-07-29 17:02:59 -0700411 }
412
Filip Gruszczynskica664812015-12-04 12:43:36 -0800413 void scheduleConfigurationChanged(Configuration config, boolean reportToActivity) {
Wale Ogunwale22e25262016-02-01 10:32:02 -0800414 if (app == null || app.thread == null) {
415 return;
416 }
417 try {
418 if (DEBUG_CONFIGURATION) Slog.v(TAG, "Sending new config to " + this + " " +
419 "reportToActivity=" + reportToActivity + " and config: " + config);
420 app.thread.scheduleActivityConfigurationChanged(
421 appToken, new Configuration(config), reportToActivity);
422 } catch (RemoteException e) {
423 // If process died, whatever.
424 }
425 }
426
427 void scheduleMultiWindowChanged() {
428 if (task == null || task.stack == null || app == null || app.thread == null) {
429 return;
430 }
431 try {
432 // An activity is considered to be in multi-window mode if its task isn't fullscreen.
433 app.thread.scheduleMultiWindowChanged(appToken, !task.mFullscreen);
434 } catch (Exception e) {
435 // If process died, I don't care.
436 }
437 }
438
439 void schedulePictureInPictureChanged() {
440 if (task == null || task.stack == null || app == null || app.thread == null) {
441 return;
442 }
443 try {
444 app.thread.schedulePictureInPictureChanged(
445 appToken, task.stack.mStackId == PINNED_STACK_ID);
446 } catch (Exception e) {
447 // If process died, no one cares.
Filip Gruszczynskica664812015-12-04 12:43:36 -0800448 }
449 }
450
Filip Gruszczynski3d026712015-12-16 13:46:38 -0800451 boolean isFreeform() {
452 return task != null && task.stack != null
453 && task.stack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
454 }
455
Dianne Hackbornbe707852011-11-11 14:32:10 -0800456 static class Token extends IApplicationToken.Stub {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700457 private final WeakReference<ActivityRecord> weakActivity;
458 private final ActivityManagerService mService;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800459
Wale Ogunwale7d701172015-03-11 15:36:30 -0700460 Token(ActivityRecord activity, ActivityManagerService service) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800461 weakActivity = new WeakReference<>(activity);
Wale Ogunwale7d701172015-03-11 15:36:30 -0700462 mService = service;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800463 }
464
Wale Ogunwale7d701172015-03-11 15:36:30 -0700465 @Override
466 public void windowsDrawn() {
467 synchronized (mService) {
468 ActivityRecord r = tokenToActivityRecordLocked(this);
469 if (r != null) {
470 r.windowsDrawnLocked();
471 }
Dianne Hackbornbe707852011-11-11 14:32:10 -0800472 }
473 }
474
Wale Ogunwale7d701172015-03-11 15:36:30 -0700475 @Override
476 public void windowsVisible() {
477 synchronized (mService) {
478 ActivityRecord r = tokenToActivityRecordLocked(this);
479 if (r != null) {
480 r.windowsVisibleLocked();
481 }
Dianne Hackbornbe707852011-11-11 14:32:10 -0800482 }
483 }
484
Wale Ogunwale7d701172015-03-11 15:36:30 -0700485 @Override
486 public void windowsGone() {
487 synchronized (mService) {
488 ActivityRecord r = tokenToActivityRecordLocked(this);
489 if (r != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -0700490 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "windowsGone(): " + r);
Wale Ogunwale7d701172015-03-11 15:36:30 -0700491 r.nowVisible = false;
492 return;
493 }
Dianne Hackbornbe707852011-11-11 14:32:10 -0800494 }
495 }
496
Wale Ogunwale7d701172015-03-11 15:36:30 -0700497 @Override
498 public boolean keyDispatchingTimedOut(String reason) {
499 ActivityRecord r;
500 ActivityRecord anrActivity;
501 ProcessRecord anrApp;
502 synchronized (mService) {
503 r = tokenToActivityRecordLocked(this);
504 if (r == null) {
505 return false;
506 }
507 anrActivity = r.getWaitingHistoryRecordLocked();
508 anrApp = r != null ? r.app : null;
509 }
510 return mService.inputDispatchingTimedOut(anrApp, anrActivity, r, false, reason);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800511 }
512
Wale Ogunwale7d701172015-03-11 15:36:30 -0700513 @Override
514 public long getKeyDispatchingTimeout() {
515 synchronized (mService) {
516 ActivityRecord r = tokenToActivityRecordLocked(this);
517 if (r == null) {
518 return 0;
519 }
520 r = r.getWaitingHistoryRecordLocked();
521 return ActivityManagerService.getInputDispatchingTimeoutLocked(r);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800522 }
Wale Ogunwale7d701172015-03-11 15:36:30 -0700523 }
524
525 private static final ActivityRecord tokenToActivityRecordLocked(Token token) {
526 if (token == null) {
527 return null;
528 }
529 ActivityRecord r = token.weakActivity.get();
530 if (r == null || r.task == null || r.task.stack == null) {
531 return null;
532 }
533 return r;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800534 }
535
Craig Mautnerde4ef022013-04-07 19:01:33 -0700536 @Override
Dianne Hackbornbe707852011-11-11 14:32:10 -0800537 public String toString() {
538 StringBuilder sb = new StringBuilder(128);
539 sb.append("Token{");
540 sb.append(Integer.toHexString(System.identityHashCode(this)));
541 sb.append(' ');
542 sb.append(weakActivity.get());
543 sb.append('}');
544 return sb.toString();
545 }
546 }
547
Wale Ogunwale7d701172015-03-11 15:36:30 -0700548 static ActivityRecord forTokenLocked(IBinder token) {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800549 try {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700550 return Token.tokenToActivityRecordLocked((Token)token);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800551 } catch (ClassCastException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800552 Slog.w(TAG, "Bad activity token: " + token, e);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800553 return null;
554 }
555 }
556
Chong Zhang85ee6542015-10-02 13:36:38 -0700557 boolean isResolverActivity() {
558 return ResolverActivity.class.getName().equals(realActivity.getClassName());
Craig Mautnerac6f8432013-07-17 13:24:59 -0700559 }
560
Craig Mautnerd2328952013-03-05 12:46:26 -0800561 ActivityRecord(ActivityManagerService _service, ProcessRecord _caller,
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800562 int _launchedFromUid, String _launchedFromPackage, Intent _intent, String _resolvedType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800563 ActivityInfo aInfo, Configuration _configuration,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700564 ActivityRecord _resultTo, String _resultWho, int _reqCode,
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700565 boolean _componentSpecified, boolean _rootVoiceInteraction,
566 ActivityStackSupervisor supervisor,
Chong Zhang280d3322015-11-03 17:27:26 -0800567 ActivityContainer container, ActivityOptions options) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800568 service = _service;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700569 appToken = new Token(this, service);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800570 info = aInfo;
571 launchedFromUid = _launchedFromUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800572 launchedFromPackage = _launchedFromPackage;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700573 userId = UserHandle.getUserId(aInfo.applicationInfo.uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800574 intent = _intent;
575 shortComponentName = _intent.getComponent().flattenToShortString();
576 resolvedType = _resolvedType;
The Android Open Source Project4df24232009-03-05 14:34:35 -0800577 componentSpecified = _componentSpecified;
Dianne Hackbornfb81d092015-08-03 17:14:46 -0700578 rootVoiceInteraction = _rootVoiceInteraction;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800579 configuration = _configuration;
Wale Ogunwalee4a0c572015-06-30 08:40:31 -0700580 taskConfigOverride = Configuration.EMPTY;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581 resultTo = _resultTo;
582 resultWho = _resultWho;
583 requestCode = _reqCode;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700584 state = ActivityState.INITIALIZING;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585 frontOfTask = false;
586 launchFailed = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 stopped = false;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700588 delayedResume = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800589 finishing = false;
Wale Ogunwalef81c1d12016-01-12 12:20:18 -0800590 deferRelaunchUntilPaused = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800591 keysPaused = false;
592 inHistory = false;
Chong Zhanga48ef662015-08-18 19:21:47 -0700593 visible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800594 nowVisible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800595 idle = false;
596 hasBeenLaunched = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700597 mStackSupervisor = supervisor;
Craig Mautnere0a38842013-12-16 16:14:02 -0800598 mInitialActivityContainer = container;
Craig Mautner233ceee2014-05-09 17:05:11 -0700599 if (options != null) {
Chong Zhang280d3322015-11-03 17:27:26 -0800600 pendingOptions = options;
Craig Mautnerbb742462014-07-07 15:28:55 -0700601 mLaunchTaskBehind = pendingOptions.getLaunchTaskBehind();
Dianne Hackbornb5a380d2015-05-20 18:18:46 -0700602 PendingIntent usageReport = pendingOptions.getUsageTimeReport();
603 if (usageReport != null) {
604 appTimeTracker = new AppTimeTracker(usageReport);
605 }
Craig Mautner233ceee2014-05-09 17:05:11 -0700606 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800607
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700608 // This starts out true, since the initial state of an activity
609 // is that we have everything, and we shouldn't never consider it
610 // lacking in state to be removed if it dies.
611 haveState = true;
612
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 if (aInfo != null) {
Chong Zhang6bdc7e12016-02-01 14:33:53 -0800614 // If the class name in the intent doesn't match that of the target, this is
615 // probably an alias. We have to create a new ComponentName object to keep track
616 // of the real activity name, so that FLAG_ACTIVITY_CLEAR_TOP is handled properly.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800617 if (aInfo.targetActivity == null
Chong Zhang6bdc7e12016-02-01 14:33:53 -0800618 || (aInfo.targetActivity.equals(_intent.getComponent().getClassName())
619 && (aInfo.launchMode == ActivityInfo.LAUNCH_MULTIPLE
620 || aInfo.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP))) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800621 realActivity = _intent.getComponent();
622 } else {
Chong Zhang6bdc7e12016-02-01 14:33:53 -0800623 realActivity = new ComponentName(aInfo.packageName, aInfo.targetActivity);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800624 }
625 taskAffinity = aInfo.taskAffinity;
626 stateNotNeeded = (aInfo.flags&
627 ActivityInfo.FLAG_STATE_NOT_NEEDED) != 0;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700628 appInfo = aInfo.applicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800629 nonLocalizedLabel = aInfo.nonLocalizedLabel;
630 labelRes = aInfo.labelRes;
631 if (nonLocalizedLabel == null && labelRes == 0) {
632 ApplicationInfo app = aInfo.applicationInfo;
633 nonLocalizedLabel = app.nonLocalizedLabel;
634 labelRes = app.labelRes;
635 }
636 icon = aInfo.getIconResource();
Adam Powell04fe6eb2013-05-31 14:39:48 -0700637 logo = aInfo.getLogoResource();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800638 theme = aInfo.getThemeResource();
Dianne Hackborn247fe742011-01-08 17:25:57 -0800639 realTheme = theme;
640 if (realTheme == 0) {
641 realTheme = aInfo.applicationInfo.targetSdkVersion
642 < Build.VERSION_CODES.HONEYCOMB
643 ? android.R.style.Theme
644 : android.R.style.Theme_Holo;
645 }
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800646 if ((aInfo.flags&ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
647 windowFlags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
648 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800649 if ((aInfo.flags&ActivityInfo.FLAG_MULTIPROCESS) != 0
650 && _caller != null
651 && (aInfo.applicationInfo.uid == Process.SYSTEM_UID
652 || aInfo.applicationInfo.uid == _caller.info.uid)) {
653 processName = _caller.processName;
654 } else {
655 processName = aInfo.processName;
656 }
657
658 if (intent != null && (aInfo.flags & ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS) != 0) {
659 intent.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
660 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700661
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800662 packageName = aInfo.applicationInfo.packageName;
663 launchMode = aInfo.launchMode;
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700664
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800665 AttributeCache.Entry ent = AttributeCache.instance().get(packageName,
Amith Yamasani4befbec2013-07-10 16:18:01 -0700666 realTheme, com.android.internal.R.styleable.Window, userId);
Dianne Hackbornb795d7c2015-07-28 17:40:06 -0700667 final boolean translucent = ent != null && (ent.array.getBoolean(
Filip Gruszczynski23958c62015-02-23 18:05:27 -0800668 com.android.internal.R.styleable.Window_windowIsTranslucent, false)
669 || (!ent.array.hasValue(
670 com.android.internal.R.styleable.Window_windowIsTranslucent)
671 && ent.array.getBoolean(
672 com.android.internal.R.styleable.Window_windowSwipeToDismiss,
Dianne Hackbornb795d7c2015-07-28 17:40:06 -0700673 false)));
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800674 fullscreen = ent != null && !ent.array.getBoolean(
675 com.android.internal.R.styleable.Window_windowIsFloating, false)
Filip Gruszczynski23958c62015-02-23 18:05:27 -0800676 && !translucent;
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800677 noDisplay = ent != null && ent.array.getBoolean(
678 com.android.internal.R.styleable.Window_windowNoDisplay, false);
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700679
Craig Mautner80259352013-09-28 12:35:25 -0700680 if ((!_componentSpecified || _launchedFromUid == Process.myUid()
Craig Mautner86d67a42013-05-14 10:34:38 -0700681 || _launchedFromUid == 0) &&
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700682 Intent.ACTION_MAIN.equals(_intent.getAction()) &&
683 _intent.hasCategory(Intent.CATEGORY_HOME) &&
684 _intent.getCategories().size() == 1 &&
685 _intent.getData() == null &&
686 _intent.getType() == null &&
Chong Zhang85ee6542015-10-02 13:36:38 -0700687 !isResolverActivity()) {
Craig Mautner86d67a42013-05-14 10:34:38 -0700688 // This sure looks like a home activity!
689 mActivityType = HOME_ACTIVITY_TYPE;
Craig Mautner80259352013-09-28 12:35:25 -0700690 } else if (realActivity.getClassName().contains(RECENTS_PACKAGE_NAME)) {
Craig Mautner86d67a42013-05-14 10:34:38 -0700691 mActivityType = RECENTS_ACTIVITY_TYPE;
692 } else {
693 mActivityType = APPLICATION_ACTIVITY_TYPE;
694 }
Daniel Sandler69a48172010-06-23 16:29:36 -0400695
696 immersive = (aInfo.flags & ActivityInfo.FLAG_IMMERSIVE) != 0;
Ruben Brunkdd18a0b2015-12-04 16:16:31 -0800697 isVrActivity = (aInfo.flags & ActivityInfo.FLAG_ENABLE_VR_MODE) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800698 } else {
699 realActivity = null;
700 taskAffinity = null;
701 stateNotNeeded = false;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700702 appInfo = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800703 processName = null;
704 packageName = null;
705 fullscreen = true;
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800706 noDisplay = false;
Craig Mautner86d67a42013-05-14 10:34:38 -0700707 mActivityType = APPLICATION_ACTIVITY_TYPE;
Daniel Sandler69a48172010-06-23 16:29:36 -0400708 immersive = false;
Ruben Brunkdd18a0b2015-12-04 16:16:31 -0800709 isVrActivity = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800710 }
711 }
712
Craig Mautnera228ae92014-07-09 05:44:55 -0700713 void setTask(TaskRecord newTask, TaskRecord taskToAffiliateWith) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700714 if (task != null && task.removeActivity(this) && task != newTask && task.stack != null) {
715 task.stack.removeTask(task, "setTask");
Craig Mautnerde4ef022013-04-07 19:01:33 -0700716 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700717 task = newTask;
Craig Mautnera228ae92014-07-09 05:44:55 -0700718 setTaskToAffiliateWith(taskToAffiliateWith);
719 }
720
721 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
722 if (taskToAffiliateWith != null &&
723 launchMode != ActivityInfo.LAUNCH_SINGLE_INSTANCE &&
724 launchMode != ActivityInfo.LAUNCH_SINGLE_TASK) {
725 task.setTaskToAffiliateWith(taskToAffiliateWith);
726 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700727 }
728
Craig Mautner5eda9b32013-07-02 11:58:16 -0700729 boolean changeWindowTranslucency(boolean toOpaque) {
730 if (fullscreen == toOpaque) {
731 return false;
732 }
Craig Mautner4addfc52013-06-25 08:05:45 -0700733
Craig Mautner5eda9b32013-07-02 11:58:16 -0700734 // Keep track of the number of fullscreen activities in this task.
735 task.numFullscreen += toOpaque ? +1 : -1;
736
737 fullscreen = toOpaque;
738 return true;
Craig Mautner4addfc52013-06-25 08:05:45 -0700739 }
740
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700741 void putInHistory() {
742 if (!inHistory) {
743 inHistory = true;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700744 }
745 }
746
747 void takeFromHistory() {
748 if (inHistory) {
749 inHistory = false;
750 if (task != null && !finishing) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800751 task = null;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700752 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700753 clearOptionsLocked();
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700754 }
755 }
756
757 boolean isInHistory() {
758 return inHistory;
759 }
760
Wale Ogunwale7d701172015-03-11 15:36:30 -0700761 boolean isInStackLocked() {
762 return task != null && task.stack != null && task.stack.isInStackLocked(this) != null;
763 }
764
Craig Mautner86d67a42013-05-14 10:34:38 -0700765 boolean isHomeActivity() {
766 return mActivityType == HOME_ACTIVITY_TYPE;
767 }
768
769 boolean isRecentsActivity() {
770 return mActivityType == RECENTS_ACTIVITY_TYPE;
771 }
772
773 boolean isApplicationActivity() {
774 return mActivityType == APPLICATION_ACTIVITY_TYPE;
775 }
776
Craig Mautner21d24a22014-04-23 11:45:37 -0700777 boolean isPersistable() {
Craig Mautner43e52ed2014-06-16 17:18:52 -0700778 return (info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY ||
779 info.persistableMode == ActivityInfo.PERSIST_ACROSS_REBOOTS) &&
780 (intent == null ||
781 (intent.getFlags() & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) == 0);
Craig Mautner21d24a22014-04-23 11:45:37 -0700782 }
783
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800784 boolean isFocusable() {
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800785 return StackId.canReceiveKeys(task.stack.mStackId) || isAlwaysFocusable();
786 }
787
788 boolean isResizeable() {
Wale Ogunwaleb1faf602016-01-27 09:12:31 -0800789 return !isHomeActivity() && ActivityInfo.isResizeableMode(info.resizeMode);
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800790 }
791
Wale Ogunwale513346d2016-01-27 10:55:01 -0800792 boolean isResizeableOrForced() {
793 return !isHomeActivity() && (isResizeable() || service.mForceResizableActivities);
794 }
795
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800796 boolean supportsPictureInPicture() {
Wale Ogunwaled26176f2016-01-25 20:04:04 -0800797 return !isHomeActivity() && info.resizeMode == RESIZE_MODE_RESIZEABLE_AND_PIPABLE;
798 }
799
Wale Ogunwale513346d2016-01-27 10:55:01 -0800800 boolean canGoInDockedStack() {
801 return !isHomeActivity()
802 && (isResizeableOrForced() || info.resizeMode == RESIZE_MODE_CROP_WINDOWS);
803 }
804
Wale Ogunwale6cae7652015-12-26 07:36:26 -0800805 boolean isAlwaysFocusable() {
806 return (info.flags & FLAG_ALWAYS_FOCUSABLE) != 0;
Wale Ogunwale4cea0f52015-12-25 06:30:31 -0800807 }
808
Wale Ogunwale7d701172015-03-11 15:36:30 -0700809 void makeFinishingLocked() {
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800810 if (!finishing) {
Wale Ogunwale7d701172015-03-11 15:36:30 -0700811 if (task != null && task.stack != null
812 && this == task.stack.getVisibleBehindActivity()) {
Jose Lima34ff4922014-08-18 15:19:41 -0700813 // A finishing activity should not remain as visible in the background
814 mStackSupervisor.requestVisibleBehindLocked(this, false);
815 }
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800816 finishing = true;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700817 if (stopped) {
818 clearOptionsLocked();
819 }
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800820 }
821 }
822
Dianne Hackborn7e269642010-08-25 19:50:20 -0700823 UriPermissionOwner getUriPermissionsLocked() {
824 if (uriPermissions == null) {
825 uriPermissions = new UriPermissionOwner(service, this);
826 }
827 return uriPermissions;
828 }
829
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700830 void addResultLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800831 int requestCode, int resultCode,
832 Intent resultData) {
833 ActivityResult r = new ActivityResult(from, resultWho,
John Spurlock8a985d22014-02-25 09:40:05 -0500834 requestCode, resultCode, resultData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800835 if (results == null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800836 results = new ArrayList<ResultInfo>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800837 }
838 results.add(r);
839 }
840
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700841 void removeResultsLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800842 int requestCode) {
843 if (results != null) {
844 for (int i=results.size()-1; i>=0; i--) {
845 ActivityResult r = (ActivityResult)results.get(i);
846 if (r.mFrom != from) continue;
847 if (r.mResultWho == null) {
848 if (resultWho != null) continue;
849 } else {
850 if (!r.mResultWho.equals(resultWho)) continue;
851 }
852 if (r.mRequestCode != requestCode) continue;
853
854 results.remove(i);
855 }
856 }
857 }
858
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800859 void addNewIntentLocked(ReferrerIntent intent) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800860 if (newIntents == null) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800861 newIntents = new ArrayList<>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800862 }
863 newIntents.add(intent);
864 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700865
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700866 /**
867 * Deliver a new Intent to an existing activity, so that its onNewIntent()
868 * method will be called at the proper time.
869 */
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800870 final void deliverNewIntentLocked(int callingUid, Intent intent, String referrer) {
Dianne Hackborn514074f2013-02-11 10:52:46 -0800871 // The activity now gets access to the data associated with this Intent.
872 service.grantUriPermissionFromIntentLocked(callingUid, packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +0100873 intent, getUriPermissionsLocked(), userId);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700874 // We want to immediately deliver the intent to the activity if
875 // it is currently the top resumed activity... however, if the
876 // device is sleeping, then all activities are stopped, so in that
877 // case we will deliver it if this is the current top activity on its
878 // stack.
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800879 final ReferrerIntent rintent = new ReferrerIntent(intent, referrer);
Craig Mautner86d67a42013-05-14 10:34:38 -0700880 boolean unsent = true;
Wale Ogunwale7d701172015-03-11 15:36:30 -0700881 if ((state == ActivityState.RESUMED
882 || (service.isSleeping() && task.stack != null
Filip Gruszczynski3e85ba22015-10-05 22:48:30 -0700883 && task.stack.topRunningActivityLocked() == this))
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700884 && app != null && app.thread != null) {
885 try {
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800886 ArrayList<ReferrerIntent> ar = new ArrayList<>(1);
887 ar.add(rintent);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800888 app.thread.scheduleNewIntent(ar, appToken);
Craig Mautner86d67a42013-05-14 10:34:38 -0700889 unsent = false;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700890 } catch (RemoteException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800891 Slog.w(TAG, "Exception thrown sending new intent to " + this, e);
Dianne Hackborn39792d22010-08-19 18:01:52 -0700892 } catch (NullPointerException e) {
Wale Ogunwalee23149f2015-03-06 15:39:44 -0800893 Slog.w(TAG, "Exception thrown sending new intent to " + this, e);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700894 }
895 }
Craig Mautner86d67a42013-05-14 10:34:38 -0700896 if (unsent) {
Dianne Hackborn85d558c2014-11-04 10:31:54 -0800897 addNewIntentLocked(rintent);
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700898 }
899 }
900
Dianne Hackborn9622ca42012-10-23 18:56:33 -0700901 void updateOptionsLocked(ActivityOptions options) {
902 if (options != null) {
903 if (pendingOptions != null) {
904 pendingOptions.abort();
905 }
906 pendingOptions = options;
907 }
908 }
909
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700910 void applyOptionsLocked() {
George Mount2c92c972014-03-20 09:38:23 -0700911 if (pendingOptions != null
912 && pendingOptions.getAnimationType() != ActivityOptions.ANIM_SCENE_TRANSITION) {
Michael Jurka21385cd2012-05-03 10:57:31 -0700913 final int animationType = pendingOptions.getAnimationType();
914 switch (animationType) {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700915 case ActivityOptions.ANIM_CUSTOM:
916 service.mWindowManager.overridePendingAppTransition(
917 pendingOptions.getPackageName(),
918 pendingOptions.getCustomEnterResId(),
Dianne Hackborn84375872012-06-01 19:03:50 -0700919 pendingOptions.getCustomExitResId(),
920 pendingOptions.getOnAnimationStartListener());
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700921 break;
Chet Haase10e23ab2015-02-11 15:08:38 -0800922 case ActivityOptions.ANIM_CLIP_REVEAL:
923 service.mWindowManager.overridePendingAppTransitionClipReveal(
924 pendingOptions.getStartX(), pendingOptions.getStartY(),
925 pendingOptions.getWidth(), pendingOptions.getHeight());
926 if (intent.getSourceBounds() == null) {
927 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
928 pendingOptions.getStartY(),
929 pendingOptions.getStartX()+pendingOptions.getWidth(),
930 pendingOptions.getStartY()+pendingOptions.getHeight()));
931 }
932 break;
Dianne Hackborneabfb3a2012-04-16 16:28:22 -0700933 case ActivityOptions.ANIM_SCALE_UP:
934 service.mWindowManager.overridePendingAppTransitionScaleUp(
935 pendingOptions.getStartX(), pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200936 pendingOptions.getWidth(), pendingOptions.getHeight());
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700937 if (intent.getSourceBounds() == null) {
938 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
939 pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200940 pendingOptions.getStartX()+pendingOptions.getWidth(),
941 pendingOptions.getStartY()+pendingOptions.getHeight()));
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700942 }
Dianne Hackborneabfb3a2012-04-16 16:28:22 -0700943 break;
Michael Jurka832cb222012-04-13 09:32:47 -0700944 case ActivityOptions.ANIM_THUMBNAIL_SCALE_UP:
945 case ActivityOptions.ANIM_THUMBNAIL_SCALE_DOWN:
946 boolean scaleUp = (animationType == ActivityOptions.ANIM_THUMBNAIL_SCALE_UP);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700947 service.mWindowManager.overridePendingAppTransitionThumb(
948 pendingOptions.getThumbnail(),
949 pendingOptions.getStartX(), pendingOptions.getStartY(),
Michael Jurka21385cd2012-05-03 10:57:31 -0700950 pendingOptions.getOnAnimationStartListener(),
Michael Jurka832cb222012-04-13 09:32:47 -0700951 scaleUp);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700952 if (intent.getSourceBounds() == null) {
953 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
954 pendingOptions.getStartY(),
955 pendingOptions.getStartX()
956 + pendingOptions.getThumbnail().getWidth(),
957 pendingOptions.getStartY()
958 + pendingOptions.getThumbnail().getHeight()));
959 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700960 break;
Winson Chunga4ccb862014-08-22 15:26:27 -0700961 case ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_UP:
962 case ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_DOWN:
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700963 final AppTransitionAnimationSpec[] specs = pendingOptions.getAnimSpecs();
964 if (animationType == ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_DOWN
965 && specs != null) {
966 service.mWindowManager.overridePendingAppTransitionMultiThumb(
Filip Gruszczynski1a5203d2015-10-29 17:43:49 -0700967 specs, pendingOptions.getOnAnimationStartListener(),
968 pendingOptions.getAnimationFinishedListener(), false);
Filip Gruszczynskid64ef3e2015-10-27 17:58:02 -0700969 } else {
970 service.mWindowManager.overridePendingAppTransitionAspectScaledThumb(
971 pendingOptions.getThumbnail(),
972 pendingOptions.getStartX(), pendingOptions.getStartY(),
973 pendingOptions.getWidth(), pendingOptions.getHeight(),
974 pendingOptions.getOnAnimationStartListener(),
975 (animationType == ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_UP));
976 if (intent.getSourceBounds() == null) {
977 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
978 pendingOptions.getStartY(),
979 pendingOptions.getStartX() + pendingOptions.getWidth(),
980 pendingOptions.getStartY() + pendingOptions.getHeight()));
981 }
Winson Chunga4ccb862014-08-22 15:26:27 -0700982 }
983 break;
Craig Mautner233ceee2014-05-09 17:05:11 -0700984 default:
985 Slog.e(TAG, "applyOptionsLocked: Unknown animationType=" + animationType);
986 break;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700987 }
988 pendingOptions = null;
989 }
990 }
991
Adam Powellcfbe9be2013-11-06 14:58:58 -0800992 ActivityOptions getOptionsForTargetActivityLocked() {
993 return pendingOptions != null ? pendingOptions.forTargetActivity() : null;
994 }
995
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700996 void clearOptionsLocked() {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700997 if (pendingOptions != null) {
998 pendingOptions.abort();
999 pendingOptions = null;
1000 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -07001001 }
1002
Dianne Hackborn9622ca42012-10-23 18:56:33 -07001003 ActivityOptions takeOptionsLocked() {
1004 ActivityOptions opts = pendingOptions;
1005 pendingOptions = null;
1006 return opts;
1007 }
1008
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001009 void removeUriPermissionsLocked() {
Dianne Hackborn7e269642010-08-25 19:50:20 -07001010 if (uriPermissions != null) {
1011 uriPermissions.removeUriPermissionsLocked();
1012 uriPermissions = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -07001013 }
1014 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001015
1016 void pauseKeyDispatchingLocked() {
1017 if (!keysPaused) {
1018 keysPaused = true;
Dianne Hackbornbe707852011-11-11 14:32:10 -08001019 service.mWindowManager.pauseKeyDispatching(appToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001020 }
1021 }
1022
1023 void resumeKeyDispatchingLocked() {
1024 if (keysPaused) {
1025 keysPaused = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08001026 service.mWindowManager.resumeKeyDispatching(appToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001027 }
1028 }
1029
Winson Chung740c3ac2014-11-12 16:14:38 -08001030 void updateThumbnailLocked(Bitmap newThumbnail, CharSequence description) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001031 if (newThumbnail != null) {
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001032 if (DEBUG_THUMBNAILS) Slog.i(TAG_THUMBNAILS,
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001033 "Setting thumbnail of " + this + " to " + newThumbnail);
Winsonc809cbb2015-11-02 12:06:15 -08001034 boolean thumbnailUpdated = task.setLastThumbnailLocked(newThumbnail);
Winson Chung096f36b2014-08-20 15:39:01 -07001035 if (thumbnailUpdated && isPersistable()) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001036 mStackSupervisor.mService.notifyTaskPersisterLocked(task, false);
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001037 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001038 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001039 task.lastDescription = description;
Dianne Hackbornf26fd992011-04-08 18:14:09 -07001040 }
1041
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001042 void startLaunchTickingLocked() {
1043 if (ActivityManagerService.IS_USER_BUILD) {
1044 return;
1045 }
1046 if (launchTickTime == 0) {
1047 launchTickTime = SystemClock.uptimeMillis();
1048 continueLaunchTickingLocked();
1049 }
1050 }
1051
1052 boolean continueLaunchTickingLocked() {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001053 if (launchTickTime == 0) {
1054 return false;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001055 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001056
1057 final ActivityStack stack = task.stack;
1058 if (stack == null) {
1059 return false;
1060 }
1061
1062 Message msg = stack.mHandler.obtainMessage(ActivityStack.LAUNCH_TICK_MSG, this);
1063 stack.mHandler.removeMessages(ActivityStack.LAUNCH_TICK_MSG);
1064 stack.mHandler.sendMessageDelayed(msg, ActivityStack.LAUNCH_TICK);
1065 return true;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001066 }
1067
1068 void finishLaunchTickingLocked() {
1069 launchTickTime = 0;
Wale Ogunwale7d701172015-03-11 15:36:30 -07001070 final ActivityStack stack = task.stack;
1071 if (stack != null) {
1072 stack.mHandler.removeMessages(ActivityStack.LAUNCH_TICK_MSG);
1073 }
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -07001074 }
1075
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001076 // IApplicationToken
1077
1078 public boolean mayFreezeScreenLocked(ProcessRecord app) {
1079 // Only freeze the screen if this activity is currently attached to
1080 // an application, and that application is not blocked or unresponding.
1081 // In any other case, we can't count on getting the screen unfrozen,
1082 // so it is best to leave as-is.
Dianne Hackborn5f4d6432010-12-21 20:40:11 -08001083 return app != null && !app.crashing && !app.notResponding;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001084 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001085
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001086 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) {
1087 if (mayFreezeScreenLocked(app)) {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001088 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001089 }
1090 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001091
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001092 public void stopFreezingScreenLocked(boolean force) {
1093 if (force || frozenBeforeDestroy) {
1094 frozenBeforeDestroy = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -08001095 service.mWindowManager.stopAppFreezingScreen(appToken, force);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001096 }
1097 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001098
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001099 public void reportFullyDrawnLocked() {
1100 final long curTime = SystemClock.uptimeMillis();
1101 if (displayStartTime != 0) {
1102 reportLaunchTimeLocked(curTime);
1103 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001104 final ActivityStack stack = task.stack;
1105 if (fullyDrawnStartTime != 0 && stack != null) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001106 final long thisTime = curTime - fullyDrawnStartTime;
1107 final long totalTime = stack.mFullyDrawnStartTime != 0
1108 ? (curTime - stack.mFullyDrawnStartTime) : thisTime;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07001109 if (SHOW_ACTIVITY_START_TIME) {
Dianne Hackborncee04b52013-07-03 17:01:28 -07001110 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001111 EventLog.writeEvent(EventLogTags.AM_ACTIVITY_FULLY_DRAWN_TIME,
1112 userId, System.identityHashCode(this), shortComponentName,
1113 thisTime, totalTime);
1114 StringBuilder sb = service.mStringBuilder;
1115 sb.setLength(0);
1116 sb.append("Fully drawn ");
1117 sb.append(shortComponentName);
1118 sb.append(": ");
1119 TimeUtils.formatDuration(thisTime, sb);
1120 if (thisTime != totalTime) {
1121 sb.append(" (total ");
1122 TimeUtils.formatDuration(totalTime, sb);
1123 sb.append(")");
1124 }
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001125 Log.i(TAG, sb.toString());
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001126 }
1127 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -07001128 //service.mUsageStatsService.noteFullyDrawnTime(realActivity, (int) totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001129 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001130 stack.mFullyDrawnStartTime = 0;
1131 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001132 fullyDrawnStartTime = 0;
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001133 }
1134
1135 private void reportLaunchTimeLocked(final long curTime) {
1136 final ActivityStack stack = task.stack;
Wale Ogunwale7d701172015-03-11 15:36:30 -07001137 if (stack == null) {
1138 return;
1139 }
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001140 final long thisTime = curTime - displayStartTime;
1141 final long totalTime = stack.mLaunchStartTime != 0
1142 ? (curTime - stack.mLaunchStartTime) : thisTime;
Wale Ogunwale3ab9a272015-03-16 09:55:45 -07001143 if (SHOW_ACTIVITY_START_TIME) {
Narayan Kamath7829c812015-06-08 17:39:43 +01001144 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001145 EventLog.writeEvent(EventLogTags.AM_ACTIVITY_LAUNCH_TIME,
1146 userId, System.identityHashCode(this), shortComponentName,
1147 thisTime, totalTime);
1148 StringBuilder sb = service.mStringBuilder;
1149 sb.setLength(0);
1150 sb.append("Displayed ");
1151 sb.append(shortComponentName);
1152 sb.append(": ");
1153 TimeUtils.formatDuration(thisTime, sb);
1154 if (thisTime != totalTime) {
1155 sb.append(" (total ");
1156 TimeUtils.formatDuration(totalTime, sb);
1157 sb.append(")");
1158 }
Wale Ogunwalee23149f2015-03-06 15:39:44 -08001159 Log.i(TAG, sb.toString());
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001160 }
1161 mStackSupervisor.reportActivityLaunchedLocked(false, this, thisTime, totalTime);
1162 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -07001163 //service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -07001164 }
1165 displayStartTime = 0;
1166 stack.mLaunchStartTime = 0;
1167 }
1168
Wale Ogunwale7d701172015-03-11 15:36:30 -07001169 void windowsDrawnLocked() {
1170 if (displayStartTime != 0) {
1171 reportLaunchTimeLocked(SystemClock.uptimeMillis());
1172 }
1173 mStackSupervisor.sendWaitingVisibleReportLocked(this);
1174 startTime = 0;
1175 finishLaunchTickingLocked();
1176 if (task != null) {
1177 task.hasBeenVisible = true;
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -07001178 }
1179 }
1180
Wale Ogunwale7d701172015-03-11 15:36:30 -07001181 void windowsVisibleLocked() {
1182 mStackSupervisor.reportActivityVisibleLocked(this);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001183 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "windowsVisibleLocked(): " + this);
Wale Ogunwale7d701172015-03-11 15:36:30 -07001184 if (!nowVisible) {
1185 nowVisible = true;
1186 lastVisibleTime = SystemClock.uptimeMillis();
1187 if (!idle) {
1188 // Instead of doing the full stop routine here, let's just hide any activities
1189 // we now can, and let them stop when the normal idle happens.
1190 mStackSupervisor.processStoppingActivitiesLocked(false);
1191 } else {
1192 // If this activity was already idle, then we now need to make sure we perform
1193 // the full stop of any activities that are waiting to do so. This is because
1194 // we won't do that while they are still waiting for this one to become visible.
1195 final int size = mStackSupervisor.mWaitingVisibleActivities.size();
1196 if (size > 0) {
1197 for (int i = 0; i < size; i++) {
1198 ActivityRecord r = mStackSupervisor.mWaitingVisibleActivities.get(i);
Wale Ogunwaleee006da2015-03-30 14:49:25 -07001199 if (DEBUG_SWITCH) Log.v(TAG_SWITCH, "Was waiting for visible: " + r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001200 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001201 mStackSupervisor.mWaitingVisibleActivities.clear();
1202 mStackSupervisor.scheduleIdleLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001203 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001204 }
Wale Ogunwale7d701172015-03-11 15:36:30 -07001205 service.scheduleAppGcsLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001206 }
1207 }
1208
Wale Ogunwale7d701172015-03-11 15:36:30 -07001209 ActivityRecord getWaitingHistoryRecordLocked() {
riddle_hsudb46d6b2015-04-01 18:58:07 +08001210 // First find the real culprit... if this activity is waiting for
1211 // another activity to start or has stopped, then the key dispatching
1212 // timeout should not be caused by this.
Wale Ogunwale16a62792015-04-01 11:50:31 -07001213 if (mStackSupervisor.mWaitingVisibleActivities.contains(this) || stopped) {
Craig Mautner8f2adcb2014-04-07 22:21:33 +00001214 final ActivityStack stack = mStackSupervisor.getFocusedStack();
riddle_hsudb46d6b2015-04-01 18:58:07 +08001215 // Try to use the one which is closest to top.
1216 ActivityRecord r = stack.mResumedActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001217 if (r == null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -08001218 r = stack.mPausingActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001219 }
riddle_hsudb46d6b2015-04-01 18:58:07 +08001220 if (r != null) {
1221 return r;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001222 }
1223 }
riddle_hsudb46d6b2015-04-01 18:58:07 +08001224 return this;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001225 }
1226
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001227 /**
1228 * This method will return true if the activity is either visible, is becoming visible, is
1229 * currently pausing, or is resumed.
1230 */
1231 public boolean isInterestingToUserLocked() {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001232 return visible || nowVisible || state == ActivityState.PAUSING ||
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001233 state == ActivityState.RESUMED;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001234 }
1235
1236 public void setSleeping(boolean _sleeping) {
1237 if (sleeping == _sleeping) {
1238 return;
1239 }
1240 if (app != null && app.thread != null) {
1241 try {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001242 app.thread.scheduleSleeping(appToken, _sleeping);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001243 if (_sleeping && !mStackSupervisor.mGoingToSleepActivities.contains(this)) {
1244 mStackSupervisor.mGoingToSleepActivities.add(this);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001245 }
1246 sleeping = _sleeping;
1247 } catch (RemoteException e) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001248 Slog.w(TAG, "Exception thrown when sleeping: " + intent.getComponent(), e);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001249 }
1250 }
1251 }
Craig Mautnerf81b90872013-02-26 13:02:43 -08001252
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001253 static void activityResumedLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001254 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale0fc365c2015-05-25 19:35:42 -07001255 if (DEBUG_SAVED_STATE) Slog.i(TAG_STATES, "Resumed activity; dropping state of: " + r);
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001256 r.icicle = null;
1257 r.haveState = false;
1258 }
1259
Craig Mautnerd2328952013-03-05 12:46:26 -08001260 static int getTaskForActivityLocked(IBinder token, boolean onlyRoot) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001261 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Craig Mautnerd2328952013-03-05 12:46:26 -08001262 if (r == null) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001263 return INVALID_TASK_ID;
Craig Mautnerd2328952013-03-05 12:46:26 -08001264 }
1265 final TaskRecord task = r.task;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001266 final int activityNdx = task.mActivities.indexOf(r);
1267 if (activityNdx < 0 || (onlyRoot && activityNdx > task.findEffectiveRootIndex())) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001268 return INVALID_TASK_ID;
Craig Mautnerd2328952013-03-05 12:46:26 -08001269 }
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001270 return task.taskId;
Craig Mautnerd2328952013-03-05 12:46:26 -08001271 }
1272
1273 static ActivityRecord isInStackLocked(IBinder token) {
Wale Ogunwale7d701172015-03-11 15:36:30 -07001274 final ActivityRecord r = ActivityRecord.forTokenLocked(token);
Wale Ogunwale60454db2015-01-23 16:05:07 -08001275 return (r != null) ? r.task.stack.isInStackLocked(r) : null;
Craig Mautnerd2328952013-03-05 12:46:26 -08001276 }
1277
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001278 static ActivityStack getStackLocked(IBinder token) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001279 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1280 if (r != null) {
1281 return r.task.stack;
1282 }
1283 return null;
1284 }
1285
Dianne Hackborn89ad4562014-08-24 16:45:38 -07001286 final boolean isDestroyable() {
1287 if (finishing || app == null || state == ActivityState.DESTROYING
1288 || state == ActivityState.DESTROYED) {
1289 // This would be redundant.
1290 return false;
1291 }
1292 if (task == null || task.stack == null || this == task.stack.mResumedActivity
1293 || this == task.stack.mPausingActivity || !haveState || !stopped) {
1294 // We're not ready for this kind of thing.
1295 return false;
1296 }
1297 if (visible) {
1298 // The user would notice this!
1299 return false;
1300 }
1301 return true;
1302 }
1303
Winson Chung3bad5cc02014-08-19 17:44:32 -07001304 private static String createImageFilename(long createTime, int taskId) {
1305 return String.valueOf(taskId) + ACTIVITY_ICON_SUFFIX + createTime +
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001306 TaskPersister.IMAGE_EXTENSION;
1307 }
1308
Craig Mautner648f69b2014-09-18 14:16:26 -07001309 void setTaskDescription(TaskDescription _taskDescription) {
1310 Bitmap icon;
1311 if (_taskDescription.getIconFilename() == null &&
1312 (icon = _taskDescription.getIcon()) != null) {
1313 final String iconFilename = createImageFilename(createTime, task.taskId);
Suprabh Shukla23593142015-11-03 17:31:15 -08001314 final File iconFile = new File(TaskPersister.getUserImagesDir(userId), iconFilename);
1315 final String iconFilePath = iconFile.getAbsolutePath();
Suprabh Shukla09a88f52015-12-02 14:36:31 -08001316 service.mRecentTasks.saveImage(icon, iconFilePath);
Suprabh Shukla23593142015-11-03 17:31:15 -08001317 _taskDescription.setIconFilename(iconFilePath);
Craig Mautner648f69b2014-09-18 14:16:26 -07001318 }
1319 taskDescription = _taskDescription;
1320 }
1321
Amith Yamasani0af6fa72016-01-17 15:36:19 -08001322 void setVoiceSessionLocked(IVoiceInteractionSession session) {
1323 voiceSession = session;
1324 pendingVoiceInteractionStart = false;
1325 }
1326
1327 void clearVoiceSessionLocked() {
1328 voiceSession = null;
1329 pendingVoiceInteractionStart = false;
1330 }
1331
Craig Mautner21d24a22014-04-23 11:45:37 -07001332 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
1333 out.attribute(null, ATTR_ID, String.valueOf(createTime));
1334 out.attribute(null, ATTR_LAUNCHEDFROMUID, String.valueOf(launchedFromUid));
1335 if (launchedFromPackage != null) {
1336 out.attribute(null, ATTR_LAUNCHEDFROMPACKAGE, launchedFromPackage);
1337 }
1338 if (resolvedType != null) {
1339 out.attribute(null, ATTR_RESOLVEDTYPE, resolvedType);
1340 }
1341 out.attribute(null, ATTR_COMPONENTSPECIFIED, String.valueOf(componentSpecified));
1342 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Winson Chung2cb86c72014-06-25 12:03:30 -07001343
Craig Mautner21d24a22014-04-23 11:45:37 -07001344 if (taskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001345 taskDescription.saveToXml(out);
Craig Mautner21d24a22014-04-23 11:45:37 -07001346 }
1347
1348 out.startTag(null, TAG_INTENT);
1349 intent.saveToXml(out);
1350 out.endTag(null, TAG_INTENT);
1351
1352 if (isPersistable() && persistentState != null) {
1353 out.startTag(null, TAG_PERSISTABLEBUNDLE);
1354 persistentState.saveToXml(out);
1355 out.endTag(null, TAG_PERSISTABLEBUNDLE);
1356 }
1357 }
1358
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001359 static ActivityRecord restoreFromXml(XmlPullParser in,
1360 ActivityStackSupervisor stackSupervisor) throws IOException, XmlPullParserException {
Craig Mautner21d24a22014-04-23 11:45:37 -07001361 Intent intent = null;
1362 PersistableBundle persistentState = null;
1363 int launchedFromUid = 0;
1364 String launchedFromPackage = null;
1365 String resolvedType = null;
1366 boolean componentSpecified = false;
1367 int userId = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07001368 long createTime = -1;
1369 final int outerDepth = in.getDepth();
Winson Chung2cb86c72014-06-25 12:03:30 -07001370 TaskDescription taskDescription = new TaskDescription();
Craig Mautner21d24a22014-04-23 11:45:37 -07001371
1372 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1373 final String attrName = in.getAttributeName(attrNdx);
1374 final String attrValue = in.getAttributeValue(attrNdx);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001375 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
Wale Ogunwale18795a22014-12-03 11:38:33 -08001376 "ActivityRecord: attribute name=" + attrName + " value=" + attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001377 if (ATTR_ID.equals(attrName)) {
1378 createTime = Long.valueOf(attrValue);
1379 } else if (ATTR_LAUNCHEDFROMUID.equals(attrName)) {
1380 launchedFromUid = Integer.valueOf(attrValue);
1381 } else if (ATTR_LAUNCHEDFROMPACKAGE.equals(attrName)) {
1382 launchedFromPackage = attrValue;
1383 } else if (ATTR_RESOLVEDTYPE.equals(attrName)) {
1384 resolvedType = attrValue;
1385 } else if (ATTR_COMPONENTSPECIFIED.equals(attrName)) {
1386 componentSpecified = Boolean.valueOf(attrValue);
1387 } else if (ATTR_USERID.equals(attrName)) {
1388 userId = Integer.valueOf(attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001389 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1390 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001391 } else {
1392 Log.d(TAG, "Unknown ActivityRecord attribute=" + attrName);
1393 }
1394 }
1395
1396 int event;
1397 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
Ben Kwa8814cf42015-07-08 10:54:56 -07001398 (event != XmlPullParser.END_TAG || in.getDepth() >= outerDepth)) {
Craig Mautner21d24a22014-04-23 11:45:37 -07001399 if (event == XmlPullParser.START_TAG) {
1400 final String name = in.getName();
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001401 if (TaskPersister.DEBUG)
Wale Ogunwale18795a22014-12-03 11:38:33 -08001402 Slog.d(TaskPersister.TAG, "ActivityRecord: START_TAG name=" + name);
Craig Mautner21d24a22014-04-23 11:45:37 -07001403 if (TAG_INTENT.equals(name)) {
1404 intent = Intent.restoreFromXml(in);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001405 if (TaskPersister.DEBUG)
Wale Ogunwale18795a22014-12-03 11:38:33 -08001406 Slog.d(TaskPersister.TAG, "ActivityRecord: intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07001407 } else if (TAG_PERSISTABLEBUNDLE.equals(name)) {
1408 persistentState = PersistableBundle.restoreFromXml(in);
Stefan Kuhnee88d1e52015-05-18 10:33:45 -07001409 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
Craig Mautner21d24a22014-04-23 11:45:37 -07001410 "ActivityRecord: persistentState=" + persistentState);
1411 } else {
1412 Slog.w(TAG, "restoreActivity: unexpected name=" + name);
1413 XmlUtils.skipCurrentTag(in);
1414 }
1415 }
1416 }
1417
1418 if (intent == null) {
Craig Mautnere0129b32014-05-25 16:41:09 -07001419 throw new XmlPullParserException("restoreActivity error intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07001420 }
1421
1422 final ActivityManagerService service = stackSupervisor.mService;
1423 final ActivityInfo aInfo = stackSupervisor.resolveActivity(intent, resolvedType, 0, null,
Jeff Hao1b012d32014-08-20 10:35:34 -07001424 userId);
Craig Mautnere0129b32014-05-25 16:41:09 -07001425 if (aInfo == null) {
Craig Mautner77b04262014-06-27 15:22:12 -07001426 throw new XmlPullParserException("restoreActivity resolver error. Intent=" + intent +
1427 " resolvedType=" + resolvedType);
Craig Mautnere0129b32014-05-25 16:41:09 -07001428 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001429 final ActivityRecord r = new ActivityRecord(service, /*caller*/null, launchedFromUid,
1430 launchedFromPackage, intent, resolvedType, aInfo, service.getConfiguration(),
Dianne Hackbornfb81d092015-08-03 17:14:46 -07001431 null, null, 0, componentSpecified, false, stackSupervisor, null, null);
Craig Mautner21d24a22014-04-23 11:45:37 -07001432
1433 r.persistentState = persistentState;
Winson Chung2cb86c72014-06-25 12:03:30 -07001434 r.taskDescription = taskDescription;
Craig Mautner21d24a22014-04-23 11:45:37 -07001435 r.createTime = createTime;
1436
1437 return r;
1438 }
1439
1440 private static String activityTypeToString(int type) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001441 switch (type) {
1442 case APPLICATION_ACTIVITY_TYPE: return "APPLICATION_ACTIVITY_TYPE";
1443 case HOME_ACTIVITY_TYPE: return "HOME_ACTIVITY_TYPE";
1444 case RECENTS_ACTIVITY_TYPE: return "RECENTS_ACTIVITY_TYPE";
1445 default: return Integer.toString(type);
1446 }
1447 }
1448
Craig Mautnerf81b90872013-02-26 13:02:43 -08001449 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001450 public String toString() {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001451 if (stringName != null) {
Wale Ogunwale18795a22014-12-03 11:38:33 -08001452 return stringName + " t" + (task == null ? INVALID_TASK_ID : task.taskId) +
Craig Mautnerf3333272013-04-22 10:55:53 -07001453 (finishing ? " f}" : "}");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001454 }
1455 StringBuilder sb = new StringBuilder(128);
Dianne Hackborn30d71892010-12-11 10:37:55 -08001456 sb.append("ActivityRecord{");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001457 sb.append(Integer.toHexString(System.identityHashCode(this)));
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001458 sb.append(" u");
1459 sb.append(userId);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001460 sb.append(' ');
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001461 sb.append(intent.getComponent().flattenToShortString());
Craig Mautnerf81b90872013-02-26 13:02:43 -08001462 stringName = sb.toString();
1463 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001464 }
1465}