blob: 198273e8fd8009147c6153f82e45717205b869b6 [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 Mautner21d24a22014-04-23 11:45:37 -070019import android.app.ActivityManager.TaskDescription;
Craig Mautnera0026042014-04-23 11:45:37 -070020import android.os.PersistableBundle;
Dianne Hackborn2286cdc2013-07-01 19:10:06 -070021import android.os.Trace;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070022
Dianne Hackborn2d69d492012-04-06 16:24:14 -070023import com.android.internal.app.ResolverActivity;
Craig Mautner21d24a22014-04-23 11:45:37 -070024import com.android.internal.util.XmlUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080025import com.android.server.AttributeCache;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070026import com.android.server.am.ActivityStack.ActivityState;
Craig Mautner4a1cb222013-12-04 16:14:06 -080027import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028
Dianne Hackborn7a2195c2012-03-19 17:38:00 -070029import android.app.ActivityOptions;
Craig Mautner05d6272ba2013-02-11 09:39:27 -080030import android.app.ResultInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080031import android.content.ComponentName;
32import android.content.Intent;
33import android.content.pm.ActivityInfo;
34import android.content.pm.ApplicationInfo;
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -070035import android.content.res.CompatibilityInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080036import android.content.res.Configuration;
37import android.graphics.Bitmap;
Dianne Hackbornd367ca82012-05-07 15:49:39 -070038import android.graphics.Rect;
Dianne Hackborn247fe742011-01-08 17:25:57 -080039import android.os.Build;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040import android.os.Bundle;
Dianne Hackbornbe707852011-11-11 14:32:10 -080041import android.os.IBinder;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042import android.os.Message;
43import android.os.Process;
Dianne Hackborn39792d22010-08-19 18:01:52 -070044import android.os.RemoteException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045import android.os.SystemClock;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -070046import android.os.UserHandle;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080047import android.util.EventLog;
48import android.util.Log;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -070049import android.util.Slog;
Dianne Hackborn0dad3642010-09-09 21:25:35 -070050import android.util.TimeUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051import android.view.IApplicationToken;
Dianne Hackborn7eec10e2010-11-12 18:03:47 -080052import android.view.WindowManager;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070053
Craig Mautner21d24a22014-04-23 11:45:37 -070054import org.xmlpull.v1.XmlPullParser;
55import org.xmlpull.v1.XmlPullParserException;
56import org.xmlpull.v1.XmlSerializer;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057
Craig Mautner21d24a22014-04-23 11:45:37 -070058import java.io.IOException;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080059import java.io.PrintWriter;
60import java.lang.ref.WeakReference;
61import java.util.ArrayList;
62import java.util.HashSet;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070063import java.util.Objects;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080064
65/**
66 * An entry in the history stack, representing an activity.
67 */
Dianne Hackbornbe707852011-11-11 14:32:10 -080068final class ActivityRecord {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -070069 static final String TAG = ActivityManagerService.TAG;
70 static final boolean DEBUG_SAVED_STATE = ActivityStackSupervisor.DEBUG_SAVED_STATE;
Craig Mautner80259352013-09-28 12:35:25 -070071 final public static String RECENTS_PACKAGE_NAME = "com.android.systemui.recent";
Craig Mautnerb59dcfd2013-05-06 13:12:58 -070072
Craig Mautner21d24a22014-04-23 11:45:37 -070073 private static final String TAG_ACTIVITY = "activity";
74 private static final String ATTR_ID = "id";
75 private static final String TAG_INTENT = "intent";
76 private static final String ATTR_USERID = "user_id";
77 private static final String TAG_PERSISTABLEBUNDLE = "persistable_bundle";
78 private static final String ATTR_LAUNCHEDFROMUID = "launched_from_uid";
79 private static final String ATTR_LAUNCHEDFROMPACKAGE = "launched_from_package";
80 private static final String ATTR_RESOLVEDTYPE = "resolved_type";
81 private static final String ATTR_COMPONENTSPECIFIED = "component_specified";
Dianne Hackborn337abb32014-09-24 12:44:29 -070082 static final String ACTIVITY_ICON_SUFFIX = "_activity_icon_";
Craig Mautner21d24a22014-04-23 11:45:37 -070083
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084 final ActivityManagerService service; // owner
Dianne Hackbornbe707852011-11-11 14:32:10 -080085 final IApplicationToken.Stub appToken; // window manager token
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086 final ActivityInfo info; // all about me
Jeff Sharkey8a4c9722014-06-16 13:48:42 -070087 final ApplicationInfo appInfo; // information about activity's app
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080088 final int launchedFromUid; // always the uid who started the activity.
Dianne Hackbornf265ea92013-01-31 15:00:51 -080089 final String launchedFromPackage; // always the package who started the activity.
Amith Yamasani742a6712011-05-04 14:49:28 -070090 final int userId; // Which user is this running for?
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091 final Intent intent; // the original intent that generated us
92 final ComponentName realActivity; // the intent component, or target of an alias.
93 final String shortComponentName; // the short component name of the intent
94 final String resolvedType; // as per original caller;
95 final String packageName; // the package implementing intent's component
96 final String processName; // process where this component wants to run
97 final String taskAffinity; // as per ActivityInfo.taskAffinity
98 final boolean stateNotNeeded; // As per ActivityInfo.flags
Craig Mautner4addfc52013-06-25 08:05:45 -070099 boolean fullscreen; // covers the full screen?
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800100 final boolean noDisplay; // activity is not displayed?
The Android Open Source Project4df24232009-03-05 14:34:35 -0800101 final boolean componentSpecified; // did caller specifiy an explicit component?
Craig Mautner86d67a42013-05-14 10:34:38 -0700102
103 static final int APPLICATION_ACTIVITY_TYPE = 0;
104 static final int HOME_ACTIVITY_TYPE = 1;
105 static final int RECENTS_ACTIVITY_TYPE = 2;
Craig Mautner2c1faed2013-07-23 12:56:02 -0700106 int mActivityType;
Craig Mautner86d67a42013-05-14 10:34:38 -0700107
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800108 CharSequence nonLocalizedLabel; // the label information from the package mgr.
109 int labelRes; // the label information from the package mgr.
110 int icon; // resource identifier of activity's icon.
Adam Powell04fe6eb2013-05-31 14:39:48 -0700111 int logo; // resource identifier of activity's logo.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800112 int theme; // resource identifier of activity's theme.
Dianne Hackborn247fe742011-01-08 17:25:57 -0800113 int realTheme; // actual theme resource we will use, never 0.
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800114 int windowFlags; // custom window flags for preview window.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800115 TaskRecord task; // the task this is in.
Craig Mautner21d24a22014-04-23 11:45:37 -0700116 long createTime = System.currentTimeMillis();
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700117 long displayStartTime; // when we started launching this activity
118 long fullyDrawnStartTime; // when we started launching this activity
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700119 long startTime; // last time this activity was started
Dianne Hackborn50685602011-12-01 12:23:37 -0800120 long lastVisibleTime; // last time this activity became visible
Amith Yamasanieaeb6632009-06-03 15:16:10 -0700121 long cpuTimeAtResume; // the cpu time of host process at the time of resuming activity
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700122 long pauseTime; // last time we started pausing the activity
123 long launchTickTime; // base time for launch tick messages
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800124 Configuration configuration; // configuration activity was last running in
Dianne Hackborn8ea5e1d2011-05-27 16:45:31 -0700125 CompatibilityInfo compat;// last used compatibility mode
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700126 ActivityRecord resultTo; // who started this entry, so will get our reply
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 final String resultWho; // additional identifier for use by resultTo.
128 final int requestCode; // code given by requester (resultTo)
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800129 ArrayList<ResultInfo> results; // pending ActivityResult objs we have received
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 HashSet<WeakReference<PendingIntentRecord>> pendingResults; // all pending intents for this act
Craig Mautner05d6272ba2013-02-11 09:39:27 -0800131 ArrayList<Intent> newIntents; // any pending new intents for single-top mode
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700132 ActivityOptions pendingOptions; // most recently given options
George Mount6ba042b2014-07-28 11:12:28 -0700133 ActivityOptions returningOptions; // options that are coming back via convertToTranslucent
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 Mautnerbb742462014-07-07 15:28:55 -0700171 boolean mLaunchTaskBehind; // this activity is actively being launched with
172 // ActivityOptions.setLaunchTaskBehind, will be cleared once launch is completed.
Craig Mautner2fbd7542014-03-21 09:34:07 -0700173
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800174 void dump(PrintWriter pw, String prefix) {
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700175 final long now = SystemClock.uptimeMillis();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700176 pw.print(prefix); pw.print("packageName="); pw.print(packageName);
177 pw.print(" processName="); pw.println(processName);
178 pw.print(prefix); pw.print("launchedFromUid="); pw.print(launchedFromUid);
Craig Mautnere11f2b72013-04-01 12:37:17 -0700179 pw.print(" launchedFromPackage="); pw.print(launchedFromPackage);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800180 pw.print(" userId="); pw.println(userId);
181 pw.print(prefix); pw.print("app="); pw.println(app);
182 pw.print(prefix); pw.println(intent.toInsecureStringWithClip());
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700183 pw.print(prefix); pw.print("frontOfTask="); pw.print(frontOfTask);
184 pw.print(" task="); pw.println(task);
185 pw.print(prefix); pw.print("taskAffinity="); pw.println(taskAffinity);
Dianne Hackborn1d442e02009-04-20 18:14:05 -0700186 pw.print(prefix); pw.print("realActivity=");
187 pw.println(realActivity.flattenToShortString());
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700188 if (appInfo != null) {
189 pw.print(prefix); pw.print("baseDir="); pw.println(appInfo.sourceDir);
190 if (!Objects.equals(appInfo.sourceDir, appInfo.publicSourceDir)) {
191 pw.print(prefix); pw.print("resDir="); pw.println(appInfo.publicSourceDir);
192 }
193 pw.print(prefix); pw.print("dataDir="); pw.println(appInfo.dataDir);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800194 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700195 pw.print(prefix); pw.print("stateNotNeeded="); pw.print(stateNotNeeded);
196 pw.print(" componentSpecified="); pw.print(componentSpecified);
Craig Mautner86d67a42013-05-14 10:34:38 -0700197 pw.print(" mActivityType="); pw.println(mActivityType);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800198 pw.print(prefix); pw.print("compat="); pw.print(compat);
199 pw.print(" labelRes=0x"); pw.print(Integer.toHexString(labelRes));
200 pw.print(" icon=0x"); pw.print(Integer.toHexString(icon));
201 pw.print(" theme=0x"); pw.println(Integer.toHexString(theme));
Dianne Hackborne17aeb32011-04-07 15:11:57 -0700202 pw.print(prefix); pw.print("config="); pw.println(configuration);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700203 if (resultTo != null || resultWho != null) {
204 pw.print(prefix); pw.print("resultTo="); pw.print(resultTo);
205 pw.print(" resultWho="); pw.print(resultWho);
206 pw.print(" resultCode="); pw.println(requestCode);
207 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700208 final String iconFilename = taskDescription.getIconFilename();
209 if (iconFilename != null || taskDescription.getLabel() != null ||
Craig Mautneree2e45a2014-06-27 12:10:03 -0700210 taskDescription.getPrimaryColor() != 0) {
211 pw.print(prefix); pw.print("taskDescription:");
Craig Mautner648f69b2014-09-18 14:16:26 -0700212 pw.print(" iconFilename="); pw.print(taskDescription.getIconFilename());
Craig Mautneree2e45a2014-06-27 12:10:03 -0700213 pw.print(" label=\""); pw.print(taskDescription.getLabel()); pw.print("\"");
214 pw.print(" color=");
215 pw.println(Integer.toHexString(taskDescription.getPrimaryColor()));
216 }
Craig Mautner648f69b2014-09-18 14:16:26 -0700217 if (iconFilename == null && taskDescription.getIcon() != null) {
218 pw.print(prefix); pw.println("taskDescription contains Bitmap");
219 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700220 if (results != null) {
221 pw.print(prefix); pw.print("results="); pw.println(results);
222 }
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700223 if (pendingResults != null && pendingResults.size() > 0) {
224 pw.print(prefix); pw.println("Pending Results:");
225 for (WeakReference<PendingIntentRecord> wpir : pendingResults) {
226 PendingIntentRecord pir = wpir != null ? wpir.get() : null;
227 pw.print(prefix); pw.print(" - ");
228 if (pir == null) {
229 pw.println("null");
230 } else {
231 pw.println(pir);
232 pir.dump(pw, prefix + " ");
233 }
234 }
235 }
236 if (newIntents != null && newIntents.size() > 0) {
237 pw.print(prefix); pw.println("Pending New Intents:");
238 for (int i=0; i<newIntents.size(); i++) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800239 Intent intent = newIntents.get(i);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700240 pw.print(prefix); pw.print(" - ");
241 if (intent == null) {
242 pw.println("null");
243 } else {
244 pw.println(intent.toShortString(false, true, false, true));
245 }
246 }
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700247 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700248 if (pendingOptions != null) {
249 pw.print(prefix); pw.print("pendingOptions="); pw.println(pendingOptions);
250 }
Dianne Hackborn7e269642010-08-25 19:50:20 -0700251 if (uriPermissions != null) {
Jeff Sharkey846318a2014-04-04 12:12:41 -0700252 uriPermissions.dump(pw, prefix);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700253 }
254 pw.print(prefix); pw.print("launchFailed="); pw.print(launchFailed);
Dianne Hackborn07981492013-01-28 11:36:23 -0800255 pw.print(" launchCount="); pw.print(launchCount);
256 pw.print(" lastLaunchTime=");
257 if (lastLaunchTime == 0) pw.print("0");
258 else TimeUtils.formatDuration(lastLaunchTime, now, pw);
259 pw.println();
Dianne Hackborncfc837f2013-06-27 18:32:07 -0700260 pw.print(prefix); pw.print("haveState="); pw.print(haveState);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700261 pw.print(" icicle="); pw.println(icicle);
262 pw.print(prefix); pw.print("state="); pw.print(state);
263 pw.print(" stopped="); pw.print(stopped);
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700264 pw.print(" delayedResume="); pw.print(delayedResume);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700265 pw.print(" finishing="); pw.println(finishing);
266 pw.print(prefix); pw.print("keysPaused="); pw.print(keysPaused);
267 pw.print(" inHistory="); pw.print(inHistory);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700268 pw.print(" visible="); pw.print(visible);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800269 pw.print(" sleeping="); pw.print(sleeping);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700270 pw.print(" idle="); pw.println(idle);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800271 pw.print(prefix); pw.print("fullscreen="); pw.print(fullscreen);
272 pw.print(" noDisplay="); pw.print(noDisplay);
273 pw.print(" immersive="); pw.print(immersive);
274 pw.print(" launchMode="); pw.println(launchMode);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -0800275 pw.print(prefix); pw.print("frozenBeforeDestroy="); pw.print(frozenBeforeDestroy);
Dianne Hackborne2515ee2011-04-27 18:52:56 -0400276 pw.print(" forceNewConfig="); pw.println(forceNewConfig);
Craig Mautnerae7ecab2013-09-18 11:48:14 -0700277 pw.print(prefix); pw.print("mActivityType=");
278 pw.println(activityTypeToString(mActivityType));
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700279 if (displayStartTime != 0 || startTime != 0) {
280 pw.print(prefix); pw.print("displayStartTime=");
281 if (displayStartTime == 0) pw.print("0");
282 else TimeUtils.formatDuration(displayStartTime, now, pw);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700283 pw.print(" startTime=");
284 if (startTime == 0) pw.print("0");
285 else TimeUtils.formatDuration(startTime, now, pw);
286 pw.println();
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700287 }
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800288 if (lastVisibleTime != 0 || waitingVisible || nowVisible) {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700289 pw.print(prefix); pw.print("waitingVisible="); pw.print(waitingVisible);
Dianne Hackborn21c241e2012-03-08 13:57:23 -0800290 pw.print(" nowVisible="); pw.print(nowVisible);
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700291 pw.print(" lastVisibleTime=");
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700292 if (lastVisibleTime == 0) pw.print("0");
293 else TimeUtils.formatDuration(lastVisibleTime, now, pw);
294 pw.println();
Dianne Hackbornf210d6b2009-04-13 18:42:49 -0700295 }
296 if (configDestroy || configChangeFlags != 0) {
297 pw.print(prefix); pw.print("configDestroy="); pw.print(configDestroy);
298 pw.print(" configChangeFlags=");
299 pw.println(Integer.toHexString(configChangeFlags));
300 }
301 if (connections != null) {
302 pw.print(prefix); pw.print("connections="); pw.println(connections);
303 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800304 }
305
Dianne Hackbornbe707852011-11-11 14:32:10 -0800306 static class Token extends IApplicationToken.Stub {
307 final WeakReference<ActivityRecord> weakActivity;
308
309 Token(ActivityRecord activity) {
310 weakActivity = new WeakReference<ActivityRecord>(activity);
311 }
312
Craig Mautnerde4ef022013-04-07 19:01:33 -0700313 @Override public void windowsDrawn() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800314 ActivityRecord activity = weakActivity.get();
315 if (activity != null) {
316 activity.windowsDrawn();
317 }
318 }
319
Craig Mautnerde4ef022013-04-07 19:01:33 -0700320 @Override public void windowsVisible() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800321 ActivityRecord activity = weakActivity.get();
322 if (activity != null) {
323 activity.windowsVisible();
324 }
325 }
326
Craig Mautnerde4ef022013-04-07 19:01:33 -0700327 @Override public void windowsGone() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800328 ActivityRecord activity = weakActivity.get();
329 if (activity != null) {
330 activity.windowsGone();
331 }
332 }
333
Jeff Brownbd181bb2013-09-10 16:44:24 -0700334 @Override public boolean keyDispatchingTimedOut(String reason) {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800335 ActivityRecord activity = weakActivity.get();
Jeff Brownbd181bb2013-09-10 16:44:24 -0700336 return activity != null && activity.keyDispatchingTimedOut(reason);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800337 }
338
Craig Mautnerde4ef022013-04-07 19:01:33 -0700339 @Override public long getKeyDispatchingTimeout() {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800340 ActivityRecord activity = weakActivity.get();
341 if (activity != null) {
342 return activity.getKeyDispatchingTimeout();
343 }
344 return 0;
345 }
346
Craig Mautnerde4ef022013-04-07 19:01:33 -0700347 @Override
Dianne Hackbornbe707852011-11-11 14:32:10 -0800348 public String toString() {
349 StringBuilder sb = new StringBuilder(128);
350 sb.append("Token{");
351 sb.append(Integer.toHexString(System.identityHashCode(this)));
352 sb.append(' ');
353 sb.append(weakActivity.get());
354 sb.append('}');
355 return sb.toString();
356 }
357 }
358
359 static ActivityRecord forToken(IBinder token) {
360 try {
361 return token != null ? ((Token)token).weakActivity.get() : null;
362 } catch (ClassCastException e) {
363 Slog.w(ActivityManagerService.TAG, "Bad activity token: " + token, e);
364 return null;
365 }
366 }
367
Craig Mautnerac6f8432013-07-17 13:24:59 -0700368 boolean isNotResolverActivity() {
369 return !ResolverActivity.class.getName().equals(realActivity.getClassName());
370 }
371
Craig Mautnerd2328952013-03-05 12:46:26 -0800372 ActivityRecord(ActivityManagerService _service, ProcessRecord _caller,
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800373 int _launchedFromUid, String _launchedFromPackage, Intent _intent, String _resolvedType,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800374 ActivityInfo aInfo, Configuration _configuration,
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700375 ActivityRecord _resultTo, String _resultWho, int _reqCode,
Craig Mautnere0a38842013-12-16 16:14:02 -0800376 boolean _componentSpecified, ActivityStackSupervisor supervisor,
Craig Mautner233ceee2014-05-09 17:05:11 -0700377 ActivityContainer container, Bundle options) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800378 service = _service;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800379 appToken = new Token(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380 info = aInfo;
381 launchedFromUid = _launchedFromUid;
Dianne Hackbornf265ea92013-01-31 15:00:51 -0800382 launchedFromPackage = _launchedFromPackage;
Dianne Hackbornf02b60a2012-08-16 10:48:27 -0700383 userId = UserHandle.getUserId(aInfo.applicationInfo.uid);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800384 intent = _intent;
385 shortComponentName = _intent.getComponent().flattenToShortString();
386 resolvedType = _resolvedType;
The Android Open Source Project4df24232009-03-05 14:34:35 -0800387 componentSpecified = _componentSpecified;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800388 configuration = _configuration;
389 resultTo = _resultTo;
390 resultWho = _resultWho;
391 requestCode = _reqCode;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700392 state = ActivityState.INITIALIZING;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800393 frontOfTask = false;
394 launchFailed = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800395 stopped = false;
Dianne Hackborn95fc68f2009-05-19 18:37:45 -0700396 delayedResume = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800397 finishing = false;
398 configDestroy = false;
399 keysPaused = false;
400 inHistory = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800401 visible = true;
402 waitingVisible = false;
403 nowVisible = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800404 idle = false;
405 hasBeenLaunched = false;
Craig Mautnerde4ef022013-04-07 19:01:33 -0700406 mStackSupervisor = supervisor;
Craig Mautnere0a38842013-12-16 16:14:02 -0800407 mInitialActivityContainer = container;
Craig Mautner233ceee2014-05-09 17:05:11 -0700408 if (options != null) {
409 pendingOptions = new ActivityOptions(options);
Craig Mautnerbb742462014-07-07 15:28:55 -0700410 mLaunchTaskBehind = pendingOptions.getLaunchTaskBehind();
Craig Mautner233ceee2014-05-09 17:05:11 -0700411 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800412
Dianne Hackborn2d1b3782012-09-09 17:49:39 -0700413 // This starts out true, since the initial state of an activity
414 // is that we have everything, and we shouldn't never consider it
415 // lacking in state to be removed if it dies.
416 haveState = true;
417
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800418 if (aInfo != null) {
419 if (aInfo.targetActivity == null
420 || aInfo.launchMode == ActivityInfo.LAUNCH_MULTIPLE
421 || aInfo.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
422 realActivity = _intent.getComponent();
423 } else {
424 realActivity = new ComponentName(aInfo.packageName,
425 aInfo.targetActivity);
426 }
427 taskAffinity = aInfo.taskAffinity;
428 stateNotNeeded = (aInfo.flags&
429 ActivityInfo.FLAG_STATE_NOT_NEEDED) != 0;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700430 appInfo = aInfo.applicationInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800431 nonLocalizedLabel = aInfo.nonLocalizedLabel;
432 labelRes = aInfo.labelRes;
433 if (nonLocalizedLabel == null && labelRes == 0) {
434 ApplicationInfo app = aInfo.applicationInfo;
435 nonLocalizedLabel = app.nonLocalizedLabel;
436 labelRes = app.labelRes;
437 }
438 icon = aInfo.getIconResource();
Adam Powell04fe6eb2013-05-31 14:39:48 -0700439 logo = aInfo.getLogoResource();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800440 theme = aInfo.getThemeResource();
Dianne Hackborn247fe742011-01-08 17:25:57 -0800441 realTheme = theme;
442 if (realTheme == 0) {
443 realTheme = aInfo.applicationInfo.targetSdkVersion
444 < Build.VERSION_CODES.HONEYCOMB
445 ? android.R.style.Theme
446 : android.R.style.Theme_Holo;
447 }
Dianne Hackborn7eec10e2010-11-12 18:03:47 -0800448 if ((aInfo.flags&ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0) {
449 windowFlags |= WindowManager.LayoutParams.FLAG_HARDWARE_ACCELERATED;
450 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800451 if ((aInfo.flags&ActivityInfo.FLAG_MULTIPROCESS) != 0
452 && _caller != null
453 && (aInfo.applicationInfo.uid == Process.SYSTEM_UID
454 || aInfo.applicationInfo.uid == _caller.info.uid)) {
455 processName = _caller.processName;
456 } else {
457 processName = aInfo.processName;
458 }
459
460 if (intent != null && (aInfo.flags & ActivityInfo.FLAG_EXCLUDE_FROM_RECENTS) != 0) {
461 intent.addFlags(Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
462 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700463
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800464 packageName = aInfo.applicationInfo.packageName;
465 launchMode = aInfo.launchMode;
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700466
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800467 AttributeCache.Entry ent = AttributeCache.instance().get(packageName,
Amith Yamasani4befbec2013-07-10 16:18:01 -0700468 realTheme, com.android.internal.R.styleable.Window, userId);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800469 fullscreen = ent != null && !ent.array.getBoolean(
470 com.android.internal.R.styleable.Window_windowIsFloating, false)
471 && !ent.array.getBoolean(
472 com.android.internal.R.styleable.Window_windowIsTranslucent, false);
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800473 noDisplay = ent != null && ent.array.getBoolean(
474 com.android.internal.R.styleable.Window_windowNoDisplay, false);
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700475
Craig Mautner80259352013-09-28 12:35:25 -0700476 if ((!_componentSpecified || _launchedFromUid == Process.myUid()
Craig Mautner86d67a42013-05-14 10:34:38 -0700477 || _launchedFromUid == 0) &&
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700478 Intent.ACTION_MAIN.equals(_intent.getAction()) &&
479 _intent.hasCategory(Intent.CATEGORY_HOME) &&
480 _intent.getCategories().size() == 1 &&
481 _intent.getData() == null &&
482 _intent.getType() == null &&
Craig Mautner80259352013-09-28 12:35:25 -0700483 (intent.getFlags()&Intent.FLAG_ACTIVITY_NEW_TASK) != 0 &&
484 isNotResolverActivity()) {
Craig Mautner86d67a42013-05-14 10:34:38 -0700485 // This sure looks like a home activity!
486 mActivityType = HOME_ACTIVITY_TYPE;
Craig Mautner80259352013-09-28 12:35:25 -0700487 } else if (realActivity.getClassName().contains(RECENTS_PACKAGE_NAME)) {
Craig Mautner86d67a42013-05-14 10:34:38 -0700488 mActivityType = RECENTS_ACTIVITY_TYPE;
489 } else {
490 mActivityType = APPLICATION_ACTIVITY_TYPE;
491 }
Daniel Sandler69a48172010-06-23 16:29:36 -0400492
493 immersive = (aInfo.flags & ActivityInfo.FLAG_IMMERSIVE) != 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 } else {
495 realActivity = null;
496 taskAffinity = null;
497 stateNotNeeded = false;
Jeff Sharkey8a4c9722014-06-16 13:48:42 -0700498 appInfo = null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800499 processName = null;
500 packageName = null;
501 fullscreen = true;
Dianne Hackbornff801ec2011-01-22 18:05:38 -0800502 noDisplay = false;
Craig Mautner86d67a42013-05-14 10:34:38 -0700503 mActivityType = APPLICATION_ACTIVITY_TYPE;
Daniel Sandler69a48172010-06-23 16:29:36 -0400504 immersive = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800505 }
506 }
507
Craig Mautnera228ae92014-07-09 05:44:55 -0700508 void setTask(TaskRecord newTask, TaskRecord taskToAffiliateWith) {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700509 if (task != null && task.removeActivity(this)) {
Craig Mautner19d9bd52013-10-21 20:05:26 -0700510 if (task != newTask) {
Craig Mautner41db4a72014-05-07 17:20:56 -0700511 task.stack.removeTask(task);
Craig Mautner19d9bd52013-10-21 20:05:26 -0700512 } else {
513 Slog.d(TAG, "!!! REMOVE THIS LOG !!! setTask: nearly removed stack=" +
514 (newTask == null ? null : newTask.stack));
515 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700516 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700517 task = newTask;
Craig Mautnera228ae92014-07-09 05:44:55 -0700518 setTaskToAffiliateWith(taskToAffiliateWith);
519 }
520
521 void setTaskToAffiliateWith(TaskRecord taskToAffiliateWith) {
522 if (taskToAffiliateWith != null &&
523 launchMode != ActivityInfo.LAUNCH_SINGLE_INSTANCE &&
524 launchMode != ActivityInfo.LAUNCH_SINGLE_TASK) {
525 task.setTaskToAffiliateWith(taskToAffiliateWith);
526 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700527 }
528
Craig Mautner5eda9b32013-07-02 11:58:16 -0700529 boolean changeWindowTranslucency(boolean toOpaque) {
530 if (fullscreen == toOpaque) {
531 return false;
532 }
Craig Mautner4addfc52013-06-25 08:05:45 -0700533
Craig Mautner5eda9b32013-07-02 11:58:16 -0700534 // Keep track of the number of fullscreen activities in this task.
535 task.numFullscreen += toOpaque ? +1 : -1;
536
537 fullscreen = toOpaque;
538 return true;
Craig Mautner4addfc52013-06-25 08:05:45 -0700539 }
540
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700541 void putInHistory() {
542 if (!inHistory) {
543 inHistory = true;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700544 }
545 }
546
547 void takeFromHistory() {
548 if (inHistory) {
549 inHistory = false;
550 if (task != null && !finishing) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800551 task = null;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700552 }
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700553 clearOptionsLocked();
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700554 }
555 }
556
557 boolean isInHistory() {
558 return inHistory;
559 }
560
Craig Mautner86d67a42013-05-14 10:34:38 -0700561 boolean isHomeActivity() {
562 return mActivityType == HOME_ACTIVITY_TYPE;
563 }
564
565 boolean isRecentsActivity() {
566 return mActivityType == RECENTS_ACTIVITY_TYPE;
567 }
568
569 boolean isApplicationActivity() {
570 return mActivityType == APPLICATION_ACTIVITY_TYPE;
571 }
572
Craig Mautner21d24a22014-04-23 11:45:37 -0700573 boolean isPersistable() {
Craig Mautner43e52ed2014-06-16 17:18:52 -0700574 return (info.persistableMode == ActivityInfo.PERSIST_ROOT_ONLY ||
575 info.persistableMode == ActivityInfo.PERSIST_ACROSS_REBOOTS) &&
576 (intent == null ||
577 (intent.getFlags() & Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS) == 0);
Craig Mautner21d24a22014-04-23 11:45:37 -0700578 }
579
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800580 void makeFinishing() {
581 if (!finishing) {
Jose Lima34ff4922014-08-18 15:19:41 -0700582 if (this == task.stack.getVisibleBehindActivity()) {
583 // A finishing activity should not remain as visible in the background
584 mStackSupervisor.requestVisibleBehindLocked(this, false);
585 }
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800586 finishing = true;
Dianne Hackborn6e3d6da2012-06-15 12:05:27 -0700587 if (stopped) {
588 clearOptionsLocked();
589 }
Dianne Hackborn94cb2eb2011-01-13 21:09:44 -0800590 }
591 }
592
Dianne Hackborn7e269642010-08-25 19:50:20 -0700593 UriPermissionOwner getUriPermissionsLocked() {
594 if (uriPermissions == null) {
595 uriPermissions = new UriPermissionOwner(service, this);
596 }
597 return uriPermissions;
598 }
599
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700600 void addResultLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800601 int requestCode, int resultCode,
602 Intent resultData) {
603 ActivityResult r = new ActivityResult(from, resultWho,
John Spurlock8a985d22014-02-25 09:40:05 -0500604 requestCode, resultCode, resultData);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800605 if (results == null) {
Craig Mautner5d9c7be2013-02-15 14:02:56 -0800606 results = new ArrayList<ResultInfo>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800607 }
608 results.add(r);
609 }
610
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700611 void removeResultsLocked(ActivityRecord from, String resultWho,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800612 int requestCode) {
613 if (results != null) {
614 for (int i=results.size()-1; i>=0; i--) {
615 ActivityResult r = (ActivityResult)results.get(i);
616 if (r.mFrom != from) continue;
617 if (r.mResultWho == null) {
618 if (resultWho != null) continue;
619 } else {
620 if (!r.mResultWho.equals(resultWho)) continue;
621 }
622 if (r.mRequestCode != requestCode) continue;
623
624 results.remove(i);
625 }
626 }
627 }
628
629 void addNewIntentLocked(Intent intent) {
630 if (newIntents == null) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800631 newIntents = new ArrayList<Intent>();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800632 }
633 newIntents.add(intent);
634 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700635
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700636 /**
637 * Deliver a new Intent to an existing activity, so that its onNewIntent()
638 * method will be called at the proper time.
639 */
Dianne Hackborn39792d22010-08-19 18:01:52 -0700640 final void deliverNewIntentLocked(int callingUid, Intent intent) {
Dianne Hackborn514074f2013-02-11 10:52:46 -0800641 // The activity now gets access to the data associated with this Intent.
642 service.grantUriPermissionFromIntentLocked(callingUid, packageName,
Nicolas Prevotc6cf95c2014-05-29 11:30:36 +0100643 intent, getUriPermissionsLocked(), userId);
Dianne Hackbornf530ac32012-06-21 14:17:48 -0700644 // We want to immediately deliver the intent to the activity if
645 // it is currently the top resumed activity... however, if the
646 // device is sleeping, then all activities are stopped, so in that
647 // case we will deliver it if this is the current top activity on its
648 // stack.
Craig Mautner86d67a42013-05-14 10:34:38 -0700649 boolean unsent = true;
Dianne Hackborn91097de2014-04-04 18:02:06 -0700650 if ((state == ActivityState.RESUMED || (service.isSleeping()
Craig Mautnerd2328952013-03-05 12:46:26 -0800651 && task.stack.topRunningActivityLocked(null) == this))
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700652 && app != null && app.thread != null) {
653 try {
654 ArrayList<Intent> ar = new ArrayList<Intent>();
Dianne Hackborn39792d22010-08-19 18:01:52 -0700655 intent = new Intent(intent);
656 ar.add(intent);
Dianne Hackbornbe707852011-11-11 14:32:10 -0800657 app.thread.scheduleNewIntent(ar, appToken);
Craig Mautner86d67a42013-05-14 10:34:38 -0700658 unsent = false;
Dianne Hackborn39792d22010-08-19 18:01:52 -0700659 } catch (RemoteException e) {
660 Slog.w(ActivityManagerService.TAG,
661 "Exception thrown sending new intent to " + this, e);
662 } catch (NullPointerException e) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700663 Slog.w(ActivityManagerService.TAG,
664 "Exception thrown sending new intent to " + this, e);
665 }
666 }
Craig Mautner86d67a42013-05-14 10:34:38 -0700667 if (unsent) {
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700668 addNewIntentLocked(new Intent(intent));
669 }
670 }
671
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700672 void updateOptionsLocked(Bundle options) {
673 if (options != null) {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700674 if (pendingOptions != null) {
675 pendingOptions.abort();
676 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700677 pendingOptions = new ActivityOptions(options);
678 }
679 }
680
Dianne Hackborn9622ca42012-10-23 18:56:33 -0700681 void updateOptionsLocked(ActivityOptions options) {
682 if (options != null) {
683 if (pendingOptions != null) {
684 pendingOptions.abort();
685 }
686 pendingOptions = options;
687 }
688 }
689
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700690 void applyOptionsLocked() {
George Mount2c92c972014-03-20 09:38:23 -0700691 if (pendingOptions != null
692 && pendingOptions.getAnimationType() != ActivityOptions.ANIM_SCENE_TRANSITION) {
Michael Jurka21385cd2012-05-03 10:57:31 -0700693 final int animationType = pendingOptions.getAnimationType();
694 switch (animationType) {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700695 case ActivityOptions.ANIM_CUSTOM:
696 service.mWindowManager.overridePendingAppTransition(
697 pendingOptions.getPackageName(),
698 pendingOptions.getCustomEnterResId(),
Dianne Hackborn84375872012-06-01 19:03:50 -0700699 pendingOptions.getCustomExitResId(),
700 pendingOptions.getOnAnimationStartListener());
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700701 break;
Dianne Hackborneabfb3a2012-04-16 16:28:22 -0700702 case ActivityOptions.ANIM_SCALE_UP:
703 service.mWindowManager.overridePendingAppTransitionScaleUp(
704 pendingOptions.getStartX(), pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200705 pendingOptions.getWidth(), pendingOptions.getHeight());
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700706 if (intent.getSourceBounds() == null) {
707 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
708 pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200709 pendingOptions.getStartX()+pendingOptions.getWidth(),
710 pendingOptions.getStartY()+pendingOptions.getHeight()));
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700711 }
Dianne Hackborneabfb3a2012-04-16 16:28:22 -0700712 break;
Michael Jurka832cb222012-04-13 09:32:47 -0700713 case ActivityOptions.ANIM_THUMBNAIL_SCALE_UP:
714 case ActivityOptions.ANIM_THUMBNAIL_SCALE_DOWN:
715 boolean scaleUp = (animationType == ActivityOptions.ANIM_THUMBNAIL_SCALE_UP);
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700716 service.mWindowManager.overridePendingAppTransitionThumb(
717 pendingOptions.getThumbnail(),
718 pendingOptions.getStartX(), pendingOptions.getStartY(),
Michael Jurka21385cd2012-05-03 10:57:31 -0700719 pendingOptions.getOnAnimationStartListener(),
Michael Jurka832cb222012-04-13 09:32:47 -0700720 scaleUp);
Dianne Hackbornd367ca82012-05-07 15:49:39 -0700721 if (intent.getSourceBounds() == null) {
722 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
723 pendingOptions.getStartY(),
724 pendingOptions.getStartX()
725 + pendingOptions.getThumbnail().getWidth(),
726 pendingOptions.getStartY()
727 + pendingOptions.getThumbnail().getHeight()));
728 }
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700729 break;
Winson Chunga4ccb862014-08-22 15:26:27 -0700730 case ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_UP:
731 case ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_DOWN:
732 service.mWindowManager.overridePendingAppTransitionAspectScaledThumb(
733 pendingOptions.getThumbnail(),
734 pendingOptions.getStartX(), pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200735 pendingOptions.getWidth(), pendingOptions.getHeight(),
Winson Chunga4ccb862014-08-22 15:26:27 -0700736 pendingOptions.getOnAnimationStartListener(),
737 (animationType == ActivityOptions.ANIM_THUMBNAIL_ASPECT_SCALE_UP));
738 if (intent.getSourceBounds() == null) {
739 intent.setSourceBounds(new Rect(pendingOptions.getStartX(),
740 pendingOptions.getStartY(),
Winson Chung2e7f3bd2014-09-05 13:17:22 +0200741 pendingOptions.getStartX() + pendingOptions.getWidth(),
742 pendingOptions.getStartY() + pendingOptions.getHeight()));
Winson Chunga4ccb862014-08-22 15:26:27 -0700743 }
744 break;
Craig Mautner233ceee2014-05-09 17:05:11 -0700745 default:
746 Slog.e(TAG, "applyOptionsLocked: Unknown animationType=" + animationType);
747 break;
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700748 }
749 pendingOptions = null;
750 }
751 }
752
Adam Powellcfbe9be2013-11-06 14:58:58 -0800753 ActivityOptions getOptionsForTargetActivityLocked() {
754 return pendingOptions != null ? pendingOptions.forTargetActivity() : null;
755 }
756
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700757 void clearOptionsLocked() {
Dianne Hackborn8078d8c2012-03-20 11:11:26 -0700758 if (pendingOptions != null) {
759 pendingOptions.abort();
760 pendingOptions = null;
761 }
Dianne Hackborn7a2195c2012-03-19 17:38:00 -0700762 }
763
Dianne Hackborn9622ca42012-10-23 18:56:33 -0700764 ActivityOptions takeOptionsLocked() {
765 ActivityOptions opts = pendingOptions;
766 pendingOptions = null;
767 return opts;
768 }
769
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700770 void removeUriPermissionsLocked() {
Dianne Hackborn7e269642010-08-25 19:50:20 -0700771 if (uriPermissions != null) {
772 uriPermissions.removeUriPermissionsLocked();
773 uriPermissions = null;
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700774 }
775 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800776
777 void pauseKeyDispatchingLocked() {
778 if (!keysPaused) {
779 keysPaused = true;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800780 service.mWindowManager.pauseKeyDispatching(appToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800781 }
782 }
783
784 void resumeKeyDispatchingLocked() {
785 if (keysPaused) {
786 keysPaused = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800787 service.mWindowManager.resumeKeyDispatching(appToken);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800788 }
789 }
790
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700791 void updateThumbnail(Bitmap newThumbnail, CharSequence description) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700792 if (newThumbnail != null) {
793 if (ActivityManagerService.DEBUG_THUMBNAILS) Slog.i(ActivityManagerService.TAG,
794 "Setting thumbnail of " + this + " to " + newThumbnail);
Winson Chung096f36b2014-08-20 15:39:01 -0700795 boolean thumbnailUpdated = task.setLastThumbnail(newThumbnail);
796 if (thumbnailUpdated && isPersistable()) {
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700797 mStackSupervisor.mService.notifyTaskPersisterLocked(task, false);
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700798 }
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700799 }
Craig Mautnerc0ffce52014-07-01 12:38:52 -0700800 task.lastDescription = description;
Dianne Hackbornf26fd992011-04-08 18:14:09 -0700801 }
802
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700803 void startLaunchTickingLocked() {
804 if (ActivityManagerService.IS_USER_BUILD) {
805 return;
806 }
807 if (launchTickTime == 0) {
808 launchTickTime = SystemClock.uptimeMillis();
809 continueLaunchTickingLocked();
810 }
811 }
812
813 boolean continueLaunchTickingLocked() {
814 if (launchTickTime != 0) {
Craig Mautnerd2328952013-03-05 12:46:26 -0800815 final ActivityStack stack = task.stack;
Craig Mautnerf7bfefb2013-05-16 17:30:44 -0700816 Message msg = stack.mHandler.obtainMessage(ActivityStack.LAUNCH_TICK_MSG, this);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700817 stack.mHandler.removeMessages(ActivityStack.LAUNCH_TICK_MSG);
818 stack.mHandler.sendMessageDelayed(msg, ActivityStack.LAUNCH_TICK);
819 return true;
820 }
821 return false;
822 }
823
824 void finishLaunchTickingLocked() {
825 launchTickTime = 0;
Craig Mautnerd2328952013-03-05 12:46:26 -0800826 task.stack.mHandler.removeMessages(ActivityStack.LAUNCH_TICK_MSG);
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700827 }
828
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800829 // IApplicationToken
830
831 public boolean mayFreezeScreenLocked(ProcessRecord app) {
832 // Only freeze the screen if this activity is currently attached to
833 // an application, and that application is not blocked or unresponding.
834 // In any other case, we can't count on getting the screen unfrozen,
835 // so it is best to leave as-is.
Dianne Hackborn5f4d6432010-12-21 20:40:11 -0800836 return app != null && !app.crashing && !app.notResponding;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800837 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700838
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800839 public void startFreezingScreenLocked(ProcessRecord app, int configChanges) {
840 if (mayFreezeScreenLocked(app)) {
Dianne Hackbornbe707852011-11-11 14:32:10 -0800841 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800842 }
843 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700844
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800845 public void stopFreezingScreenLocked(boolean force) {
846 if (force || frozenBeforeDestroy) {
847 frozenBeforeDestroy = false;
Dianne Hackbornbe707852011-11-11 14:32:10 -0800848 service.mWindowManager.stopAppFreezingScreen(appToken, force);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800849 }
850 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700851
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700852 public void reportFullyDrawnLocked() {
853 final long curTime = SystemClock.uptimeMillis();
854 if (displayStartTime != 0) {
855 reportLaunchTimeLocked(curTime);
856 }
857 if (fullyDrawnStartTime != 0) {
858 final ActivityStack stack = task.stack;
859 final long thisTime = curTime - fullyDrawnStartTime;
860 final long totalTime = stack.mFullyDrawnStartTime != 0
861 ? (curTime - stack.mFullyDrawnStartTime) : thisTime;
862 if (ActivityManagerService.SHOW_ACTIVITY_START_TIME) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700863 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700864 EventLog.writeEvent(EventLogTags.AM_ACTIVITY_FULLY_DRAWN_TIME,
865 userId, System.identityHashCode(this), shortComponentName,
866 thisTime, totalTime);
867 StringBuilder sb = service.mStringBuilder;
868 sb.setLength(0);
869 sb.append("Fully drawn ");
870 sb.append(shortComponentName);
871 sb.append(": ");
872 TimeUtils.formatDuration(thisTime, sb);
873 if (thisTime != totalTime) {
874 sb.append(" (total ");
875 TimeUtils.formatDuration(totalTime, sb);
876 sb.append(")");
877 }
878 Log.i(ActivityManagerService.TAG, sb.toString());
879 }
880 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -0700881 //service.mUsageStatsService.noteFullyDrawnTime(realActivity, (int) totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700882 }
883 fullyDrawnStartTime = 0;
884 stack.mFullyDrawnStartTime = 0;
885 }
886 }
887
888 private void reportLaunchTimeLocked(final long curTime) {
889 final ActivityStack stack = task.stack;
890 final long thisTime = curTime - displayStartTime;
891 final long totalTime = stack.mLaunchStartTime != 0
892 ? (curTime - stack.mLaunchStartTime) : thisTime;
893 if (ActivityManagerService.SHOW_ACTIVITY_START_TIME) {
Dianne Hackborncee04b52013-07-03 17:01:28 -0700894 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching", 0);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700895 EventLog.writeEvent(EventLogTags.AM_ACTIVITY_LAUNCH_TIME,
896 userId, System.identityHashCode(this), shortComponentName,
897 thisTime, totalTime);
898 StringBuilder sb = service.mStringBuilder;
899 sb.setLength(0);
900 sb.append("Displayed ");
901 sb.append(shortComponentName);
902 sb.append(": ");
903 TimeUtils.formatDuration(thisTime, sb);
904 if (thisTime != totalTime) {
905 sb.append(" (total ");
906 TimeUtils.formatDuration(totalTime, sb);
907 sb.append(")");
908 }
909 Log.i(ActivityManagerService.TAG, sb.toString());
910 }
911 mStackSupervisor.reportActivityLaunchedLocked(false, this, thisTime, totalTime);
912 if (totalTime > 0) {
Adam Lesinski0debc9a2014-07-16 19:09:13 -0700913 //service.mUsageStatsService.noteLaunchTime(realActivity, (int)totalTime);
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700914 }
915 displayStartTime = 0;
916 stack.mLaunchStartTime = 0;
917 }
918
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700919 public void windowsDrawn() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800920 synchronized(service) {
Dianne Hackborn2286cdc2013-07-01 19:10:06 -0700921 if (displayStartTime != 0) {
922 reportLaunchTimeLocked(SystemClock.uptimeMillis());
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800923 }
Dianne Hackborn6cfbb712014-09-17 12:47:35 -0700924 mStackSupervisor.sendWaitingVisibleReportLocked(this);
Dianne Hackborn0dad3642010-09-09 21:25:35 -0700925 startTime = 0;
Dianne Hackborn2a29b3a2012-03-15 15:48:38 -0700926 finishLaunchTickingLocked();
Dianne Hackbornd38aed82014-06-10 21:36:35 -0700927 if (task != null) {
928 task.hasBeenVisible = true;
929 }
Dianne Hackborn2c84cfc2011-10-31 15:39:59 -0700930 }
931 }
932
933 public void windowsVisible() {
934 synchronized(service) {
Craig Mautnerce5f3cb2013-04-22 08:58:54 -0700935 mStackSupervisor.reportActivityVisibleLocked(this);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800936 if (ActivityManagerService.DEBUG_SWITCH) Log.v(
937 ActivityManagerService.TAG, "windowsVisible(): " + this);
938 if (!nowVisible) {
939 nowVisible = true;
Dianne Hackborn50685602011-12-01 12:23:37 -0800940 lastVisibleTime = SystemClock.uptimeMillis();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800941 if (!idle) {
942 // Instead of doing the full stop routine here, let's just
943 // hide any activities we now can, and let them stop when
944 // the normal idle happens.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700945 mStackSupervisor.processStoppingActivitiesLocked(false);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800946 } else {
947 // If this activity was already idle, then we now need to
948 // make sure we perform the full stop of any activities
949 // that are waiting to do so. This is because we won't
950 // do that while they are still waiting for this one to
951 // become visible.
Craig Mautnerde4ef022013-04-07 19:01:33 -0700952 final int N = mStackSupervisor.mWaitingVisibleActivities.size();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800953 if (N > 0) {
954 for (int i=0; i<N; i++) {
Craig Mautnerde4ef022013-04-07 19:01:33 -0700955 ActivityRecord r = mStackSupervisor.mWaitingVisibleActivities.get(i);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800956 r.waitingVisible = false;
957 if (ActivityManagerService.DEBUG_SWITCH) Log.v(
958 ActivityManagerService.TAG,
959 "Was waiting for visible: " + r);
960 }
Craig Mautnerde4ef022013-04-07 19:01:33 -0700961 mStackSupervisor.mWaitingVisibleActivities.clear();
Craig Mautnerf3333272013-04-22 10:55:53 -0700962 mStackSupervisor.scheduleIdleLocked();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800963 }
964 }
965 service.scheduleAppGcsLocked();
966 }
967 }
968 }
969
970 public void windowsGone() {
971 if (ActivityManagerService.DEBUG_SWITCH) Log.v(
972 ActivityManagerService.TAG, "windowsGone(): " + this);
973 nowVisible = false;
974 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700975
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700976 private ActivityRecord getWaitingHistoryRecordLocked() {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800977 // First find the real culprit... if we are waiting
978 // for another app to start, then we have paused dispatching
979 // for this activity.
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700980 ActivityRecord r = this;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800981 if (r.waitingVisible) {
Craig Mautner8f2adcb2014-04-07 22:21:33 +0000982 final ActivityStack stack = mStackSupervisor.getFocusedStack();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800983 // Hmmm, who might we be waiting for?
Dianne Hackborn50dc3bc2010-06-25 10:05:59 -0700984 r = stack.mResumedActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800985 if (r == null) {
Dianne Hackborn621e2fe2012-02-16 17:07:33 -0800986 r = stack.mPausingActivity;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800987 }
988 // Both of those null? Fall back to 'this' again
989 if (r == null) {
990 r = this;
991 }
992 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -0700993
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800994 return r;
995 }
996
Jeff Brownbd181bb2013-09-10 16:44:24 -0700997 public boolean keyDispatchingTimedOut(String reason) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -0700998 ActivityRecord r;
Michael Wright7dd5bb12013-02-27 17:07:29 -0800999 ProcessRecord anrApp;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001000 synchronized(service) {
Dianne Hackbornad5499d2010-03-29 18:08:45 -07001001 r = getWaitingHistoryRecordLocked();
Michael Wright7dd5bb12013-02-27 17:07:29 -08001002 anrApp = r != null ? r.app : null;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001003 }
Jeff Brownbd181bb2013-09-10 16:44:24 -07001004 return service.inputDispatchingTimedOut(anrApp, r, this, false, reason);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001005 }
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001006
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001007 /** Returns the key dispatching timeout for this application token. */
1008 public long getKeyDispatchingTimeout() {
1009 synchronized(service) {
Dianne Hackborn01e4cfc2010-06-24 15:07:24 -07001010 ActivityRecord r = getWaitingHistoryRecordLocked();
Michael Wright7dd5bb12013-02-27 17:07:29 -08001011 return ActivityManagerService.getInputDispatchingTimeoutLocked(r);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001012 }
1013 }
1014
1015 /**
1016 * This method will return true if the activity is either visible, is becoming visible, is
1017 * currently pausing, or is resumed.
1018 */
1019 public boolean isInterestingToUserLocked() {
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001020 return visible || nowVisible || state == ActivityState.PAUSING ||
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001021 state == ActivityState.RESUMED;
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001022 }
1023
1024 public void setSleeping(boolean _sleeping) {
1025 if (sleeping == _sleeping) {
1026 return;
1027 }
1028 if (app != null && app.thread != null) {
1029 try {
Dianne Hackbornbe707852011-11-11 14:32:10 -08001030 app.thread.scheduleSleeping(appToken, _sleeping);
Craig Mautner0eea92c2013-05-16 13:35:39 -07001031 if (_sleeping && !mStackSupervisor.mGoingToSleepActivities.contains(this)) {
1032 mStackSupervisor.mGoingToSleepActivities.add(this);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001033 }
1034 sleeping = _sleeping;
1035 } catch (RemoteException e) {
Craig Mautner0eea92c2013-05-16 13:35:39 -07001036 Slog.w(TAG, "Exception thrown when sleeping: " + intent.getComponent(), e);
Dianne Hackborn4eba96b2011-01-21 13:34:36 -08001037 }
1038 }
1039 }
Craig Mautnerf81b90872013-02-26 13:02:43 -08001040
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001041 static void activityResumedLocked(IBinder token) {
1042 final ActivityRecord r = ActivityRecord.forToken(token);
1043 if (DEBUG_SAVED_STATE) Slog.i(TAG, "Resumed activity; dropping state of: " + r);
1044 r.icicle = null;
1045 r.haveState = false;
1046 }
1047
Craig Mautnerd2328952013-03-05 12:46:26 -08001048 static int getTaskForActivityLocked(IBinder token, boolean onlyRoot) {
1049 final ActivityRecord r = ActivityRecord.forToken(token);
1050 if (r == null) {
1051 return -1;
1052 }
1053 final TaskRecord task = r.task;
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001054 final int activityNdx = task.mActivities.indexOf(r);
1055 if (activityNdx < 0 || (onlyRoot && activityNdx > task.findEffectiveRootIndex())) {
1056 return -1;
Craig Mautnerd2328952013-03-05 12:46:26 -08001057 }
Craig Mautner9d4e9bc2014-06-18 18:34:56 -07001058 return task.taskId;
Craig Mautnerd2328952013-03-05 12:46:26 -08001059 }
1060
1061 static ActivityRecord isInStackLocked(IBinder token) {
1062 final ActivityRecord r = ActivityRecord.forToken(token);
1063 if (r != null) {
1064 return r.task.stack.isInStackLocked(token);
1065 }
1066 return null;
1067 }
1068
Craig Mautnerb59dcfd2013-05-06 13:12:58 -07001069 static ActivityStack getStackLocked(IBinder token) {
Craig Mautnerd2328952013-03-05 12:46:26 -08001070 final ActivityRecord r = ActivityRecord.isInStackLocked(token);
1071 if (r != null) {
1072 return r.task.stack;
1073 }
1074 return null;
1075 }
1076
Dianne Hackborn89ad4562014-08-24 16:45:38 -07001077 final boolean isDestroyable() {
1078 if (finishing || app == null || state == ActivityState.DESTROYING
1079 || state == ActivityState.DESTROYED) {
1080 // This would be redundant.
1081 return false;
1082 }
1083 if (task == null || task.stack == null || this == task.stack.mResumedActivity
1084 || this == task.stack.mPausingActivity || !haveState || !stopped) {
1085 // We're not ready for this kind of thing.
1086 return false;
1087 }
1088 if (visible) {
1089 // The user would notice this!
1090 return false;
1091 }
1092 return true;
1093 }
1094
Winson Chung3bad5cc02014-08-19 17:44:32 -07001095 private static String createImageFilename(long createTime, int taskId) {
1096 return String.valueOf(taskId) + ACTIVITY_ICON_SUFFIX + createTime +
Craig Mautnerc0ffce52014-07-01 12:38:52 -07001097 TaskPersister.IMAGE_EXTENSION;
1098 }
1099
Craig Mautner648f69b2014-09-18 14:16:26 -07001100 void setTaskDescription(TaskDescription _taskDescription) {
1101 Bitmap icon;
1102 if (_taskDescription.getIconFilename() == null &&
1103 (icon = _taskDescription.getIcon()) != null) {
1104 final String iconFilename = createImageFilename(createTime, task.taskId);
1105 mStackSupervisor.mService.mTaskPersister.saveImage(icon, iconFilename);
1106 _taskDescription.setIconFilename(iconFilename);
1107 }
1108 taskDescription = _taskDescription;
1109 }
1110
Craig Mautner21d24a22014-04-23 11:45:37 -07001111 void saveToXml(XmlSerializer out) throws IOException, XmlPullParserException {
1112 out.attribute(null, ATTR_ID, String.valueOf(createTime));
1113 out.attribute(null, ATTR_LAUNCHEDFROMUID, String.valueOf(launchedFromUid));
1114 if (launchedFromPackage != null) {
1115 out.attribute(null, ATTR_LAUNCHEDFROMPACKAGE, launchedFromPackage);
1116 }
1117 if (resolvedType != null) {
1118 out.attribute(null, ATTR_RESOLVEDTYPE, resolvedType);
1119 }
1120 out.attribute(null, ATTR_COMPONENTSPECIFIED, String.valueOf(componentSpecified));
1121 out.attribute(null, ATTR_USERID, String.valueOf(userId));
Winson Chung2cb86c72014-06-25 12:03:30 -07001122
Craig Mautner21d24a22014-04-23 11:45:37 -07001123 if (taskDescription != null) {
Craig Mautner648f69b2014-09-18 14:16:26 -07001124 taskDescription.saveToXml(out);
Craig Mautner21d24a22014-04-23 11:45:37 -07001125 }
1126
1127 out.startTag(null, TAG_INTENT);
1128 intent.saveToXml(out);
1129 out.endTag(null, TAG_INTENT);
1130
1131 if (isPersistable() && persistentState != null) {
1132 out.startTag(null, TAG_PERSISTABLEBUNDLE);
1133 persistentState.saveToXml(out);
1134 out.endTag(null, TAG_PERSISTABLEBUNDLE);
1135 }
1136 }
1137
1138 static ActivityRecord restoreFromXml(XmlPullParser in, int taskId,
1139 ActivityStackSupervisor stackSupervisor) throws IOException, XmlPullParserException {
1140 Intent intent = null;
1141 PersistableBundle persistentState = null;
1142 int launchedFromUid = 0;
1143 String launchedFromPackage = null;
1144 String resolvedType = null;
1145 boolean componentSpecified = false;
1146 int userId = 0;
Craig Mautner21d24a22014-04-23 11:45:37 -07001147 long createTime = -1;
1148 final int outerDepth = in.getDepth();
Winson Chung2cb86c72014-06-25 12:03:30 -07001149 TaskDescription taskDescription = new TaskDescription();
Craig Mautner21d24a22014-04-23 11:45:37 -07001150
1151 for (int attrNdx = in.getAttributeCount() - 1; attrNdx >= 0; --attrNdx) {
1152 final String attrName = in.getAttributeName(attrNdx);
1153 final String attrValue = in.getAttributeValue(attrNdx);
1154 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG, "ActivityRecord: attribute name=" +
1155 attrName + " value=" + attrValue);
1156 if (ATTR_ID.equals(attrName)) {
1157 createTime = Long.valueOf(attrValue);
1158 } else if (ATTR_LAUNCHEDFROMUID.equals(attrName)) {
1159 launchedFromUid = Integer.valueOf(attrValue);
1160 } else if (ATTR_LAUNCHEDFROMPACKAGE.equals(attrName)) {
1161 launchedFromPackage = attrValue;
1162 } else if (ATTR_RESOLVEDTYPE.equals(attrName)) {
1163 resolvedType = attrValue;
1164 } else if (ATTR_COMPONENTSPECIFIED.equals(attrName)) {
1165 componentSpecified = Boolean.valueOf(attrValue);
1166 } else if (ATTR_USERID.equals(attrName)) {
1167 userId = Integer.valueOf(attrValue);
Craig Mautner648f69b2014-09-18 14:16:26 -07001168 } else if (attrName.startsWith(TaskDescription.ATTR_TASKDESCRIPTION_PREFIX)) {
1169 taskDescription.restoreFromXml(attrName, attrValue);
Craig Mautner21d24a22014-04-23 11:45:37 -07001170 } else {
1171 Log.d(TAG, "Unknown ActivityRecord attribute=" + attrName);
1172 }
1173 }
1174
1175 int event;
1176 while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
1177 (event != XmlPullParser.END_TAG || in.getDepth() < outerDepth)) {
1178 if (event == XmlPullParser.START_TAG) {
1179 final String name = in.getName();
1180 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
1181 "ActivityRecord: START_TAG name=" + name);
1182 if (TAG_INTENT.equals(name)) {
1183 intent = Intent.restoreFromXml(in);
1184 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
1185 "ActivityRecord: intent=" + intent);
1186 } else if (TAG_PERSISTABLEBUNDLE.equals(name)) {
1187 persistentState = PersistableBundle.restoreFromXml(in);
1188 if (TaskPersister.DEBUG) Slog.d(TaskPersister.TAG,
1189 "ActivityRecord: persistentState=" + persistentState);
1190 } else {
1191 Slog.w(TAG, "restoreActivity: unexpected name=" + name);
1192 XmlUtils.skipCurrentTag(in);
1193 }
1194 }
1195 }
1196
1197 if (intent == null) {
Craig Mautnere0129b32014-05-25 16:41:09 -07001198 throw new XmlPullParserException("restoreActivity error intent=" + intent);
Craig Mautner21d24a22014-04-23 11:45:37 -07001199 }
1200
1201 final ActivityManagerService service = stackSupervisor.mService;
1202 final ActivityInfo aInfo = stackSupervisor.resolveActivity(intent, resolvedType, 0, null,
Jeff Hao1b012d32014-08-20 10:35:34 -07001203 userId);
Craig Mautnere0129b32014-05-25 16:41:09 -07001204 if (aInfo == null) {
Craig Mautner77b04262014-06-27 15:22:12 -07001205 throw new XmlPullParserException("restoreActivity resolver error. Intent=" + intent +
1206 " resolvedType=" + resolvedType);
Craig Mautnere0129b32014-05-25 16:41:09 -07001207 }
Craig Mautner21d24a22014-04-23 11:45:37 -07001208 final ActivityRecord r = new ActivityRecord(service, /*caller*/null, launchedFromUid,
1209 launchedFromPackage, intent, resolvedType, aInfo, service.getConfiguration(),
1210 null, null, 0, componentSpecified, stackSupervisor, null, null);
1211
1212 r.persistentState = persistentState;
Winson Chung2cb86c72014-06-25 12:03:30 -07001213 r.taskDescription = taskDescription;
Craig Mautner21d24a22014-04-23 11:45:37 -07001214 r.createTime = createTime;
1215
1216 return r;
1217 }
1218
1219 private static String activityTypeToString(int type) {
Craig Mautnerae7ecab2013-09-18 11:48:14 -07001220 switch (type) {
1221 case APPLICATION_ACTIVITY_TYPE: return "APPLICATION_ACTIVITY_TYPE";
1222 case HOME_ACTIVITY_TYPE: return "HOME_ACTIVITY_TYPE";
1223 case RECENTS_ACTIVITY_TYPE: return "RECENTS_ACTIVITY_TYPE";
1224 default: return Integer.toString(type);
1225 }
1226 }
1227
Craig Mautnerf81b90872013-02-26 13:02:43 -08001228 @Override
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001229 public String toString() {
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001230 if (stringName != null) {
Craig Mautnerf3333272013-04-22 10:55:53 -07001231 return stringName + " t" + (task == null ? -1 : task.taskId) +
1232 (finishing ? " f}" : "}");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001233 }
1234 StringBuilder sb = new StringBuilder(128);
Dianne Hackborn30d71892010-12-11 10:37:55 -08001235 sb.append("ActivityRecord{");
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001236 sb.append(Integer.toHexString(System.identityHashCode(this)));
Dianne Hackbornb12e1352012-09-26 11:39:20 -07001237 sb.append(" u");
1238 sb.append(userId);
Dianne Hackbornf210d6b2009-04-13 18:42:49 -07001239 sb.append(' ');
Dianne Hackborn1d442e02009-04-20 18:14:05 -07001240 sb.append(intent.getComponent().flattenToShortString());
Craig Mautnerf81b90872013-02-26 13:02:43 -08001241 stringName = sb.toString();
1242 return toString();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001243 }
1244}