blob: d70e8b7e47399a080cd25f64b1f144063667fc9c [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
Craig Mautnerc0ffce52014-07-01 12:38:52 -070019import android.app.ActivityManager;
Craig Mautner21d24a22014-04-23 11:45:37 -070020import android.app.ActivityManager.TaskDescription;
Craig Mautnera0026042014-04-23 11:45:37 -070021import android.os.PersistableBundle;
Dianne Hackborn2286cdc2013-07-01 19:10:06 -070022import android.os.Trace;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070023
Dianne Hackborn2d69d492012-04-06 16:24:14 -070024import com.android.internal.app.ResolverActivity;
Craig Mautner21d24a22014-04-23 11:45:37 -070025import com.android.internal.util.XmlUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import com.android.server.AttributeCache;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070027import com.android.server.am.ActivityStack.ActivityState;
Craig Mautner4a1cb222013-12-04 16:14:06 -080028import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070030import android.app.ActivityOptions;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080031import android.app.ResultInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080032import android.content.ComponentName;
33import android.content.Intent;
34import android.content.pm.ActivityInfo;
35import android.content.pm.ApplicationInfo;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -070036import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037import android.content.res.Configuration;
38import android.graphics.Bitmap;
Dianne Hackbornd367ca82012-05-07 15:49:39 -070039import android.graphics.Rect;
Dianne Hackborn247fe742011-01-08 17:25:57 -080040import android.os.Build;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080041import android.os.Bundle;
Dianne Hackbornbe707852011-11-11 14:32:10 -080042import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043import android.os.Message;
44import android.os.Process;
Dianne Hackborn39792d22010-08-19 18:01:52 -070045import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080046import android.os.SystemClock;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070047import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080048import android.util.EventLog;
49import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070050import android.util.Slog;
Dianne Hackborn0dad3642010-09-09 21:25:35 -070051import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052import android.view.IApplicationToken;
Dianne Hackborn7eec10e2010-11-12 18:03:47 -080053import android.view.WindowManager;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070054
Craig Mautner21d24a22014-04-23 11:45:37 -070055import org.xmlpull.v1.XmlPullParser;
56import org.xmlpull.v1.XmlPullParserException;
57import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058
Craig Mautner21d24a22014-04-23 11:45:37 -070059import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080060import java.io.PrintWriter;
61import java.lang.ref.WeakReference;
62import java.util.ArrayList;
63import java.util.HashSet;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070064import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065
66/**
67 * An entry in the history stack, representing an activity.
68 */
Dianne Hackbornbe707852011-11-11 14:32:10 -080069final class ActivityRecord {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -070070 static final String TAG = ActivityManagerService.TAG;
71 static final boolean DEBUG_SAVED_STATE = ActivityStackSupervisor.DEBUG_SAVED_STATE;
Craig Mautner80259352013-09-28 12:35:25 -070072 final public static String RECENTS_PACKAGE_NAME = "com.android.systemui.recent";
Craig Mautnerb59dcfd2013-05-06 13:12:58 -070073
Craig Mautner21d24a22014-04-23 11:45:37 -070074 private static final String TAG_ACTIVITY = "activity";
75 private static final String ATTR_ID = "id";
76 private static final String TAG_INTENT = "intent";
77 private static final String ATTR_USERID = "user_id";
78 private static final String TAG_PERSISTABLEBUNDLE = "persistable_bundle";
79 private static final String ATTR_LAUNCHEDFROMUID = "launched_from_uid";
80 private static final String ATTR_LAUNCHEDFROMPACKAGE = "launched_from_package";
81 private static final String ATTR_RESOLVEDTYPE = "resolved_type";
82 private static final String ATTR_COMPONENTSPECIFIED = "component_specified";
Craig Mautner21d24a22014-04-23 11:45:37 -070083 private static final String ACTIVITY_ICON_SUFFIX = "_activity_icon_";
84
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085 final ActivityManagerService service; // owner
Dianne Hackbornbe707852011-11-11 14:32:10 -080086 final IApplicationToken.Stub appToken; // window manager token
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080087 final ActivityInfo info; // all about me
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070088 final ApplicationInfo appInfo; // information about activity's app
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080089 final int launchedFromUid; // always the uid who started the activity.
Dianne Hackbornf265ea92013-01-31 15:00:51 -080090 final String launchedFromPackage; // always the package who started the activity.
Amith Yamasani742a6712011-05-04 14:49:28 -070091 final int userId; // Which user is this running for?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080092 final Intent intent; // the original intent that generated us
93 final ComponentName realActivity; // the intent component, or target of an alias.
94 final String shortComponentName; // the short component name of the intent
95 final String resolvedType; // as per original caller;
96 final String packageName; // the package implementing intent's component
97 final String processName; // process where this component wants to run
98 final String taskAffinity; // as per ActivityInfo.taskAffinity
99 final boolean stateNotNeeded; // As per ActivityInfo.flags
Craig Mautner4addfc52013-06-25 08:05:45 -0700100 boolean fullscreen; // covers the full screen?
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800101 final boolean noDisplay; // activity is not displayed?
The Android Open Source Project4df24232009-03-05 14:34:35 -0800102 final boolean componentSpecified; // did caller specifiy an explicit component?
Craig Mautner86d67a42013-05-14 10:34:38 -0700103
104 static final int APPLICATION_ACTIVITY_TYPE = 0;
105 static final int HOME_ACTIVITY_TYPE = 1;
106 static final int RECENTS_ACTIVITY_TYPE = 2;
Craig Mautner2c1faed2013-07-23 12:56:02 -0700107 int mActivityType;
Craig Mautner86d67a42013-05-14 10:34:38 -0700108
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800109 CharSequence nonLocalizedLabel; // the label information from the package mgr.
110 int labelRes; // the label information from the package mgr.
111 int icon; // resource identifier of activity's icon.
Adam Powell04fe6eb2013-05-31 14:39:48 -0700112 int logo; // resource identifier of activity's logo.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800113 int theme; // resource identifier of activity's theme.
Dianne Hackborn247fe742011-01-08 17:25:57 -0800114 int realTheme; // actual theme resource we will use, never 0.
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800115 int windowFlags; // custom window flags for preview window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 TaskRecord task; // the task this is in.
Craig Mautner21d24a22014-04-23 11:45:37 -0700117 long createTime = System.currentTimeMillis();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700118 long displayStartTime; // when we started launching this activity
119 long fullyDrawnStartTime; // when we started launching this activity
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700120 long startTime; // last time this activity was started
Dianne Hackborn50685602011-12-01 12:23:37 -0800121 long lastVisibleTime; // last time this activity became visible
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700122 long cpuTimeAtResume; // the cpu time of host process at the time of resuming activity
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700123 long pauseTime; // last time we started pausing the activity
124 long launchTickTime; // base time for launch tick messages
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800125 Configuration configuration; // configuration activity was last running in
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -0700126 CompatibilityInfo compat;// last used compatibility mode
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700127 ActivityRecord resultTo; // who started this entry, so will get our reply
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800128 final String resultWho; // additional identifier for use by resultTo.
129 final int requestCode; // code given by requester (resultTo)
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800130 ArrayList<ResultInfo> results; // pending ActivityResult objs we have received
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800131 HashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this act
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800132 ArrayList<Intent> newIntents; // any pending new intents for single-top mode
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700133 ActivityOptions pendingOptions; // most recently given options
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800134 HashSet<ConnectionRecord> connections; // All ConnectionRecord we hold
Dianne Hackborn7e269642010-08-25 19:50:20 -0700135 UriPermissionOwner uriPermissions; // current special URI access perms.
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700136 ProcessRecord app; // if non-null, hosting application
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700137 ActivityState state; // current state we are in
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138 Bundle icicle; // last saved activity state
Craig Mautnera0026042014-04-23 11:45:37 -0700139 PersistableBundle persistentState; // last persistently saved activity state
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800140 boolean frontOfTask; // is this the root activity of its task?
141 boolean launchFailed; // set if a launched failed, to abort on 2nd try
142 boolean haveState; // have we gotten the last activity state?
143 boolean stopped; // is activity pause finished?
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700144 boolean delayedResume; // not yet resumed because of stopped app switches?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800145 boolean finishing; // activity in pending finish list?
146 boolean configDestroy; // need to destroy due to config change?
147 int configChangeFlags; // which config values have changed
148 boolean keysPaused; // has key dispatching been paused for it?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149 int launchMode; // the launch mode activity attribute.
150 boolean visible; // does this activity's window need to be shown?
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800151 boolean sleeping; // have we told the activity to sleep?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800152 boolean waitingVisible; // true if waiting for a new act to become vis
153 boolean nowVisible; // is this activity's window visible?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 boolean idle; // has the activity gone idle?
155 boolean hasBeenLaunched;// has this activity ever been launched?
156 boolean frozenBeforeDestroy;// has been frozen but not yet destroyed.
Daniel Sandler69a48172010-06-23 16:29:36 -0400157 boolean immersive; // immersive mode (don't interrupt if possible)
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400158 boolean forceNewConfig; // force re-create with new config next time
Dianne Hackborn07981492013-01-28 11:36:23 -0800159 int launchCount; // count of launches since last state
160 long lastLaunchTime; // time of last lauch of this activity
Craig Mautnerf4c909b2014-04-17 18:39:38 -0700161 ArrayList<ActivityContainer> mChildContainers = new ArrayList<ActivityContainer>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800162
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700163 String stringName; // for caching of toString().
Craig Mautnerde4ef022013-04-07 19:01:33 -0700164
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700165 private boolean inHistory; // are we in the history stack?
Craig Mautnerde4ef022013-04-07 19:01:33 -0700166 final ActivityStackSupervisor mStackSupervisor;
Craig Mautnera61bc652013-10-28 15:43:18 -0700167 boolean mStartingWindowShown = false;
Craig Mautnere0a38842013-12-16 16:14:02 -0800168 ActivityContainer mInitialActivityContainer;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700169
Craig Mautner21d24a22014-04-23 11:45:37 -0700170 TaskDescription taskDescription; // the recents information for this activity
Craig Mautner2fbd7542014-03-21 09:34:07 -0700171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700173 final long now = SystemClock.uptimeMillis();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700174 pw.print(prefix); pw.print("packageName="); pw.print(packageName);
175 pw.print(" processName="); pw.println(processName);
176 pw.print(prefix); pw.print("launchedFromUid="); pw.print(launchedFromUid);
Craig Mautnere11f2b72013-04-01 12:37:17 -0700177 pw.print(" launchedFromPackage="); pw.print(launchedFromPackage);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800178 pw.print(" userId="); pw.println(userId);
179 pw.print(prefix); pw.print("app="); pw.println(app);
180 pw.print(prefix); pw.println(intent.toInsecureStringWithClip());
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700181 pw.print(prefix); pw.print("frontOfTask="); pw.print(frontOfTask);
182 pw.print(" task="); pw.println(task);
183 pw.print(prefix); pw.print("taskAffinity="); pw.println(taskAffinity);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700184 pw.print(prefix); pw.print("realActivity=");
185 pw.println(realActivity.flattenToShortString());
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700186 if (appInfo != null) {
187 pw.print(prefix); pw.print("baseDir="); pw.println(appInfo.sourceDir);
188 if (!Objects.equals(appInfo.sourceDir, appInfo.publicSourceDir)) {
189 pw.print(prefix); pw.print("resDir="); pw.println(appInfo.publicSourceDir);
190 }
191 pw.print(prefix); pw.print("dataDir="); pw.println(appInfo.dataDir);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800192 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700193 pw.print(prefix); pw.print("stateNotNeeded="); pw.print(stateNotNeeded);
194 pw.print(" componentSpecified="); pw.print(componentSpecified);
Craig Mautner86d67a42013-05-14 10:34:38 -0700195 pw.print(" mActivityType="); pw.println(mActivityType);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800196 pw.print(prefix); pw.print("compat="); pw.print(compat);
197 pw.print(" labelRes=0x"); pw.print(Integer.toHexString(labelRes));
198 pw.print(" icon=0x"); pw.print(Integer.toHexString(icon));
199 pw.print(" theme=0x"); pw.println(Integer.toHexString(theme));
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700200 pw.print(prefix); pw.print("config="); pw.println(configuration);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700201 if (resultTo != null || resultWho != null) {
202 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
203 pw.print(" resultWho="); pw.print(resultWho);
204 pw.print(" resultCode="); pw.println(requestCode);
205 }
Craig Mautneree2e45a2014-06-27 12:10:03 -0700206 if (taskDescription.getIcon() != null || taskDescription.getLabel() != null ||
207 taskDescription.getPrimaryColor() != 0) {
208 pw.print(prefix); pw.print("taskDescription:");
209 pw.print(" icon="); pw.print(taskDescription.getIcon());
210 pw.print(" label=\""); pw.print(taskDescription.getLabel()); pw.print("\"");
211 pw.print(" color=");
212 pw.println(Integer.toHexString(taskDescription.getPrimaryColor()));
213 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700214 if (results != null) {
215 pw.print(prefix); pw.print("results="); pw.println(results);
216 }
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700217 if (pendingResults != null && pendingResults.size() > 0) {
218 pw.print(prefix); pw.println("Pending Results:");
219 for (WeakReference<PendingIntentRecord> wpir : pendingResults) {
220 PendingIntentRecord pir = wpir != null ? wpir.get() : null;
221 pw.print(prefix); pw.print(" - ");
222 if (pir == null) {
223 pw.println("null");
224 } else {
225 pw.println(pir);
226 pir.dump(pw, prefix + " ");
227 }
228 }
229 }
230 if (newIntents != null && newIntents.size() > 0) {
231 pw.print(prefix); pw.println("Pending New Intents:");
232 for (int i=0; i<newIntents.size(); i++) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800233 Intent intent = newIntents.get(i);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700234 pw.print(prefix); pw.print(" - ");
235 if (intent == null) {
236 pw.println("null");
237 } else {
238 pw.println(intent.toShortString(false, true, false, true));
239 }
240 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700241 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700242 if (pendingOptions != null) {
243 pw.print(prefix); pw.print("pendingOptions="); pw.println(pendingOptions);
244 }
Dianne Hackborn7e269642010-08-25 19:50:20 -0700245 if (uriPermissions != null) {
Jeff Sharkey846318a2014-04-04 12:12:41 -0700246 uriPermissions.dump(pw, prefix);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700247 }
248 pw.print(prefix); pw.print("launchFailed="); pw.print(launchFailed);
Dianne Hackborn07981492013-01-28 11:36:23 -0800249 pw.print(" launchCount="); pw.print(launchCount);
250 pw.print(" lastLaunchTime=");
251 if (lastLaunchTime == 0) pw.print("0");
252 else TimeUtils.formatDuration(lastLaunchTime, now, pw);
253 pw.println();
Dianne Hackborncfc837f2013-06-27 18:32:07 -0700254 pw.print(prefix); pw.print("haveState="); pw.print(haveState);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700255 pw.print(" icicle="); pw.println(icicle);
256 pw.print(prefix); pw.print("state="); pw.print(state);
257 pw.print(" stopped="); pw.print(stopped);
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700258 pw.print(" delayedResume="); pw.print(delayedResume);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700259 pw.print(" finishing="); pw.println(finishing);
260 pw.print(prefix); pw.print("keysPaused="); pw.print(keysPaused);
261 pw.print(" inHistory="); pw.print(inHistory);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700262 pw.print(" visible="); pw.print(visible);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800263 pw.print(" sleeping="); pw.print(sleeping);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700264 pw.print(" idle="); pw.println(idle);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800265 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen);
266 pw.print(" noDisplay="); pw.print(noDisplay);
267 pw.print(" immersive="); pw.print(immersive);
268 pw.print(" launchMode="); pw.println(launchMode);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800269 pw.print(prefix); pw.print("frozenBeforeDestroy="); pw.print(frozenBeforeDestroy);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400270 pw.print(" forceNewConfig="); pw.println(forceNewConfig);
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700271 pw.print(prefix); pw.print("mActivityType=");
272 pw.println(activityTypeToString(mActivityType));
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700273 if (displayStartTime != 0 || startTime != 0) {
274 pw.print(prefix); pw.print("displayStartTime=");
275 if (displayStartTime == 0) pw.print("0");
276 else TimeUtils.formatDuration(displayStartTime, now, pw);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700277 pw.print(" startTime=");
278 if (startTime == 0) pw.print("0");
279 else TimeUtils.formatDuration(startTime, now, pw);
280 pw.println();
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700281 }
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800282 if (lastVisibleTime != 0 || waitingVisible || nowVisible) {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700283 pw.print(prefix); pw.print("waitingVisible="); pw.print(waitingVisible);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800284 pw.print(" nowVisible="); pw.print(nowVisible);
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700285 pw.print(" lastVisibleTime=");
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700286 if (lastVisibleTime == 0) pw.print("0");
287 else TimeUtils.formatDuration(lastVisibleTime, now, pw);
288 pw.println();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700289 }
290 if (configDestroy || configChangeFlags != 0) {
291 pw.print(prefix); pw.print("configDestroy="); pw.print(configDestroy);
292 pw.print(" configChangeFlags=");
293 pw.println(Integer.toHexString(configChangeFlags));
294 }
295 if (connections != null) {
296 pw.print(prefix); pw.print("connections="); pw.println(connections);
297 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800298 }
299
Dianne Hackbornbe707852011-11-11 14:32:10 -0800300 static class Token extends IApplicationToken.Stub {
301 final WeakReference<ActivityRecord> weakActivity;
302
303 Token(ActivityRecord activity) {
304 weakActivity = new WeakReference<ActivityRecord>(activity);
305 }
306
Craig Mautnerde4ef022013-04-07 19:01:33 -0700307 @Override public void windowsDrawn() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800308 ActivityRecord activity = weakActivity.get();
309 if (activity != null) {
310 activity.windowsDrawn();
311 }
312 }
313
Craig Mautnerde4ef022013-04-07 19:01:33 -0700314 @Override public void windowsVisible() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800315 ActivityRecord activity = weakActivity.get();
316 if (activity != null) {
317 activity.windowsVisible();
318 }
319 }
320
Craig Mautnerde4ef022013-04-07 19:01:33 -0700321 @Override public void windowsGone() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800322 ActivityRecord activity = weakActivity.get();
323 if (activity != null) {
324 activity.windowsGone();
325 }
326 }
327
Jeff Brownbd181bb2013-09-10 16:44:24 -0700328 @Override public boolean keyDispatchingTimedOut(String reason) {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800329 ActivityRecord activity = weakActivity.get();
Jeff Brownbd181bb2013-09-10 16:44:24 -0700330 return activity != null && activity.keyDispatchingTimedOut(reason);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800331 }
332
Craig Mautnerde4ef022013-04-07 19:01:33 -0700333 @Override public long getKeyDispatchingTimeout() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800334 ActivityRecord activity = weakActivity.get();
335 if (activity != null) {
336 return activity.getKeyDispatchingTimeout();
337 }
338 return 0;
339 }
340
Craig Mautnerde4ef022013-04-07 19:01:33 -0700341 @Override
Dianne Hackbornbe707852011-11-11 14:32:10 -0800342 public String toString() {
343 StringBuilder sb = new StringBuilder(128);
344 sb.append("Token{");
345 sb.append(Integer.toHexString(System.identityHashCode(this)));
346 sb.append(' ');
347 sb.append(weakActivity.get());
348 sb.append('}');
349 return sb.toString();
350 }
351 }
352
353 static ActivityRecord forToken(IBinder token) {
354 try {
355 return token != null ? ((Token)token).weakActivity.get() : null;
356 } catch (ClassCastException e) {
357 Slog.w(ActivityManagerService.TAG, "Bad activity token: " + token, e);
358 return null;
359 }
360 }
361
Craig Mautnerac6f8432013-07-17 13:24:59 -0700362 boolean isNotResolverActivity() {
363 return !ResolverActivity.class.getName().equals(realActivity.getClassName());
364 }
365
Craig Mautnerd2328952013-03-05 12:46:26 -0800366 ActivityRecord(ActivityManagerService _service, ProcessRecord _caller,
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800367 int _launchedFromUid, String _launchedFromPackage, Intent _intent, String _resolvedType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800368 ActivityInfo aInfo, Configuration _configuration,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700369 ActivityRecord _resultTo, String _resultWho, int _reqCode,
Craig Mautnere0a38842013-12-16 16:14:02 -0800370 boolean _componentSpecified, ActivityStackSupervisor supervisor,
Craig Mautner233ceee2014-05-09 17:05:11 -0700371 ActivityContainer container, Bundle options) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800372 service = _service;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800373 appToken = new Token(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 info = aInfo;
375 launchedFromUid = _launchedFromUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800376 launchedFromPackage = _launchedFromPackage;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700377 userId = UserHandle.getUserId(aInfo.applicationInfo.uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 intent = _intent;
379 shortComponentName = _intent.getComponent().flattenToShortString();
380 resolvedType = _resolvedType;
The Android Open Source Project4df24232009-03-05 14:34:35 -0800381 componentSpecified = _componentSpecified;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800382 configuration = _configuration;
383 resultTo = _resultTo;
384 resultWho = _resultWho;
385 requestCode = _reqCode;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700386 state = ActivityState.INITIALIZING;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800387 frontOfTask = false;
388 launchFailed = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 stopped = false;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700390 delayedResume = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800391 finishing = false;
392 configDestroy = false;
393 keysPaused = false;
394 inHistory = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 visible = true;
396 waitingVisible = false;
397 nowVisible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800398 idle = false;
399 hasBeenLaunched = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700400 mStackSupervisor = supervisor;
Craig Mautnere0a38842013-12-16 16:14:02 -0800401 mInitialActivityContainer = container;
Craig Mautner233ceee2014-05-09 17:05:11 -0700402 if (options != null) {
403 pendingOptions = new ActivityOptions(options);
404 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800405
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700406 // This starts out true, since the initial state of an activity
407 // is that we have everything, and we shouldn't never consider it
408 // lacking in state to be removed if it dies.
409 haveState = true;
410
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800411 if (aInfo != null) {
412 if (aInfo.targetActivity == null
413 || aInfo.launchMode == ActivityInfo.LAUNCH_MULTIPLE
414 || aInfo.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
415 realActivity = _intent.getComponent();
416 } else {
417 realActivity = new ComponentName(aInfo.packageName,
418 aInfo.targetActivity);
419 }
420 taskAffinity = aInfo.taskAffinity;
421 stateNotNeeded = (aInfo.flags&
422 ActivityInfo.FLAG_STATE_NOT_NEEDED) != 0;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700423 appInfo = aInfo.applicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800424 nonLocalizedLabel = aInfo.nonLocalizedLabel;
425 labelRes = aInfo.labelRes;
426 if (nonLocalizedLabel == null && labelRes == 0) {
427 ApplicationInfo app = aInfo.applicationInfo;
428 nonLocalizedLabel = app.nonLocalizedLabel;
429 labelRes = app.labelRes;
430 }
431 icon = aInfo.getIconResource();
Adam Powell04fe6eb2013-05-31 14:39:48 -0700432 logo = aInfo.getLogoResource();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800433 theme = aInfo.getThemeResource();
Dianne Hackborn247fe742011-01-08 17:25:57 -0800434 realTheme = theme;
435 if (realTheme == 0) {
436 realTheme = aInfo.applicationInfo.targetSdkVersion
437 < Build.VERSION_CODES.HONEYCOMB
438 ? android.R.style.Theme
439 : android.R.style.Theme_Holo;
440 }
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800441 if ((aInfo.flags&ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
442 windowFlags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
443 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444 if ((aInfo.flags&ActivityInfo.FLAG_MULTIPROCESS) != 0
445 && _caller != null
446 && (aInfo.applicationInfo.uid == Process.SYSTEM_UID
447 || aInfo.applicationInfo.uid == _caller.info.uid)) {
448 processName = _caller.processName;
449 } else {
450 processName = aInfo.processName;
451 }
452
453 if (intent != null && (aInfo.flags & ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS) != 0) {
454 intent.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
455 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700456
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800457 packageName = aInfo.applicationInfo.packageName;
458 launchMode = aInfo.launchMode;
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700459
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 AttributeCache.Entry ent = AttributeCache.instance().get(packageName,
Amith Yamasani4befbec2013-07-10 16:18:01 -0700461 realTheme, com.android.internal.R.styleable.Window, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800462 fullscreen = ent != null && !ent.array.getBoolean(
463 com.android.internal.R.styleable.Window_windowIsFloating, false)
464 && !ent.array.getBoolean(
465 com.android.internal.R.styleable.Window_windowIsTranslucent, false);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800466 noDisplay = ent != null && ent.array.getBoolean(
467 com.android.internal.R.styleable.Window_windowNoDisplay, false);
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700468
Craig Mautner80259352013-09-28 12:35:25 -0700469 if ((!_componentSpecified || _launchedFromUid == Process.myUid()
Craig Mautner86d67a42013-05-14 10:34:38 -0700470 || _launchedFromUid == 0) &&
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700471 Intent.ACTION_MAIN.equals(_intent.getAction()) &&
472 _intent.hasCategory(Intent.CATEGORY_HOME) &&
473 _intent.getCategories().size() == 1 &&
474 _intent.getData() == null &&
475 _intent.getType() == null &&
Craig Mautner80259352013-09-28 12:35:25 -0700476 (intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) != 0 &&
477 isNotResolverActivity()) {
Craig Mautner86d67a42013-05-14 10:34:38 -0700478 // This sure looks like a home activity!
479 mActivityType = HOME_ACTIVITY_TYPE;
Craig Mautner80259352013-09-28 12:35:25 -0700480 } else if (realActivity.getClassName().contains(RECENTS_PACKAGE_NAME)) {
Craig Mautner86d67a42013-05-14 10:34:38 -0700481 mActivityType = RECENTS_ACTIVITY_TYPE;
482 } else {
483 mActivityType = APPLICATION_ACTIVITY_TYPE;
484 }
Daniel Sandler69a48172010-06-23 16:29:36 -0400485
486 immersive = (aInfo.flags & ActivityInfo.FLAG_IMMERSIVE) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800487 } else {
488 realActivity = null;
489 taskAffinity = null;
490 stateNotNeeded = false;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700491 appInfo = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800492 processName = null;
493 packageName = null;
494 fullscreen = true;
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800495 noDisplay = false;
Craig Mautner86d67a42013-05-14 10:34:38 -0700496 mActivityType = APPLICATION_ACTIVITY_TYPE;
Daniel Sandler69a48172010-06-23 16:29:36 -0400497 immersive = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800498 }
499 }
500
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700501 void setTask(TaskRecord newTask, boolean isRoot) {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700502 if (task != null && task.removeActivity(this)) {
Craig Mautner19d9bd52013-10-21 20:05:26 -0700503 if (task != newTask) {
Craig Mautner41db4a72014-05-07 17:20:56 -0700504 task.stack.removeTask(task);
Craig Mautner19d9bd52013-10-21 20:05:26 -0700505 } else {
506 Slog.d(TAG, "!!! REMOVE THIS LOG !!! setTask: nearly removed stack=" +
507 (newTask == null ? null : newTask.stack));
508 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700509 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700510 task = newTask;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700511 }
512
Craig Mautner5eda9b32013-07-02 11:58:16 -0700513 boolean changeWindowTranslucency(boolean toOpaque) {
514 if (fullscreen == toOpaque) {
515 return false;
516 }
Craig Mautner4addfc52013-06-25 08:05:45 -0700517
Craig Mautner5eda9b32013-07-02 11:58:16 -0700518 // Keep track of the number of fullscreen activities in this task.
519 task.numFullscreen += toOpaque ? +1 : -1;
520
521 fullscreen = toOpaque;
522 return true;
Craig Mautner4addfc52013-06-25 08:05:45 -0700523 }
524
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700525 void putInHistory() {
526 if (!inHistory) {
527 inHistory = true;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700528 }
529 }
530
531 void takeFromHistory() {
532 if (inHistory) {
533 inHistory = false;
534 if (task != null && !finishing) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800535 task = null;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700536 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700537 clearOptionsLocked();
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700538 }
539 }
540
541 boolean isInHistory() {
542 return inHistory;
543 }
544
Craig Mautner86d67a42013-05-14 10:34:38 -0700545 boolean isHomeActivity() {
546 return mActivityType == HOME_ACTIVITY_TYPE;
547 }
548
549 boolean isRecentsActivity() {
550 return mActivityType == RECENTS_ACTIVITY_TYPE;
551 }
552
553 boolean isApplicationActivity() {
554 return mActivityType == APPLICATION_ACTIVITY_TYPE;
555 }
556
Craig Mautner21d24a22014-04-23 11:45:37 -0700557 boolean isPersistable() {
Craig Mautner43e52ed2014-06-16 17:18:52 -0700558 return (info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY ||
559 info.persistableMode == ActivityInfo.PERSIST_ACROSS_REBOOTS) &&
560 (intent == null ||
561 (intent.getFlags() & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) == 0);
Craig Mautner21d24a22014-04-23 11:45:37 -0700562 }
563
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800564 void makeFinishing() {
565 if (!finishing) {
566 finishing = true;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700567 if (stopped) {
568 clearOptionsLocked();
569 }
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800570 }
571 }
572
Dianne Hackborn7e269642010-08-25 19:50:20 -0700573 UriPermissionOwner getUriPermissionsLocked() {
574 if (uriPermissions == null) {
575 uriPermissions = new UriPermissionOwner(service, this);
576 }
577 return uriPermissions;
578 }
579
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700580 void addResultLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800581 int requestCode, int resultCode,
582 Intent resultData) {
583 ActivityResult r = new ActivityResult(from, resultWho,
John Spurlock8a985d22014-02-25 09:40:05 -0500584 requestCode, resultCode, resultData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800585 if (results == null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800586 results = new ArrayList<ResultInfo>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800587 }
588 results.add(r);
589 }
590
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700591 void removeResultsLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800592 int requestCode) {
593 if (results != null) {
594 for (int i=results.size()-1; i>=0; i--) {
595 ActivityResult r = (ActivityResult)results.get(i);
596 if (r.mFrom != from) continue;
597 if (r.mResultWho == null) {
598 if (resultWho != null) continue;
599 } else {
600 if (!r.mResultWho.equals(resultWho)) continue;
601 }
602 if (r.mRequestCode != requestCode) continue;
603
604 results.remove(i);
605 }
606 }
607 }
608
609 void addNewIntentLocked(Intent intent) {
610 if (newIntents == null) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800611 newIntents = new ArrayList<Intent>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 }
613 newIntents.add(intent);
614 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700615
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700616 /**
617 * Deliver a new Intent to an existing activity, so that its onNewIntent()
618 * method will be called at the proper time.
619 */
Dianne Hackborn39792d22010-08-19 18:01:52 -0700620 final void deliverNewIntentLocked(int callingUid, Intent intent) {
Dianne Hackborn514074f2013-02-11 10:52:46 -0800621 // The activity now gets access to the data associated with this Intent.
622 service.grantUriPermissionFromIntentLocked(callingUid, packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +0100623 intent, getUriPermissionsLocked(), userId);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700624 // We want to immediately deliver the intent to the activity if
625 // it is currently the top resumed activity... however, if the
626 // device is sleeping, then all activities are stopped, so in that
627 // case we will deliver it if this is the current top activity on its
628 // stack.
Craig Mautner86d67a42013-05-14 10:34:38 -0700629 boolean unsent = true;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700630 if ((state == ActivityState.RESUMED || (service.isSleeping()
Craig Mautnerd2328952013-03-05 12:46:26 -0800631 && task.stack.topRunningActivityLocked(null) == this))
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700632 && app != null && app.thread != null) {
633 try {
634 ArrayList<Intent> ar = new ArrayList<Intent>();
Dianne Hackborn39792d22010-08-19 18:01:52 -0700635 intent = new Intent(intent);
636 ar.add(intent);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800637 app.thread.scheduleNewIntent(ar, appToken);
Craig Mautner86d67a42013-05-14 10:34:38 -0700638 unsent = false;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700639 } catch (RemoteException e) {
640 Slog.w(ActivityManagerService.TAG,
641 "Exception thrown sending new intent to " + this, e);
642 } catch (NullPointerException e) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700643 Slog.w(ActivityManagerService.TAG,
644 "Exception thrown sending new intent to " + this, e);
645 }
646 }
Craig Mautner86d67a42013-05-14 10:34:38 -0700647 if (unsent) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700648 addNewIntentLocked(new Intent(intent));
649 }
650 }
651
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700652 void updateOptionsLocked(Bundle options) {
653 if (options != null) {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700654 if (pendingOptions != null) {
655 pendingOptions.abort();
656 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700657 pendingOptions = new ActivityOptions(options);
658 }
659 }
660
Dianne Hackborn9622ca42012-10-23 18:56:33 -0700661 void updateOptionsLocked(ActivityOptions options) {
662 if (options != null) {
663 if (pendingOptions != null) {
664 pendingOptions.abort();
665 }
666 pendingOptions = options;
667 }
668 }
669
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700670 void applyOptionsLocked() {
George Mount2c92c972014-03-20 09:38:23 -0700671 if (pendingOptions != null
672 && pendingOptions.getAnimationType() != ActivityOptions.ANIM_SCENE_TRANSITION) {
Michael Jurka21385cd2012-05-03 10:57:31 -0700673 final int animationType = pendingOptions.getAnimationType();
674 switch (animationType) {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700675 case ActivityOptions.ANIM_CUSTOM:
676 service.mWindowManager.overridePendingAppTransition(
677 pendingOptions.getPackageName(),
678 pendingOptions.getCustomEnterResId(),
Dianne Hackborn84375872012-06-01 19:03:50 -0700679 pendingOptions.getCustomExitResId(),
680 pendingOptions.getOnAnimationStartListener());
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700681 break;
Dianne Hackborneabfb3a2012-04-16 16:28:22 -0700682 case ActivityOptions.ANIM_SCALE_UP:
683 service.mWindowManager.overridePendingAppTransitionScaleUp(
684 pendingOptions.getStartX(), pendingOptions.getStartY(),
685 pendingOptions.getStartWidth(), pendingOptions.getStartHeight());
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700686 if (intent.getSourceBounds() == null) {
687 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
688 pendingOptions.getStartY(),
689 pendingOptions.getStartX()+pendingOptions.getStartWidth(),
690 pendingOptions.getStartY()+pendingOptions.getStartHeight()));
691 }
Dianne Hackborneabfb3a2012-04-16 16:28:22 -0700692 break;
Michael Jurka832cb222012-04-13 09:32:47 -0700693 case ActivityOptions.ANIM_THUMBNAIL_SCALE_UP:
694 case ActivityOptions.ANIM_THUMBNAIL_SCALE_DOWN:
695 boolean scaleUp = (animationType == ActivityOptions.ANIM_THUMBNAIL_SCALE_UP);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700696 service.mWindowManager.overridePendingAppTransitionThumb(
697 pendingOptions.getThumbnail(),
698 pendingOptions.getStartX(), pendingOptions.getStartY(),
Michael Jurka21385cd2012-05-03 10:57:31 -0700699 pendingOptions.getOnAnimationStartListener(),
Michael Jurka832cb222012-04-13 09:32:47 -0700700 scaleUp);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700701 if (intent.getSourceBounds() == null) {
702 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
703 pendingOptions.getStartY(),
704 pendingOptions.getStartX()
705 + pendingOptions.getThumbnail().getWidth(),
706 pendingOptions.getStartY()
707 + pendingOptions.getThumbnail().getHeight()));
708 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700709 break;
Craig Mautner233ceee2014-05-09 17:05:11 -0700710 default:
711 Slog.e(TAG, "applyOptionsLocked: Unknown animationType=" + animationType);
712 break;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700713 }
714 pendingOptions = null;
715 }
716 }
717
Adam Powellcfbe9be2013-11-06 14:58:58 -0800718 ActivityOptions getOptionsForTargetActivityLocked() {
719 return pendingOptions != null ? pendingOptions.forTargetActivity() : null;
720 }
721
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700722 void clearOptionsLocked() {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700723 if (pendingOptions != null) {
724 pendingOptions.abort();
725 pendingOptions = null;
726 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700727 }
728
Dianne Hackborn9622ca42012-10-23 18:56:33 -0700729 ActivityOptions takeOptionsLocked() {
730 ActivityOptions opts = pendingOptions;
731 pendingOptions = null;
732 return opts;
733 }
734
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700735 void removeUriPermissionsLocked() {
Dianne Hackborn7e269642010-08-25 19:50:20 -0700736 if (uriPermissions != null) {
737 uriPermissions.removeUriPermissionsLocked();
738 uriPermissions = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700739 }
740 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800741
742 void pauseKeyDispatchingLocked() {
743 if (!keysPaused) {
744 keysPaused = true;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800745 service.mWindowManager.pauseKeyDispatching(appToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800746 }
747 }
748
749 void resumeKeyDispatchingLocked() {
750 if (keysPaused) {
751 keysPaused = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800752 service.mWindowManager.resumeKeyDispatching(appToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800753 }
754 }
755
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700756 void updateThumbnail(Bitmap newThumbnail, CharSequence description) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700757 if (newThumbnail != null) {
758 if (ActivityManagerService.DEBUG_THUMBNAILS) Slog.i(ActivityManagerService.TAG,
759 "Setting thumbnail of " + this + " to " + newThumbnail);
760 task.setLastThumbnail(newThumbnail);
761 if (isPersistable()) {
762 mStackSupervisor.mService.notifyTaskPersisterLocked(task, false);
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700763 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700764 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700765 task.lastDescription = description;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700766 }
767
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700768 void startLaunchTickingLocked() {
769 if (ActivityManagerService.IS_USER_BUILD) {
770 return;
771 }
772 if (launchTickTime == 0) {
773 launchTickTime = SystemClock.uptimeMillis();
774 continueLaunchTickingLocked();
775 }
776 }
777
778 boolean continueLaunchTickingLocked() {
779 if (launchTickTime != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800780 final ActivityStack stack = task.stack;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700781 Message msg = stack.mHandler.obtainMessage(ActivityStack.LAUNCH_TICK_MSG, this);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700782 stack.mHandler.removeMessages(ActivityStack.LAUNCH_TICK_MSG);
783 stack.mHandler.sendMessageDelayed(msg, ActivityStack.LAUNCH_TICK);
784 return true;
785 }
786 return false;
787 }
788
789 void finishLaunchTickingLocked() {
790 launchTickTime = 0;
Craig Mautnerd2328952013-03-05 12:46:26 -0800791 task.stack.mHandler.removeMessages(ActivityStack.LAUNCH_TICK_MSG);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700792 }
793
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800794 // IApplicationToken
795
796 public boolean mayFreezeScreenLocked(ProcessRecord app) {
797 // Only freeze the screen if this activity is currently attached to
798 // an application, and that application is not blocked or unresponding.
799 // In any other case, we can't count on getting the screen unfrozen,
800 // so it is best to leave as-is.
Dianne Hackborn5f4d6432010-12-21 20:40:11 -0800801 return app != null && !app.crashing && !app.notResponding;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800802 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700803
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800804 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) {
805 if (mayFreezeScreenLocked(app)) {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800806 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800807 }
808 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700809
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800810 public void stopFreezingScreenLocked(boolean force) {
811 if (force || frozenBeforeDestroy) {
812 frozenBeforeDestroy = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800813 service.mWindowManager.stopAppFreezingScreen(appToken, force);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800814 }
815 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700816
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700817 public void reportFullyDrawnLocked() {
818 final long curTime = SystemClock.uptimeMillis();
819 if (displayStartTime != 0) {
820 reportLaunchTimeLocked(curTime);
821 }
822 if (fullyDrawnStartTime != 0) {
823 final ActivityStack stack = task.stack;
824 final long thisTime = curTime - fullyDrawnStartTime;
825 final long totalTime = stack.mFullyDrawnStartTime != 0
826 ? (curTime - stack.mFullyDrawnStartTime) : thisTime;
827 if (ActivityManagerService.SHOW_ACTIVITY_START_TIME) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700828 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700829 EventLog.writeEvent(EventLogTags.AM_ACTIVITY_FULLY_DRAWN_TIME,
830 userId, System.identityHashCode(this), shortComponentName,
831 thisTime, totalTime);
832 StringBuilder sb = service.mStringBuilder;
833 sb.setLength(0);
834 sb.append("Fully drawn ");
835 sb.append(shortComponentName);
836 sb.append(": ");
837 TimeUtils.formatDuration(thisTime, sb);
838 if (thisTime != totalTime) {
839 sb.append(" (total ");
840 TimeUtils.formatDuration(totalTime, sb);
841 sb.append(")");
842 }
843 Log.i(ActivityManagerService.TAG, sb.toString());
844 }
845 if (totalTime > 0) {
846 service.mUsageStatsService.noteFullyDrawnTime(realActivity, (int) totalTime);
847 }
848 fullyDrawnStartTime = 0;
849 stack.mFullyDrawnStartTime = 0;
850 }
851 }
852
853 private void reportLaunchTimeLocked(final long curTime) {
854 final ActivityStack stack = task.stack;
855 final long thisTime = curTime - displayStartTime;
856 final long totalTime = stack.mLaunchStartTime != 0
857 ? (curTime - stack.mLaunchStartTime) : thisTime;
858 if (ActivityManagerService.SHOW_ACTIVITY_START_TIME) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700859 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700860 EventLog.writeEvent(EventLogTags.AM_ACTIVITY_LAUNCH_TIME,
861 userId, System.identityHashCode(this), shortComponentName,
862 thisTime, totalTime);
863 StringBuilder sb = service.mStringBuilder;
864 sb.setLength(0);
865 sb.append("Displayed ");
866 sb.append(shortComponentName);
867 sb.append(": ");
868 TimeUtils.formatDuration(thisTime, sb);
869 if (thisTime != totalTime) {
870 sb.append(" (total ");
871 TimeUtils.formatDuration(totalTime, sb);
872 sb.append(")");
873 }
874 Log.i(ActivityManagerService.TAG, sb.toString());
875 }
876 mStackSupervisor.reportActivityLaunchedLocked(false, this, thisTime, totalTime);
877 if (totalTime > 0) {
878 service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
879 }
880 displayStartTime = 0;
881 stack.mLaunchStartTime = 0;
882 }
883
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700884 public void windowsDrawn() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800885 synchronized(service) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700886 if (displayStartTime != 0) {
887 reportLaunchTimeLocked(SystemClock.uptimeMillis());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800888 }
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700889 startTime = 0;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700890 finishLaunchTickingLocked();
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700891 if (task != null) {
892 task.hasBeenVisible = true;
893 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700894 }
895 }
896
897 public void windowsVisible() {
898 synchronized(service) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700899 mStackSupervisor.reportActivityVisibleLocked(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800900 if (ActivityManagerService.DEBUG_SWITCH) Log.v(
901 ActivityManagerService.TAG, "windowsVisible(): " + this);
902 if (!nowVisible) {
903 nowVisible = true;
Dianne Hackborn50685602011-12-01 12:23:37 -0800904 lastVisibleTime = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800905 if (!idle) {
906 // Instead of doing the full stop routine here, let's just
907 // hide any activities we now can, and let them stop when
908 // the normal idle happens.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700909 mStackSupervisor.processStoppingActivitiesLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800910 } else {
911 // If this activity was already idle, then we now need to
912 // make sure we perform the full stop of any activities
913 // that are waiting to do so. This is because we won't
914 // do that while they are still waiting for this one to
915 // become visible.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700916 final int N = mStackSupervisor.mWaitingVisibleActivities.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800917 if (N > 0) {
918 for (int i=0; i<N; i++) {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700919 ActivityRecord r = mStackSupervisor.mWaitingVisibleActivities.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800920 r.waitingVisible = false;
921 if (ActivityManagerService.DEBUG_SWITCH) Log.v(
922 ActivityManagerService.TAG,
923 "Was waiting for visible: " + r);
924 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700925 mStackSupervisor.mWaitingVisibleActivities.clear();
Craig Mautnerf3333272013-04-22 10:55:53 -0700926 mStackSupervisor.scheduleIdleLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800927 }
928 }
929 service.scheduleAppGcsLocked();
930 }
931 }
932 }
933
934 public void windowsGone() {
935 if (ActivityManagerService.DEBUG_SWITCH) Log.v(
936 ActivityManagerService.TAG, "windowsGone(): " + this);
937 nowVisible = false;
938 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700939
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700940 private ActivityRecord getWaitingHistoryRecordLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800941 // First find the real culprit... if we are waiting
942 // for another app to start, then we have paused dispatching
943 // for this activity.
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700944 ActivityRecord r = this;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800945 if (r.waitingVisible) {
Craig Mautner8f2adcb2014-04-07 22:21:33 +0000946 final ActivityStack stack = mStackSupervisor.getFocusedStack();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800947 // Hmmm, who might we be waiting for?
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700948 r = stack.mResumedActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800949 if (r == null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800950 r = stack.mPausingActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800951 }
952 // Both of those null? Fall back to 'this' again
953 if (r == null) {
954 r = this;
955 }
956 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700957
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800958 return r;
959 }
960
Jeff Brownbd181bb2013-09-10 16:44:24 -0700961 public boolean keyDispatchingTimedOut(String reason) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700962 ActivityRecord r;
Michael Wright7dd5bb12013-02-27 17:07:29 -0800963 ProcessRecord anrApp;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800964 synchronized(service) {
Dianne Hackbornad5499d2010-03-29 18:08:45 -0700965 r = getWaitingHistoryRecordLocked();
Michael Wright7dd5bb12013-02-27 17:07:29 -0800966 anrApp = r != null ? r.app : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800967 }
Jeff Brownbd181bb2013-09-10 16:44:24 -0700968 return service.inputDispatchingTimedOut(anrApp, r, this, false, reason);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800969 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700970
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800971 /** Returns the key dispatching timeout for this application token. */
972 public long getKeyDispatchingTimeout() {
973 synchronized(service) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700974 ActivityRecord r = getWaitingHistoryRecordLocked();
Michael Wright7dd5bb12013-02-27 17:07:29 -0800975 return ActivityManagerService.getInputDispatchingTimeoutLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800976 }
977 }
978
979 /**
980 * This method will return true if the activity is either visible, is becoming visible, is
981 * currently pausing, or is resumed.
982 */
983 public boolean isInterestingToUserLocked() {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700984 return visible || nowVisible || state == ActivityState.PAUSING ||
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 state == ActivityState.RESUMED;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800986 }
987
988 public void setSleeping(boolean _sleeping) {
989 if (sleeping == _sleeping) {
990 return;
991 }
992 if (app != null && app.thread != null) {
993 try {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800994 app.thread.scheduleSleeping(appToken, _sleeping);
Craig Mautner0eea92c2013-05-16 13:35:39 -0700995 if (_sleeping && !mStackSupervisor.mGoingToSleepActivities.contains(this)) {
996 mStackSupervisor.mGoingToSleepActivities.add(this);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800997 }
998 sleeping = _sleeping;
999 } catch (RemoteException e) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001000 Slog.w(TAG, "Exception thrown when sleeping: " + intent.getComponent(), e);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001001 }
1002 }
1003 }
Craig Mautnerf81b90872013-02-26 13:02:43 -08001004
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001005 static void activityResumedLocked(IBinder token) {
1006 final ActivityRecord r = ActivityRecord.forToken(token);
1007 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Resumed activity; dropping state of: " + r);
1008 r.icicle = null;
1009 r.haveState = false;
1010 }
1011
Craig Mautnerd2328952013-03-05 12:46:26 -08001012 static int getTaskForActivityLocked(IBinder token, boolean onlyRoot) {
1013 final ActivityRecord r = ActivityRecord.forToken(token);
1014 if (r == null) {
1015 return -1;
1016 }
1017 final TaskRecord task = r.task;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001018 final int activityNdx = task.mActivities.indexOf(r);
1019 if (activityNdx < 0 || (onlyRoot && activityNdx > task.findEffectiveRootIndex())) {
1020 return -1;
Craig Mautnerd2328952013-03-05 12:46:26 -08001021 }
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001022 return task.taskId;
Craig Mautnerd2328952013-03-05 12:46:26 -08001023 }
1024
1025 static ActivityRecord isInStackLocked(IBinder token) {
1026 final ActivityRecord r = ActivityRecord.forToken(token);
1027 if (r != null) {
1028 return r.task.stack.isInStackLocked(token);
1029 }
1030 return null;
1031 }
1032
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001033 static ActivityStack getStackLocked(IBinder token) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001034 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1035 if (r != null) {
1036 return r.task.stack;
1037 }
1038 return null;
1039 }
1040
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001041 private static String createImageFilename(ActivityRecord r) {
1042 return String.valueOf(r.task.taskId) + ACTIVITY_ICON_SUFFIX + r.createTime +
1043 TaskPersister.IMAGE_EXTENSION;
1044 }
1045
Craig Mautner21d24a22014-04-23 11:45:37 -07001046 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
1047 out.attribute(null, ATTR_ID, String.valueOf(createTime));
1048 out.attribute(null, ATTR_LAUNCHEDFROMUID, String.valueOf(launchedFromUid));
1049 if (launchedFromPackage != null) {
1050 out.attribute(null, ATTR_LAUNCHEDFROMPACKAGE, launchedFromPackage);
1051 }
1052 if (resolvedType != null) {
1053 out.attribute(null, ATTR_RESOLVEDTYPE, resolvedType);
1054 }
1055 out.attribute(null, ATTR_COMPONENTSPECIFIED, String.valueOf(componentSpecified));
1056 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Winson Chung2cb86c72014-06-25 12:03:30 -07001057
Craig Mautner21d24a22014-04-23 11:45:37 -07001058 if (taskDescription != null) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001059 task.saveTaskDescription(taskDescription, createImageFilename(this), out);
Craig Mautner21d24a22014-04-23 11:45:37 -07001060 }
1061
1062 out.startTag(null, TAG_INTENT);
1063 intent.saveToXml(out);
1064 out.endTag(null, TAG_INTENT);
1065
1066 if (isPersistable() && persistentState != null) {
1067 out.startTag(null, TAG_PERSISTABLEBUNDLE);
1068 persistentState.saveToXml(out);
1069 out.endTag(null, TAG_PERSISTABLEBUNDLE);
1070 }
1071 }
1072
1073 static ActivityRecord restoreFromXml(XmlPullParser in, int taskId,
1074 ActivityStackSupervisor stackSupervisor) throws IOException, XmlPullParserException {
1075 Intent intent = null;
1076 PersistableBundle persistentState = null;
1077 int launchedFromUid = 0;
1078 String launchedFromPackage = null;
1079 String resolvedType = null;
1080 boolean componentSpecified = false;
1081 int userId = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07001082 long createTime = -1;
1083 final int outerDepth = in.getDepth();
Winson Chung2cb86c72014-06-25 12:03:30 -07001084 TaskDescription taskDescription = new TaskDescription();
Craig Mautner21d24a22014-04-23 11:45:37 -07001085
1086 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1087 final String attrName = in.getAttributeName(attrNdx);
1088 final String attrValue = in.getAttributeValue(attrNdx);
1089 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "ActivityRecord: attribute name=" +
1090 attrName + " value=" + attrValue);
1091 if (ATTR_ID.equals(attrName)) {
1092 createTime = Long.valueOf(attrValue);
1093 } else if (ATTR_LAUNCHEDFROMUID.equals(attrName)) {
1094 launchedFromUid = Integer.valueOf(attrValue);
1095 } else if (ATTR_LAUNCHEDFROMPACKAGE.equals(attrName)) {
1096 launchedFromPackage = attrValue;
1097 } else if (ATTR_RESOLVEDTYPE.equals(attrName)) {
1098 resolvedType = attrValue;
1099 } else if (ATTR_COMPONENTSPECIFIED.equals(attrName)) {
1100 componentSpecified = Boolean.valueOf(attrValue);
1101 } else if (ATTR_USERID.equals(attrName)) {
1102 userId = Integer.valueOf(attrValue);
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001103 } else if (TaskRecord.readTaskDescriptionAttribute(taskDescription, attrName,
Winson Chung2cb86c72014-06-25 12:03:30 -07001104 attrValue)) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001105 // Completed in TaskRecord.readTaskDescriptionAttribute()
Craig Mautner21d24a22014-04-23 11:45:37 -07001106 } else {
1107 Log.d(TAG, "Unknown ActivityRecord attribute=" + attrName);
1108 }
1109 }
1110
1111 int event;
1112 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
1113 (event != XmlPullParser.END_TAG || in.getDepth() < outerDepth)) {
1114 if (event == XmlPullParser.START_TAG) {
1115 final String name = in.getName();
1116 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
1117 "ActivityRecord: START_TAG name=" + name);
1118 if (TAG_INTENT.equals(name)) {
1119 intent = Intent.restoreFromXml(in);
1120 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
1121 "ActivityRecord: intent=" + intent);
1122 } else if (TAG_PERSISTABLEBUNDLE.equals(name)) {
1123 persistentState = PersistableBundle.restoreFromXml(in);
1124 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
1125 "ActivityRecord: persistentState=" + persistentState);
1126 } else {
1127 Slog.w(TAG, "restoreActivity: unexpected name=" + name);
1128 XmlUtils.skipCurrentTag(in);
1129 }
1130 }
1131 }
1132
1133 if (intent == null) {
Craig Mautnere0129b32014-05-25 16:41:09 -07001134 throw new XmlPullParserException("restoreActivity error intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07001135 }
1136
1137 final ActivityManagerService service = stackSupervisor.mService;
1138 final ActivityInfo aInfo = stackSupervisor.resolveActivity(intent, resolvedType, 0, null,
1139 null, userId);
Craig Mautnere0129b32014-05-25 16:41:09 -07001140 if (aInfo == null) {
Craig Mautner77b04262014-06-27 15:22:12 -07001141 throw new XmlPullParserException("restoreActivity resolver error. Intent=" + intent +
1142 " resolvedType=" + resolvedType);
Craig Mautnere0129b32014-05-25 16:41:09 -07001143 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001144 final ActivityRecord r = new ActivityRecord(service, /*caller*/null, launchedFromUid,
1145 launchedFromPackage, intent, resolvedType, aInfo, service.getConfiguration(),
1146 null, null, 0, componentSpecified, stackSupervisor, null, null);
1147
1148 r.persistentState = persistentState;
1149
Craig Mautner21d24a22014-04-23 11:45:37 -07001150 if (createTime >= 0) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001151 taskDescription.setIcon(TaskPersister.restoreImage(createImageFilename(r)));
Craig Mautner21d24a22014-04-23 11:45:37 -07001152 }
Winson Chung2cb86c72014-06-25 12:03:30 -07001153 r.taskDescription = taskDescription;
Craig Mautner21d24a22014-04-23 11:45:37 -07001154 r.createTime = createTime;
1155
1156 return r;
1157 }
1158
1159 private static String activityTypeToString(int type) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001160 switch (type) {
1161 case APPLICATION_ACTIVITY_TYPE: return "APPLICATION_ACTIVITY_TYPE";
1162 case HOME_ACTIVITY_TYPE: return "HOME_ACTIVITY_TYPE";
1163 case RECENTS_ACTIVITY_TYPE: return "RECENTS_ACTIVITY_TYPE";
1164 default: return Integer.toString(type);
1165 }
1166 }
1167
Craig Mautnerf81b90872013-02-26 13:02:43 -08001168 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001169 public String toString() {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001170 if (stringName != null) {
Craig Mautnerf3333272013-04-22 10:55:53 -07001171 return stringName + " t" + (task == null ? -1 : task.taskId) +
1172 (finishing ? " f}" : "}");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001173 }
1174 StringBuilder sb = new StringBuilder(128);
Dianne Hackborn30d71892010-12-11 10:37:55 -08001175 sb.append("ActivityRecord{");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001176 sb.append(Integer.toHexString(System.identityHashCode(this)));
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001177 sb.append(" u");
1178 sb.append(userId);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001179 sb.append(' ');
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001180 sb.append(intent.getComponent().flattenToShortString());
Craig Mautnerf81b90872013-02-26 13:02:43 -08001181 stringName = sb.toString();
1182 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001183 }
1184}