ActivityStack.java revision db0fa12b736a6901075ae30c2c423a036d6b8139
1/*
2 * Copyright (C) 2010 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
19import static android.app.ActivityManager.StackId.DOCKED_STACK_ID;
20import static android.app.ActivityManager.StackId.FREEFORM_WORKSPACE_STACK_ID;
21import static android.app.ActivityManager.StackId.FULLSCREEN_WORKSPACE_STACK_ID;
22import static android.app.ActivityManager.StackId.HOME_STACK_ID;
23import static android.app.ActivityManager.StackId.INVALID_STACK_ID;
24import static android.app.ActivityManager.StackId.PINNED_STACK_ID;
25import static android.content.pm.ActivityInfo.CONFIG_ORIENTATION;
26import static android.content.pm.ActivityInfo.CONFIG_SCREEN_LAYOUT;
27import static android.content.pm.ActivityInfo.CONFIG_SCREEN_SIZE;
28import static android.content.pm.ActivityInfo.CONFIG_SMALLEST_SCREEN_SIZE;
29import static android.content.pm.ActivityInfo.FLAG_RESUME_WHILE_PAUSING;
30import static android.content.pm.ActivityInfo.FLAG_SHOW_FOR_ALL_USERS;
31import static android.content.res.Configuration.SCREENLAYOUT_UNDEFINED;
32import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ADD_REMOVE;
33import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_ALL;
34import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_APP;
35import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CLEANUP;
36import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONFIGURATION;
37import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_CONTAINERS;
38import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_LOCKSCREEN;
39import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_PAUSE;
40import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RELEASE;
41import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_RESULTS;
42import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SAVED_STATE;
43import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SCREENSHOTS;
44import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STACK;
45import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_STATES;
46import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_SWITCH;
47import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TASKS;
48import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_TRANSITION;
49import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_USER_LEAVING;
50import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_VISIBILITY;
51import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_ADD_REMOVE;
52import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_APP;
53import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CLEANUP;
54import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONFIGURATION;
55import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_CONTAINERS;
56import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_PAUSE;
57import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RELEASE;
58import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_RESULTS;
59import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SAVED_STATE;
60import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SCREENSHOTS;
61import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STACK;
62import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_STATES;
63import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_SWITCH;
64import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TASKS;
65import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_TRANSITION;
66import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_USER_LEAVING;
67import static com.android.server.am.ActivityManagerDebugConfig.POSTFIX_VISIBILITY;
68import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
69import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
70import static com.android.server.am.ActivityManagerService.LOCK_SCREEN_SHOWN;
71import static com.android.server.am.ActivityRecord.APPLICATION_ACTIVITY_TYPE;
72import static com.android.server.am.ActivityRecord.HOME_ACTIVITY_TYPE;
73import static com.android.server.am.ActivityRecord.STARTING_WINDOW_REMOVED;
74import static com.android.server.am.ActivityRecord.STARTING_WINDOW_SHOWN;
75import static com.android.server.am.ActivityStackSupervisor.FindTaskResult;
76import static com.android.server.am.ActivityStackSupervisor.MOVING;
77import static com.android.server.am.ActivityStackSupervisor.ON_TOP;
78import static com.android.server.am.ActivityStackSupervisor.PRESERVE_WINDOWS;
79import static com.android.server.wm.AppTransition.TRANSIT_ACTIVITY_CLOSE;
80import static com.android.server.wm.AppTransition.TRANSIT_ACTIVITY_OPEN;
81import static com.android.server.wm.AppTransition.TRANSIT_NONE;
82import static com.android.server.wm.AppTransition.TRANSIT_TASK_CLOSE;
83import static com.android.server.wm.AppTransition.TRANSIT_TASK_OPEN;
84import static com.android.server.wm.AppTransition.TRANSIT_TASK_OPEN_BEHIND;
85import static com.android.server.wm.AppTransition.TRANSIT_TASK_TO_BACK;
86import static com.android.server.wm.AppTransition.TRANSIT_TASK_TO_FRONT;
87
88import android.app.Activity;
89import android.app.ActivityManager;
90import android.app.ActivityManager.RunningTaskInfo;
91import android.app.ActivityManager.StackId;
92import android.app.ActivityOptions;
93import android.app.AppGlobals;
94import android.app.IActivityController;
95import android.app.ResultInfo;
96import android.content.ComponentName;
97import android.content.Intent;
98import android.content.pm.ActivityInfo;
99import android.content.pm.ApplicationInfo;
100import android.content.res.Configuration;
101import android.graphics.Bitmap;
102import android.graphics.Point;
103import android.graphics.Rect;
104import android.net.Uri;
105import android.os.Binder;
106import android.os.Bundle;
107import android.os.Debug;
108import android.os.Handler;
109import android.os.IBinder;
110import android.os.Looper;
111import android.os.Message;
112import android.os.PersistableBundle;
113import android.os.RemoteException;
114import android.os.SystemClock;
115import android.os.Trace;
116import android.os.UserHandle;
117import android.service.voice.IVoiceInteractionSession;
118import android.util.ArraySet;
119import android.util.EventLog;
120import android.util.Log;
121import android.util.Slog;
122import android.view.Display;
123
124import com.android.internal.app.IVoiceInteractor;
125import com.android.internal.content.ReferrerIntent;
126import com.android.internal.os.BatteryStatsImpl;
127import com.android.server.Watchdog;
128import com.android.server.am.ActivityManagerService.ItemMatcher;
129import com.android.server.am.ActivityStackSupervisor.ActivityContainer;
130import com.android.server.wm.TaskGroup;
131import com.android.server.wm.WindowManagerService;
132
133import java.io.FileDescriptor;
134import java.io.PrintWriter;
135import java.lang.ref.WeakReference;
136import java.util.ArrayList;
137import java.util.Iterator;
138import java.util.List;
139import java.util.Objects;
140import java.util.Set;
141
142/**
143 * State and management of a single stack of activities.
144 */
145final class ActivityStack {
146
147    private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityStack" : TAG_AM;
148    private static final String TAG_ADD_REMOVE = TAG + POSTFIX_ADD_REMOVE;
149    private static final String TAG_APP = TAG + POSTFIX_APP;
150    private static final String TAG_CLEANUP = TAG + POSTFIX_CLEANUP;
151    private static final String TAG_CONFIGURATION = TAG + POSTFIX_CONFIGURATION;
152    private static final String TAG_CONTAINERS = TAG + POSTFIX_CONTAINERS;
153    private static final String TAG_PAUSE = TAG + POSTFIX_PAUSE;
154    private static final String TAG_RELEASE = TAG + POSTFIX_RELEASE;
155    private static final String TAG_RESULTS = TAG + POSTFIX_RESULTS;
156    private static final String TAG_SAVED_STATE = TAG + POSTFIX_SAVED_STATE;
157    private static final String TAG_SCREENSHOTS = TAG + POSTFIX_SCREENSHOTS;
158    private static final String TAG_STACK = TAG + POSTFIX_STACK;
159    private static final String TAG_STATES = TAG + POSTFIX_STATES;
160    private static final String TAG_SWITCH = TAG + POSTFIX_SWITCH;
161    private static final String TAG_TASKS = TAG + POSTFIX_TASKS;
162    private static final String TAG_TRANSITION = TAG + POSTFIX_TRANSITION;
163    private static final String TAG_USER_LEAVING = TAG + POSTFIX_USER_LEAVING;
164    private static final String TAG_VISIBILITY = TAG + POSTFIX_VISIBILITY;
165
166    private static final boolean VALIDATE_TOKENS = false;
167
168    // Ticks during which we check progress while waiting for an app to launch.
169    static final int LAUNCH_TICK = 500;
170
171    // How long we wait until giving up on the last activity to pause.  This
172    // is short because it directly impacts the responsiveness of starting the
173    // next activity.
174    static final int PAUSE_TIMEOUT = 500;
175
176    // How long we wait for the activity to tell us it has stopped before
177    // giving up.  This is a good amount of time because we really need this
178    // from the application in order to get its saved state.
179    static final int STOP_TIMEOUT = 10 * 1000;
180
181    // How long we wait until giving up on an activity telling us it has
182    // finished destroying itself.
183    static final int DESTROY_TIMEOUT = 10 * 1000;
184
185    // How long until we reset a task when the user returns to it.  Currently
186    // disabled.
187    static final long ACTIVITY_INACTIVE_RESET_TIME = 0;
188
189    // How long between activity launches that we consider safe to not warn
190    // the user about an unexpected activity being launched on top.
191    static final long START_WARN_TIME = 5 * 1000;
192
193    // Set to false to disable the preview that is shown while a new activity
194    // is being started.
195    static final boolean SHOW_APP_STARTING_PREVIEW = true;
196
197    // How long to wait for all background Activities to redraw following a call to
198    // convertToTranslucent().
199    static final long TRANSLUCENT_CONVERSION_TIMEOUT = 2000;
200
201    // How many activities have to be scheduled to stop to force a stop pass.
202    private static final int MAX_STOPPING_TO_FORCE = 3;
203
204    enum ActivityState {
205        INITIALIZING,
206        RESUMED,
207        PAUSING,
208        PAUSED,
209        STOPPING,
210        STOPPED,
211        FINISHING,
212        DESTROYING,
213        DESTROYED
214    }
215
216    // Stack is not considered visible.
217    static final int STACK_INVISIBLE = 0;
218    // Stack is considered visible
219    static final int STACK_VISIBLE = 1;
220    // Stack is considered visible, but only becuase it has activity that is visible behind other
221    // activities and there is a specific combination of stacks.
222    static final int STACK_VISIBLE_ACTIVITY_BEHIND = 2;
223
224    /* The various modes for the method {@link #removeTask}. */
225    // Task is being completely removed from all stacks in the system.
226    static final int REMOVE_TASK_MODE_DESTROYING = 0;
227    // Task is being removed from this stack so we can add it to another stack. In the case we are
228    // moving we don't want to perform some operations on the task like removing it from window
229    // manager or recents.
230    static final int REMOVE_TASK_MODE_MOVING = 1;
231    // Similar to {@link #REMOVE_TASK_MODE_MOVING} and the task will be added to the top of its new
232    // stack and the new stack will be on top of all stacks.
233    static final int REMOVE_TASK_MODE_MOVING_TO_TOP = 2;
234
235    final ActivityManagerService mService;
236    final WindowManagerService mWindowManager;
237    private final RecentTasks mRecentTasks;
238
239    /**
240     * The back history of all previous (and possibly still
241     * running) activities.  It contains #TaskRecord objects.
242     */
243    private final ArrayList<TaskRecord> mTaskHistory = new ArrayList<>();
244
245    /**
246     * Used for validating app tokens with window manager.
247     */
248    final ArrayList<TaskGroup> mValidateAppTokens = new ArrayList<>();
249
250    /**
251     * List of running activities, sorted by recent usage.
252     * The first entry in the list is the least recently used.
253     * It contains HistoryRecord objects.
254     */
255    final ArrayList<ActivityRecord> mLRUActivities = new ArrayList<>();
256
257    /**
258     * Animations that for the current transition have requested not to
259     * be considered for the transition animation.
260     */
261    final ArrayList<ActivityRecord> mNoAnimActivities = new ArrayList<>();
262
263    /**
264     * When we are in the process of pausing an activity, before starting the
265     * next one, this variable holds the activity that is currently being paused.
266     */
267    ActivityRecord mPausingActivity = null;
268
269    /**
270     * This is the last activity that we put into the paused state.  This is
271     * used to determine if we need to do an activity transition while sleeping,
272     * when we normally hold the top activity paused.
273     */
274    ActivityRecord mLastPausedActivity = null;
275
276    /**
277     * Activities that specify No History must be removed once the user navigates away from them.
278     * If the device goes to sleep with such an activity in the paused state then we save it here
279     * and finish it later if another activity replaces it on wakeup.
280     */
281    ActivityRecord mLastNoHistoryActivity = null;
282
283    /**
284     * Current activity that is resumed, or null if there is none.
285     */
286    ActivityRecord mResumedActivity = null;
287
288    /**
289     * This is the last activity that has been started.  It is only used to
290     * identify when multiple activities are started at once so that the user
291     * can be warned they may not be in the activity they think they are.
292     */
293    ActivityRecord mLastStartedActivity = null;
294
295    // The topmost Activity passed to convertToTranslucent(). When non-null it means we are
296    // waiting for all Activities in mUndrawnActivitiesBelowTopTranslucent to be removed as they
297    // are drawn. When the last member of mUndrawnActivitiesBelowTopTranslucent is removed the
298    // Activity in mTranslucentActivityWaiting is notified via
299    // Activity.onTranslucentConversionComplete(false). If a timeout occurs prior to the last
300    // background activity being drawn then the same call will be made with a true value.
301    ActivityRecord mTranslucentActivityWaiting = null;
302    private ArrayList<ActivityRecord> mUndrawnActivitiesBelowTopTranslucent = new ArrayList<>();
303
304    /**
305     * Set when we know we are going to be calling updateConfiguration()
306     * soon, so want to skip intermediate config checks.
307     */
308    boolean mConfigWillChange;
309
310    // Whether or not this stack covers the entire screen; by default stacks are fullscreen
311    boolean mFullscreen = true;
312    // Current bounds of the stack or null if fullscreen.
313    Rect mBounds = null;
314
315    boolean mUpdateBoundsDeferred;
316    boolean mUpdateBoundsDeferredCalled;
317    final Rect mDeferredBounds = new Rect();
318    final Rect mDeferredTaskBounds = new Rect();
319    final Rect mDeferredTaskInsetBounds = new Rect();
320
321    long mLaunchStartTime = 0;
322    long mFullyDrawnStartTime = 0;
323
324    int mCurrentUser;
325
326    final int mStackId;
327    final ActivityContainer mActivityContainer;
328    /** The other stacks, in order, on the attached display. Updated at attach/detach time. */
329    ArrayList<ActivityStack> mStacks;
330    /** The attached Display's unique identifier, or -1 if detached */
331    int mDisplayId;
332
333    /** Run all ActivityStacks through this */
334    final ActivityStackSupervisor mStackSupervisor;
335
336    private final LaunchingTaskPositioner mTaskPositioner;
337
338    static final int PAUSE_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 1;
339    static final int DESTROY_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 2;
340    static final int LAUNCH_TICK_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 3;
341    static final int STOP_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 4;
342    static final int DESTROY_ACTIVITIES_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 5;
343    static final int TRANSLUCENT_TIMEOUT_MSG = ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 6;
344    static final int RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG =
345            ActivityManagerService.FIRST_ACTIVITY_STACK_MSG + 7;
346
347    static class ScheduleDestroyArgs {
348        final ProcessRecord mOwner;
349        final String mReason;
350        ScheduleDestroyArgs(ProcessRecord owner, String reason) {
351            mOwner = owner;
352            mReason = reason;
353        }
354    }
355
356    final Handler mHandler;
357
358    final class ActivityStackHandler extends Handler {
359
360        ActivityStackHandler(Looper looper) {
361            super(looper);
362        }
363
364        @Override
365        public void handleMessage(Message msg) {
366            switch (msg.what) {
367                case PAUSE_TIMEOUT_MSG: {
368                    ActivityRecord r = (ActivityRecord)msg.obj;
369                    // We don't at this point know if the activity is fullscreen,
370                    // so we need to be conservative and assume it isn't.
371                    Slog.w(TAG, "Activity pause timeout for " + r);
372                    synchronized (mService) {
373                        if (r.app != null) {
374                            mService.logAppTooSlow(r.app, r.pauseTime, "pausing " + r);
375                        }
376                        activityPausedLocked(r.appToken, true);
377                    }
378                } break;
379                case LAUNCH_TICK_MSG: {
380                    ActivityRecord r = (ActivityRecord)msg.obj;
381                    synchronized (mService) {
382                        if (r.continueLaunchTickingLocked()) {
383                            mService.logAppTooSlow(r.app, r.launchTickTime, "launching " + r);
384                        }
385                    }
386                } break;
387                case DESTROY_TIMEOUT_MSG: {
388                    ActivityRecord r = (ActivityRecord)msg.obj;
389                    // We don't at this point know if the activity is fullscreen,
390                    // so we need to be conservative and assume it isn't.
391                    Slog.w(TAG, "Activity destroy timeout for " + r);
392                    synchronized (mService) {
393                        activityDestroyedLocked(r != null ? r.appToken : null, "destroyTimeout");
394                    }
395                } break;
396                case STOP_TIMEOUT_MSG: {
397                    ActivityRecord r = (ActivityRecord)msg.obj;
398                    // We don't at this point know if the activity is fullscreen,
399                    // so we need to be conservative and assume it isn't.
400                    Slog.w(TAG, "Activity stop timeout for " + r);
401                    synchronized (mService) {
402                        if (r.isInHistory()) {
403                            activityStoppedLocked(r, null, null, null);
404                        }
405                    }
406                } break;
407                case DESTROY_ACTIVITIES_MSG: {
408                    ScheduleDestroyArgs args = (ScheduleDestroyArgs)msg.obj;
409                    synchronized (mService) {
410                        destroyActivitiesLocked(args.mOwner, args.mReason);
411                    }
412                } break;
413                case TRANSLUCENT_TIMEOUT_MSG: {
414                    synchronized (mService) {
415                        notifyActivityDrawnLocked(null);
416                    }
417                } break;
418                case RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG: {
419                    synchronized (mService) {
420                        final ActivityRecord r = getVisibleBehindActivity();
421                        Slog.e(TAG, "Timeout waiting for cancelVisibleBehind player=" + r);
422                        if (r != null) {
423                            mService.killAppAtUsersRequest(r.app, null);
424                        }
425                    }
426                } break;
427            }
428        }
429    }
430
431    int numActivities() {
432        int count = 0;
433        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
434            count += mTaskHistory.get(taskNdx).mActivities.size();
435        }
436        return count;
437    }
438
439    ActivityStack(ActivityStackSupervisor.ActivityContainer activityContainer,
440            RecentTasks recentTasks) {
441        mActivityContainer = activityContainer;
442        mStackSupervisor = activityContainer.getOuter();
443        mService = mStackSupervisor.mService;
444        mHandler = new ActivityStackHandler(mService.mHandler.getLooper());
445        mWindowManager = mService.mWindowManager;
446        mStackId = activityContainer.mStackId;
447        mCurrentUser = mService.mUserController.getCurrentUserIdLocked();
448        mRecentTasks = recentTasks;
449        mTaskPositioner = mStackId == FREEFORM_WORKSPACE_STACK_ID
450                ? new LaunchingTaskPositioner() : null;
451    }
452
453    void attachDisplay(ActivityStackSupervisor.ActivityDisplay activityDisplay, boolean onTop) {
454        mDisplayId = activityDisplay.mDisplayId;
455        mStacks = activityDisplay.mStacks;
456        mBounds = mWindowManager.attachStack(mStackId, activityDisplay.mDisplayId, onTop);
457        mFullscreen = mBounds == null;
458        if (mTaskPositioner != null) {
459            mTaskPositioner.setDisplay(activityDisplay.mDisplay);
460            mTaskPositioner.configure(mBounds);
461        }
462
463        if (mStackId == DOCKED_STACK_ID) {
464            // If we created a docked stack we want to resize it so it resizes all other stacks
465            // in the system.
466            mStackSupervisor.resizeDockedStackLocked(
467                    mBounds, null, null, null, null, PRESERVE_WINDOWS);
468        }
469    }
470
471    void detachDisplay() {
472        mDisplayId = Display.INVALID_DISPLAY;
473        mStacks = null;
474        if (mTaskPositioner != null) {
475            mTaskPositioner.reset();
476        }
477        mWindowManager.detachStack(mStackId);
478        if (mStackId == DOCKED_STACK_ID) {
479            // If we removed a docked stack we want to resize it so it resizes all other stacks
480            // in the system to fullscreen.
481            mStackSupervisor.resizeDockedStackLocked(
482                    null, null, null, null, null, PRESERVE_WINDOWS);
483        }
484    }
485
486    public void getDisplaySize(Point out) {
487        mActivityContainer.mActivityDisplay.mDisplay.getSize(out);
488    }
489
490    /**
491     * Defers updating the bounds of the stack. If the stack was resized/repositioned while
492     * deferring, the bounds will update in {@link #continueUpdateBounds()}.
493     */
494    void deferUpdateBounds() {
495        if (!mUpdateBoundsDeferred) {
496            mUpdateBoundsDeferred = true;
497            mUpdateBoundsDeferredCalled = false;
498        }
499    }
500
501    /**
502     * Continues updating bounds after updates have been deferred. If there was a resize attempt
503     * between {@link #deferUpdateBounds()} and {@link #continueUpdateBounds()}, the stack will
504     * be resized to that bounds.
505     */
506    void continueUpdateBounds() {
507        final boolean wasDeferred = mUpdateBoundsDeferred;
508        mUpdateBoundsDeferred = false;
509        if (wasDeferred && mUpdateBoundsDeferredCalled) {
510            mStackSupervisor.resizeStackUncheckedLocked(this,
511                    mDeferredBounds.isEmpty() ? null : mDeferredBounds,
512                    mDeferredTaskBounds.isEmpty() ? null : mDeferredTaskBounds,
513                    mDeferredTaskInsetBounds.isEmpty() ? null : mDeferredTaskInsetBounds);
514        }
515    }
516
517    boolean updateBoundsAllowed(Rect bounds, Rect tempTaskBounds,
518            Rect tempTaskInsetBounds) {
519        if (!mUpdateBoundsDeferred) {
520            return true;
521        }
522        if (bounds != null) {
523            mDeferredBounds.set(bounds);
524        } else {
525            mDeferredBounds.setEmpty();
526        }
527        if (tempTaskBounds != null) {
528            mDeferredTaskBounds.set(tempTaskBounds);
529        } else {
530            mDeferredTaskBounds.setEmpty();
531        }
532        if (tempTaskInsetBounds != null) {
533            mDeferredTaskInsetBounds.set(tempTaskInsetBounds);
534        } else {
535            mDeferredTaskInsetBounds.setEmpty();
536        }
537        mUpdateBoundsDeferredCalled = true;
538        return false;
539    }
540
541    void setBounds(Rect bounds) {
542        mBounds = mFullscreen ? null : new Rect(bounds);
543        if (mTaskPositioner != null) {
544            mTaskPositioner.configure(bounds);
545        }
546    }
547
548    boolean okToShowLocked(ActivityRecord r) {
549        return mStackSupervisor.okToShowLocked(r);
550    }
551
552    final ActivityRecord topRunningActivityLocked() {
553        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
554            ActivityRecord r = mTaskHistory.get(taskNdx).topRunningActivityLocked();
555            if (r != null) {
556                return r;
557            }
558        }
559        return null;
560    }
561
562    final ActivityRecord topRunningNonDelayedActivityLocked(ActivityRecord notTop) {
563        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
564            final TaskRecord task = mTaskHistory.get(taskNdx);
565            final ArrayList<ActivityRecord> activities = task.mActivities;
566            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
567                ActivityRecord r = activities.get(activityNdx);
568                if (!r.finishing && !r.delayedResume && r != notTop && okToShowLocked(r)) {
569                    return r;
570                }
571            }
572        }
573        return null;
574    }
575
576    /**
577     * This is a simplified version of topRunningActivityLocked that provides a number of
578     * optional skip-over modes.  It is intended for use with the ActivityController hook only.
579     *
580     * @param token If non-null, any history records matching this token will be skipped.
581     * @param taskId If non-zero, we'll attempt to skip over records with the same task ID.
582     *
583     * @return Returns the HistoryRecord of the next activity on the stack.
584     */
585    final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) {
586        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
587            TaskRecord task = mTaskHistory.get(taskNdx);
588            if (task.taskId == taskId) {
589                continue;
590            }
591            ArrayList<ActivityRecord> activities = task.mActivities;
592            for (int i = activities.size() - 1; i >= 0; --i) {
593                final ActivityRecord r = activities.get(i);
594                // Note: the taskId check depends on real taskId fields being non-zero
595                if (!r.finishing && (token != r.appToken) && okToShowLocked(r)) {
596                    return r;
597                }
598            }
599        }
600        return null;
601    }
602
603    final ActivityRecord topActivity() {
604        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
605            ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
606            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
607                final ActivityRecord r = activities.get(activityNdx);
608                if (!r.finishing) {
609                    return r;
610                }
611            }
612        }
613        return null;
614    }
615
616    final TaskRecord topTask() {
617        final int size = mTaskHistory.size();
618        if (size > 0) {
619            return mTaskHistory.get(size - 1);
620        }
621        return null;
622    }
623
624    TaskRecord taskForIdLocked(int id) {
625        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
626            final TaskRecord task = mTaskHistory.get(taskNdx);
627            if (task.taskId == id) {
628                return task;
629            }
630        }
631        return null;
632    }
633
634    ActivityRecord isInStackLocked(IBinder token) {
635        final ActivityRecord r = ActivityRecord.forTokenLocked(token);
636        return isInStackLocked(r);
637    }
638
639    ActivityRecord isInStackLocked(ActivityRecord r) {
640        if (r == null) {
641            return null;
642        }
643        final TaskRecord task = r.task;
644        if (task != null && task.stack != null
645                && task.mActivities.contains(r) && mTaskHistory.contains(task)) {
646            if (task.stack != this) Slog.w(TAG,
647                    "Illegal state! task does not point to stack it is in.");
648            return r;
649        }
650        return null;
651    }
652
653    final boolean updateLRUListLocked(ActivityRecord r) {
654        final boolean hadit = mLRUActivities.remove(r);
655        mLRUActivities.add(r);
656        return hadit;
657    }
658
659    final boolean isHomeStack() {
660        return mStackId == HOME_STACK_ID;
661    }
662
663    final boolean isDockedStack() {
664        return mStackId == DOCKED_STACK_ID;
665    }
666
667    final boolean isPinnedStack() {
668        return mStackId == PINNED_STACK_ID;
669    }
670
671    final boolean isOnHomeDisplay() {
672        return isAttached() &&
673                mActivityContainer.mActivityDisplay.mDisplayId == Display.DEFAULT_DISPLAY;
674    }
675
676    void moveToFront(String reason) {
677        moveToFront(reason, null);
678    }
679
680    /**
681     * @param reason The reason for moving the stack to the front.
682     * @param task If non-null, the task will be moved to the top of the stack.
683     * */
684    void moveToFront(String reason, TaskRecord task) {
685        if (!isAttached()) {
686            return;
687        }
688
689        mStacks.remove(this);
690        int addIndex = mStacks.size();
691
692        if (addIndex > 0) {
693            final ActivityStack topStack = mStacks.get(addIndex - 1);
694            if (StackId.isAlwaysOnTop(topStack.mStackId) && topStack != this) {
695                // If the top stack is always on top, we move this stack just below it.
696                addIndex--;
697            }
698        }
699
700        mStacks.add(addIndex, this);
701
702        // TODO(multi-display): Needs to also work if focus is moving to the non-home display.
703        if (isOnHomeDisplay()) {
704            mStackSupervisor.setFocusStackUnchecked(reason, this);
705        }
706        if (task != null) {
707            insertTaskAtTop(task, null);
708        } else {
709            task = topTask();
710        }
711        if (task != null) {
712            mWindowManager.moveTaskToTop(task.taskId);
713        }
714    }
715
716    boolean isFocusable() {
717        if (StackId.canReceiveKeys(mStackId)) {
718            return true;
719        }
720        // The stack isn't focusable. See if its top activity is focusable to force focus on the
721        // stack.
722        final ActivityRecord r = topRunningActivityLocked();
723        return r != null && r.isFocusable();
724    }
725
726    final boolean isAttached() {
727        return mStacks != null;
728    }
729
730    /**
731     * Returns the top activity in any existing task matching the given Intent in the input result.
732     * Returns null if no such task is found.
733     */
734    void findTaskLocked(ActivityRecord target, FindTaskResult result) {
735        Intent intent = target.intent;
736        ActivityInfo info = target.info;
737        ComponentName cls = intent.getComponent();
738        if (info.targetActivity != null) {
739            cls = new ComponentName(info.packageName, info.targetActivity);
740        }
741        final int userId = UserHandle.getUserId(info.applicationInfo.uid);
742        boolean isDocument = intent != null & intent.isDocument();
743        // If documentData is non-null then it must match the existing task data.
744        Uri documentData = isDocument ? intent.getData() : null;
745
746        if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Looking for task of " + target + " in " + this);
747        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
748            final TaskRecord task = mTaskHistory.get(taskNdx);
749            if (task.voiceSession != null) {
750                // We never match voice sessions; those always run independently.
751                if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": voice session");
752                continue;
753            }
754            if (task.userId != userId) {
755                // Looking for a different task.
756                if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": different user");
757                continue;
758            }
759            final ActivityRecord r = task.getTopActivity();
760            if (r == null || r.finishing || r.userId != userId ||
761                    r.launchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE) {
762                if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch root " + r);
763                continue;
764            }
765            if (r.mActivityType != target.mActivityType) {
766                if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Skipping " + task + ": mismatch activity type");
767                continue;
768            }
769
770            final Intent taskIntent = task.intent;
771            final Intent affinityIntent = task.affinityIntent;
772            final boolean taskIsDocument;
773            final Uri taskDocumentData;
774            if (taskIntent != null && taskIntent.isDocument()) {
775                taskIsDocument = true;
776                taskDocumentData = taskIntent.getData();
777            } else if (affinityIntent != null && affinityIntent.isDocument()) {
778                taskIsDocument = true;
779                taskDocumentData = affinityIntent.getData();
780            } else {
781                taskIsDocument = false;
782                taskDocumentData = null;
783            }
784
785            if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Comparing existing cls="
786                    + taskIntent.getComponent().flattenToShortString()
787                    + "/aff=" + r.task.rootAffinity + " to new cls="
788                    + intent.getComponent().flattenToShortString() + "/aff=" + info.taskAffinity);
789            if (!isDocument && !taskIsDocument
790                    && result.r == null && task.canMatchRootAffinity()) {
791                if (task.rootAffinity.equals(target.taskAffinity)) {
792                    if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching affinity candidate!");
793                    // It is possible for multiple tasks to have the same root affinity especially
794                    // if they are in separate stacks. We save off this candidate, but keep looking
795                    // to see if there is a better candidate.
796                    result.r = r;
797                    result.matchedByRootAffinity = true;
798                }
799            } else if (taskIntent != null && taskIntent.getComponent() != null &&
800                    taskIntent.getComponent().compareTo(cls) == 0 &&
801                    Objects.equals(documentData, taskDocumentData)) {
802                if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
803                //dump();
804                if (DEBUG_TASKS) Slog.d(TAG_TASKS,
805                        "For Intent " + intent + " bringing to top: " + r.intent);
806                result.r = r;
807                result.matchedByRootAffinity = false;
808                break;
809            } else if (affinityIntent != null && affinityIntent.getComponent() != null &&
810                    affinityIntent.getComponent().compareTo(cls) == 0 &&
811                    Objects.equals(documentData, taskDocumentData)) {
812                if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Found matching class!");
813                //dump();
814                if (DEBUG_TASKS) Slog.d(TAG_TASKS,
815                        "For Intent " + intent + " bringing to top: " + r.intent);
816                result.r = r;
817                result.matchedByRootAffinity = false;
818                break;
819            } else if (DEBUG_TASKS) Slog.d(TAG_TASKS, "Not a match: " + task);
820        }
821    }
822
823    /**
824     * Returns the first activity (starting from the top of the stack) that
825     * is the same as the given activity.  Returns null if no such activity
826     * is found.
827     */
828    ActivityRecord findActivityLocked(Intent intent, ActivityInfo info) {
829        ComponentName cls = intent.getComponent();
830        if (info.targetActivity != null) {
831            cls = new ComponentName(info.packageName, info.targetActivity);
832        }
833        final int userId = UserHandle.getUserId(info.applicationInfo.uid);
834
835        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
836            final TaskRecord task = mTaskHistory.get(taskNdx);
837            final boolean notCurrentUserTask =
838                    !mStackSupervisor.isCurrentProfileLocked(task.userId);
839            final ArrayList<ActivityRecord> activities = task.mActivities;
840
841            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
842                ActivityRecord r = activities.get(activityNdx);
843                if (notCurrentUserTask && (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0) {
844                    continue;
845                }
846                if (!r.finishing && r.intent.getComponent().equals(cls) && r.userId == userId) {
847                    return r;
848                }
849            }
850        }
851
852        return null;
853    }
854
855    /*
856     * Move the activities around in the stack to bring a user to the foreground.
857     */
858    final void switchUserLocked(int userId) {
859        if (mCurrentUser == userId) {
860            return;
861        }
862        mCurrentUser = userId;
863
864        // Move userId's tasks to the top.
865        int index = mTaskHistory.size();
866        for (int i = 0; i < index; ) {
867            final TaskRecord task = mTaskHistory.get(i);
868
869            // NOTE: If {@link TaskRecord#topRunningActivityLocked} return is not null then it is
870            // okay to show the activity when locked.
871            if (mStackSupervisor.isCurrentProfileLocked(task.userId)
872                    || task.topRunningActivityLocked() != null) {
873                if (DEBUG_TASKS) Slog.d(TAG_TASKS, "switchUserLocked: stack=" + getStackId() +
874                        " moving " + task + " to top");
875                mTaskHistory.remove(i);
876                mTaskHistory.add(task);
877                --index;
878                // Use same value for i.
879            } else {
880                ++i;
881            }
882        }
883        if (VALIDATE_TOKENS) {
884            validateAppTokensLocked();
885        }
886    }
887
888    void minimalResumeActivityLocked(ActivityRecord r) {
889        r.state = ActivityState.RESUMED;
890        if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + r + " (starting new instance)"
891                + " callers=" + Debug.getCallers(5));
892        mResumedActivity = r;
893        r.task.touchActiveTime();
894        mRecentTasks.addLocked(r.task);
895        completeResumeLocked(r);
896        mStackSupervisor.checkReadyForSleepLocked();
897        setLaunchTime(r);
898        if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
899                "Launch completed; removing icicle of " + r.icicle);
900    }
901
902    void addRecentActivityLocked(ActivityRecord r) {
903        if (r != null) {
904            mRecentTasks.addLocked(r.task);
905            r.task.touchActiveTime();
906        }
907    }
908
909    private void startLaunchTraces(String packageName) {
910        if (mFullyDrawnStartTime != 0)  {
911            Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
912        }
913        Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: " + packageName, 0);
914        Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
915    }
916
917    private void stopFullyDrawnTraceIfNeeded() {
918        if (mFullyDrawnStartTime != 0 && mLaunchStartTime == 0) {
919            Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "drawing", 0);
920            mFullyDrawnStartTime = 0;
921        }
922    }
923
924    void setLaunchTime(ActivityRecord r) {
925        if (r.displayStartTime == 0) {
926            r.fullyDrawnStartTime = r.displayStartTime = SystemClock.uptimeMillis();
927            if (r.task != null) {
928                r.task.isLaunching = true;
929            }
930            if (mLaunchStartTime == 0) {
931                startLaunchTraces(r.packageName);
932                mLaunchStartTime = mFullyDrawnStartTime = r.displayStartTime;
933            }
934        } else if (mLaunchStartTime == 0) {
935            startLaunchTraces(r.packageName);
936            mLaunchStartTime = mFullyDrawnStartTime = SystemClock.uptimeMillis();
937        }
938    }
939
940    void clearLaunchTime(ActivityRecord r) {
941        // Make sure that there is no activity waiting for this to launch.
942        if (mStackSupervisor.mWaitingActivityLaunched.isEmpty()) {
943            r.displayStartTime = r.fullyDrawnStartTime = 0;
944            if (r.task != null) {
945                r.task.isLaunching = false;
946            }
947        } else {
948            mStackSupervisor.removeTimeoutsForActivityLocked(r);
949            mStackSupervisor.scheduleIdleTimeoutLocked(r);
950        }
951    }
952
953    void awakeFromSleepingLocked() {
954        // Ensure activities are no longer sleeping.
955        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
956            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
957            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
958                activities.get(activityNdx).setSleeping(false);
959            }
960        }
961        if (mPausingActivity != null) {
962            Slog.d(TAG, "awakeFromSleepingLocked: previously pausing activity didn't pause");
963            activityPausedLocked(mPausingActivity.appToken, true);
964        }
965    }
966
967    void updateActivityApplicationInfoLocked(ApplicationInfo aInfo) {
968        final String packageName = aInfo.packageName;
969        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
970            final List<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
971            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
972                if (packageName.equals(activities.get(activityNdx).packageName)) {
973                    activities.get(activityNdx).info.applicationInfo = aInfo;
974                }
975            }
976        }
977    }
978
979    /**
980     * @return true if something must be done before going to sleep.
981     */
982    boolean checkReadyForSleepLocked() {
983        if (mResumedActivity != null) {
984            // Still have something resumed; can't sleep until it is paused.
985            if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep needs to pause " + mResumedActivity);
986            if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
987                    "Sleep => pause with userLeaving=false");
988            startPausingLocked(false, true, false, false);
989            return true;
990        }
991        if (mPausingActivity != null) {
992            // Still waiting for something to pause; can't sleep yet.
993            if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Sleep still waiting to pause " + mPausingActivity);
994            return true;
995        }
996
997        if (hasVisibleBehindActivity()) {
998            // Stop visible behind activity before going to sleep.
999            final ActivityRecord r = getVisibleBehindActivity();
1000            mStackSupervisor.mStoppingActivities.add(r);
1001            if (DEBUG_STATES) Slog.v(TAG_STATES, "Sleep still waiting to stop visible behind " + r);
1002            return true;
1003        }
1004
1005        return false;
1006    }
1007
1008    void goToSleep() {
1009        ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
1010
1011        // Make sure any paused or stopped but visible activities are now sleeping.
1012        // This ensures that the activity's onStop() is called.
1013        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1014            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
1015            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1016                final ActivityRecord r = activities.get(activityNdx);
1017                if (r.state == ActivityState.STOPPING || r.state == ActivityState.STOPPED
1018                        || r.state == ActivityState.PAUSED || r.state == ActivityState.PAUSING) {
1019                    r.setSleeping(true);
1020                }
1021            }
1022        }
1023    }
1024
1025    public final Bitmap screenshotActivitiesLocked(ActivityRecord who) {
1026        if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "screenshotActivitiesLocked: " + who);
1027        if (who.noDisplay) {
1028            if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tNo display");
1029            return null;
1030        }
1031
1032        if (isHomeStack()) {
1033            // This is an optimization -- since we never show Home or Recents within Recents itself,
1034            // we can just go ahead and skip taking the screenshot if this is the home stack.
1035            if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tHome stack");
1036            return null;
1037        }
1038
1039        int w = mService.mThumbnailWidth;
1040        int h = mService.mThumbnailHeight;
1041        float scale = 1f;
1042        if (w > 0) {
1043            if (DEBUG_SCREENSHOTS) Slog.d(TAG_SCREENSHOTS, "\tTaking screenshot");
1044
1045            // When this flag is set, we currently take the fullscreen screenshot of the activity
1046            // but scaled to half the size.  This gives us a "good-enough" fullscreen thumbnail to
1047            // use within SystemUI while keeping memory usage low.
1048            if (ActivityManagerService.TAKE_FULLSCREEN_SCREENSHOTS) {
1049                w = h = -1;
1050                scale = mService.mFullscreenThumbnailScale;
1051            }
1052            return mWindowManager.screenshotApplications(who.appToken, Display.DEFAULT_DISPLAY,
1053                    w, h, scale);
1054        }
1055        Slog.e(TAG, "Invalid thumbnail dimensions: " + w + "x" + h);
1056        return null;
1057    }
1058
1059    /**
1060     * Start pausing the currently resumed activity.  It is an error to call this if there
1061     * is already an activity being paused or there is no resumed activity.
1062     *
1063     * @param userLeaving True if this should result in an onUserLeaving to the current activity.
1064     * @param uiSleeping True if this is happening with the user interface going to sleep (the
1065     * screen turning off).
1066     * @param resuming True if this is being called as part of resuming the top activity, so
1067     * we shouldn't try to instigate a resume here.
1068     * @param dontWait True if the caller does not want to wait for the pause to complete.  If
1069     * set to true, we will immediately complete the pause here before returning.
1070     * @return Returns true if an activity now is in the PAUSING state, and we are waiting for
1071     * it to tell us when it is done.
1072     */
1073    final boolean startPausingLocked(boolean userLeaving, boolean uiSleeping, boolean resuming,
1074            boolean dontWait) {
1075        if (mPausingActivity != null) {
1076            Slog.wtf(TAG, "Going to pause when pause is already pending for " + mPausingActivity
1077                    + " state=" + mPausingActivity.state);
1078            if (!mService.isSleeping()) {
1079                // Avoid recursion among check for sleep and complete pause during sleeping.
1080                // Because activity will be paused immediately after resume, just let pause
1081                // be completed by the order of activity paused from clients.
1082                completePauseLocked(false);
1083            }
1084        }
1085        ActivityRecord prev = mResumedActivity;
1086        if (prev == null) {
1087            if (!resuming) {
1088                Slog.wtf(TAG, "Trying to pause when nothing is resumed");
1089                mStackSupervisor.resumeFocusedStackTopActivityLocked();
1090            }
1091            return false;
1092        }
1093
1094        if (mActivityContainer.mParentActivity == null) {
1095            // Top level stack, not a child. Look for child stacks.
1096            mStackSupervisor.pauseChildStacks(prev, userLeaving, uiSleeping, resuming, dontWait);
1097        }
1098
1099        if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSING: " + prev);
1100        else if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Start pausing: " + prev);
1101        mResumedActivity = null;
1102        mPausingActivity = prev;
1103        mLastPausedActivity = prev;
1104        mLastNoHistoryActivity = (prev.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
1105                || (prev.info.flags & ActivityInfo.FLAG_NO_HISTORY) != 0 ? prev : null;
1106        prev.state = ActivityState.PAUSING;
1107        prev.task.touchActiveTime();
1108        clearLaunchTime(prev);
1109        final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
1110        if (mService.mHasRecents
1111                && (next == null || next.noDisplay || next.task != prev.task || uiSleeping)) {
1112            prev.mUpdateTaskThumbnailWhenHidden = true;
1113        }
1114        stopFullyDrawnTraceIfNeeded();
1115
1116        mService.updateCpuStats();
1117
1118        if (prev.app != null && prev.app.thread != null) {
1119            if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueueing pending pause: " + prev);
1120            try {
1121                EventLog.writeEvent(EventLogTags.AM_PAUSE_ACTIVITY,
1122                        prev.userId, System.identityHashCode(prev),
1123                        prev.shortComponentName);
1124                mService.updateUsageStats(prev, false);
1125                prev.app.thread.schedulePauseActivity(prev.appToken, prev.finishing,
1126                        userLeaving, prev.configChangeFlags, dontWait);
1127            } catch (Exception e) {
1128                // Ignore exception, if process died other code will cleanup.
1129                Slog.w(TAG, "Exception thrown during pause", e);
1130                mPausingActivity = null;
1131                mLastPausedActivity = null;
1132                mLastNoHistoryActivity = null;
1133            }
1134        } else {
1135            mPausingActivity = null;
1136            mLastPausedActivity = null;
1137            mLastNoHistoryActivity = null;
1138        }
1139
1140        // If we are not going to sleep, we want to ensure the device is
1141        // awake until the next activity is started.
1142        if (!uiSleeping && !mService.isSleepingOrShuttingDown()) {
1143            mStackSupervisor.acquireLaunchWakelock();
1144        }
1145
1146        if (mPausingActivity != null) {
1147            // Have the window manager pause its key dispatching until the new
1148            // activity has started.  If we're pausing the activity just because
1149            // the screen is being turned off and the UI is sleeping, don't interrupt
1150            // key dispatch; the same activity will pick it up again on wakeup.
1151            if (!uiSleeping) {
1152                prev.pauseKeyDispatchingLocked();
1153            } else if (DEBUG_PAUSE) {
1154                 Slog.v(TAG_PAUSE, "Key dispatch not paused for screen off");
1155            }
1156
1157            if (dontWait) {
1158                // If the caller said they don't want to wait for the pause, then complete
1159                // the pause now.
1160                completePauseLocked(false);
1161                return false;
1162
1163            } else {
1164                // Schedule a pause timeout in case the app doesn't respond.
1165                // We don't give it much time because this directly impacts the
1166                // responsiveness seen by the user.
1167                Message msg = mHandler.obtainMessage(PAUSE_TIMEOUT_MSG);
1168                msg.obj = prev;
1169                prev.pauseTime = SystemClock.uptimeMillis();
1170                mHandler.sendMessageDelayed(msg, PAUSE_TIMEOUT);
1171                if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Waiting for pause to complete...");
1172                return true;
1173            }
1174
1175        } else {
1176            // This activity failed to schedule the
1177            // pause, so just treat it as being paused now.
1178            if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Activity not running, resuming next.");
1179            if (!resuming) {
1180                mStackSupervisor.resumeFocusedStackTopActivityLocked();
1181            }
1182            return false;
1183        }
1184    }
1185
1186    final void activityPausedLocked(IBinder token, boolean timeout) {
1187        if (DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1188            "Activity paused: token=" + token + ", timeout=" + timeout);
1189
1190        final ActivityRecord r = isInStackLocked(token);
1191        if (r != null) {
1192            mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
1193            if (mPausingActivity == r) {
1194                if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to PAUSED: " + r
1195                        + (timeout ? " (due to timeout)" : " (pause complete)"));
1196                completePauseLocked(true);
1197                return;
1198            } else {
1199                EventLog.writeEvent(EventLogTags.AM_FAILED_TO_PAUSE,
1200                        r.userId, System.identityHashCode(r), r.shortComponentName,
1201                        mPausingActivity != null
1202                            ? mPausingActivity.shortComponentName : "(none)");
1203                if (r.state == ActivityState.PAUSING) {
1204                    r.state = ActivityState.PAUSED;
1205                    if (r.finishing) {
1206                        if (DEBUG_PAUSE) Slog.v(TAG,
1207                                "Executing finish of failed to pause activity: " + r);
1208                        finishCurrentActivityLocked(r, FINISH_AFTER_VISIBLE, false);
1209                    }
1210                }
1211            }
1212        }
1213        mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
1214    }
1215
1216    final void activityResumedLocked(IBinder token) {
1217        final ActivityRecord r = ActivityRecord.forTokenLocked(token);
1218        if (DEBUG_SAVED_STATE) Slog.i(TAG_STATES, "Resumed activity; dropping state of: " + r);
1219        r.icicle = null;
1220        r.haveState = false;
1221    }
1222
1223    final void activityStoppedLocked(ActivityRecord r, Bundle icicle,
1224            PersistableBundle persistentState, CharSequence description) {
1225        if (r.state != ActivityState.STOPPING) {
1226            Slog.i(TAG, "Activity reported stop, but no longer stopping: " + r);
1227            mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1228            return;
1229        }
1230        if (persistentState != null) {
1231            r.persistentState = persistentState;
1232            mService.notifyTaskPersisterLocked(r.task, false);
1233        }
1234        if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE, "Saving icicle of " + r + ": " + icicle);
1235        if (icicle != null) {
1236            // If icicle is null, this is happening due to a timeout, so we
1237            // haven't really saved the state.
1238            r.icicle = icicle;
1239            r.haveState = true;
1240            r.launchCount = 0;
1241            r.updateThumbnailLocked(null, description);
1242        }
1243        if (!r.stopped) {
1244            if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to STOPPED: " + r + " (stop complete)");
1245            mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
1246            r.stopped = true;
1247            r.state = ActivityState.STOPPED;
1248
1249            mWindowManager.notifyAppStopped(r.appToken, true);
1250
1251            if (getVisibleBehindActivity() == r) {
1252                mStackSupervisor.requestVisibleBehindLocked(r, false);
1253            }
1254            if (r.finishing) {
1255                r.clearOptionsLocked();
1256            } else {
1257                if (r.deferRelaunchUntilPaused) {
1258                    destroyActivityLocked(r, true, "stop-config");
1259                    mStackSupervisor.resumeFocusedStackTopActivityLocked();
1260                } else {
1261                    mStackSupervisor.updatePreviousProcessLocked(r);
1262                }
1263            }
1264        }
1265    }
1266
1267    private void completePauseLocked(boolean resumeNext) {
1268        ActivityRecord prev = mPausingActivity;
1269        if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Complete pause: " + prev);
1270
1271        if (prev != null) {
1272            final boolean wasStopping = prev.state == ActivityState.STOPPING;
1273            prev.state = ActivityState.PAUSED;
1274            if (prev.finishing) {
1275                if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Executing finish of activity: " + prev);
1276                prev = finishCurrentActivityLocked(prev, FINISH_AFTER_VISIBLE, false);
1277            } else if (prev.app != null) {
1278                if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Enqueue pending stop if needed: " + prev
1279                        + " wasStopping=" + wasStopping + " visible=" + prev.visible);
1280                if (mStackSupervisor.mWaitingVisibleActivities.remove(prev)) {
1281                    if (DEBUG_SWITCH || DEBUG_PAUSE) Slog.v(TAG_PAUSE,
1282                            "Complete pause, no longer waiting: " + prev);
1283                }
1284                if (prev.deferRelaunchUntilPaused) {
1285                    // Complete the deferred relaunch that was waiting for pause to complete.
1286                    if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Re-launching after pause: " + prev);
1287                    relaunchActivityLocked(prev, prev.configChangeFlags, false,
1288                            prev.preserveWindowOnDeferredRelaunch);
1289                } else if (wasStopping) {
1290                    // We are also stopping, the stop request must have gone soon after the pause.
1291                    // We can't clobber it, because the stop confirmation will not be handled.
1292                    // We don't need to schedule another stop, we only need to let it happen.
1293                    prev.state = ActivityState.STOPPING;
1294                } else if ((!prev.visible && !hasVisibleBehindActivity())
1295                        || mService.isSleepingOrShuttingDown()) {
1296                    // If we were visible then resumeTopActivities will release resources before
1297                    // stopping.
1298                    addToStopping(prev, true /* immediate */);
1299                }
1300            } else {
1301                if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "App died during pause, not stopping: " + prev);
1302                prev = null;
1303            }
1304            // It is possible the activity was freezing the screen before it was paused.
1305            // In that case go ahead and remove the freeze this activity has on the screen
1306            // since it is no longer visible.
1307            prev.stopFreezingScreenLocked(true /*force*/);
1308            mPausingActivity = null;
1309        }
1310
1311        if (resumeNext) {
1312            final ActivityStack topStack = mStackSupervisor.getFocusedStack();
1313            if (!mService.isSleepingOrShuttingDown()) {
1314                mStackSupervisor.resumeFocusedStackTopActivityLocked(topStack, prev, null);
1315            } else {
1316                mStackSupervisor.checkReadyForSleepLocked();
1317                ActivityRecord top = topStack.topRunningActivityLocked();
1318                if (top == null || (prev != null && top != prev)) {
1319                    // If there are no more activities available to run, do resume anyway to start
1320                    // something. Also if the top activity on the stack is not the just paused
1321                    // activity, we need to go ahead and resume it to ensure we complete an
1322                    // in-flight app switch.
1323                    mStackSupervisor.resumeFocusedStackTopActivityLocked();
1324                }
1325            }
1326        }
1327
1328        if (prev != null) {
1329            prev.resumeKeyDispatchingLocked();
1330
1331            if (prev.app != null && prev.cpuTimeAtResume > 0
1332                    && mService.mBatteryStatsService.isOnBattery()) {
1333                long diff = mService.mProcessCpuTracker.getCpuTimeForPid(prev.app.pid)
1334                        - prev.cpuTimeAtResume;
1335                if (diff > 0) {
1336                    BatteryStatsImpl bsi = mService.mBatteryStatsService.getActiveStatistics();
1337                    synchronized (bsi) {
1338                        BatteryStatsImpl.Uid.Proc ps =
1339                                bsi.getProcessStatsLocked(prev.info.applicationInfo.uid,
1340                                        prev.info.packageName);
1341                        if (ps != null) {
1342                            ps.addForegroundTimeLocked(diff);
1343                        }
1344                    }
1345                }
1346            }
1347            prev.cpuTimeAtResume = 0; // reset it
1348        }
1349
1350        // Notify when the task stack has changed, but only if visibilities changed (not just focus)
1351        if (mStackSupervisor.mAppVisibilitiesChangedSinceLastPause) {
1352            mService.notifyTaskStackChangedLocked();
1353            mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = false;
1354        }
1355
1356        mStackSupervisor.ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
1357    }
1358
1359    private void addToStopping(ActivityRecord r, boolean immediate) {
1360        if (!mStackSupervisor.mStoppingActivities.contains(r)) {
1361            mStackSupervisor.mStoppingActivities.add(r);
1362        }
1363
1364        // If we already have a few activities waiting to stop, then give up
1365        // on things going idle and start clearing them out. Or if r is the
1366        // last of activity of the last task the stack will be empty and must
1367        // be cleared immediately.
1368        boolean forceIdle = mStackSupervisor.mStoppingActivities.size() > MAX_STOPPING_TO_FORCE
1369                || (r.frontOfTask && mTaskHistory.size() <= 1);
1370
1371        if (immediate || forceIdle) {
1372            if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Scheduling idle now: forceIdle="
1373                    + forceIdle + "immediate=" + immediate);
1374            mStackSupervisor.scheduleIdleLocked();
1375        } else {
1376            mStackSupervisor.checkReadyForSleepLocked();
1377        }
1378    }
1379
1380    /**
1381     * Once we know that we have asked an application to put an activity in
1382     * the resumed state (either by launching it or explicitly telling it),
1383     * this function updates the rest of our state to match that fact.
1384     */
1385    private void completeResumeLocked(ActivityRecord next) {
1386        next.visible = true;
1387        next.idle = false;
1388        next.results = null;
1389        next.newIntents = null;
1390        next.stopped = false;
1391
1392        if (next.isHomeActivity()) {
1393            ProcessRecord app = next.task.mActivities.get(0).app;
1394            if (app != null && app != mService.mHomeProcess) {
1395                mService.mHomeProcess = app;
1396            }
1397        }
1398
1399        if (next.nowVisible) {
1400            // We won't get a call to reportActivityVisibleLocked() so dismiss lockscreen now.
1401            mStackSupervisor.notifyActivityDrawnForKeyguard();
1402        }
1403
1404        // schedule an idle timeout in case the app doesn't do it for us.
1405        mStackSupervisor.scheduleIdleTimeoutLocked(next);
1406
1407        mStackSupervisor.reportResumedActivityLocked(next);
1408
1409        next.resumeKeyDispatchingLocked();
1410        mNoAnimActivities.clear();
1411
1412        // Mark the point when the activity is resuming
1413        // TODO: To be more accurate, the mark should be before the onCreate,
1414        //       not after the onResume. But for subsequent starts, onResume is fine.
1415        if (next.app != null) {
1416            next.cpuTimeAtResume = mService.mProcessCpuTracker.getCpuTimeForPid(next.app.pid);
1417        } else {
1418            next.cpuTimeAtResume = 0; // Couldn't get the cpu time of process
1419        }
1420
1421        next.returningOptions = null;
1422
1423        if (getVisibleBehindActivity() == next) {
1424            // When resuming an activity, require it to call requestVisibleBehind() again.
1425            setVisibleBehindActivity(null);
1426        }
1427    }
1428
1429    private void setVisible(ActivityRecord r, boolean visible) {
1430        r.visible = visible;
1431        if (!visible && r.mUpdateTaskThumbnailWhenHidden) {
1432            r.updateThumbnailLocked(r.task.stack.screenshotActivitiesLocked(r), null);
1433            r.mUpdateTaskThumbnailWhenHidden = false;
1434        }
1435        mWindowManager.setAppVisibility(r.appToken, visible);
1436        final ArrayList<ActivityContainer> containers = r.mChildContainers;
1437        for (int containerNdx = containers.size() - 1; containerNdx >= 0; --containerNdx) {
1438            ActivityContainer container = containers.get(containerNdx);
1439            container.setVisible(visible);
1440        }
1441        mStackSupervisor.mAppVisibilitiesChangedSinceLastPause = true;
1442    }
1443
1444    // Find the first visible activity above the passed activity and if it is translucent return it
1445    // otherwise return null;
1446    ActivityRecord findNextTranslucentActivity(ActivityRecord r) {
1447        TaskRecord task = r.task;
1448        if (task == null) {
1449            return null;
1450        }
1451
1452        ActivityStack stack = task.stack;
1453        if (stack == null) {
1454            return null;
1455        }
1456
1457        int stackNdx = mStacks.indexOf(stack);
1458
1459        ArrayList<TaskRecord> tasks = stack.mTaskHistory;
1460        int taskNdx = tasks.indexOf(task);
1461
1462        ArrayList<ActivityRecord> activities = task.mActivities;
1463        int activityNdx = activities.indexOf(r) + 1;
1464
1465        final int numStacks = mStacks.size();
1466        while (stackNdx < numStacks) {
1467            final ActivityStack historyStack = mStacks.get(stackNdx);
1468            tasks = historyStack.mTaskHistory;
1469            final int numTasks = tasks.size();
1470            while (taskNdx < numTasks) {
1471                final TaskRecord currentTask = tasks.get(taskNdx);
1472                activities = currentTask.mActivities;
1473                final int numActivities = activities.size();
1474                while (activityNdx < numActivities) {
1475                    final ActivityRecord activity = activities.get(activityNdx);
1476                    if (!activity.finishing) {
1477                        return historyStack.mFullscreen
1478                                && currentTask.mFullscreen && activity.fullscreen ? null : activity;
1479                    }
1480                    ++activityNdx;
1481                }
1482                activityNdx = 0;
1483                ++taskNdx;
1484            }
1485            taskNdx = 0;
1486            ++stackNdx;
1487        }
1488
1489        return null;
1490    }
1491
1492    ActivityStack getNextFocusableStackLocked() {
1493        ArrayList<ActivityStack> stacks = mStacks;
1494        final ActivityRecord parent = mActivityContainer.mParentActivity;
1495        if (parent != null) {
1496            stacks = parent.task.stack.mStacks;
1497        }
1498        if (stacks != null) {
1499            for (int i = stacks.size() - 1; i >= 0; --i) {
1500                ActivityStack stack = stacks.get(i);
1501                if (stack != this && stack.isFocusable()
1502                        && stack.getStackVisibilityLocked(null) != STACK_INVISIBLE) {
1503                    return stack;
1504                }
1505            }
1506        }
1507        return null;
1508    }
1509
1510    /** Returns true if the stack contains a fullscreen task. */
1511    private boolean hasFullscreenTask() {
1512        for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
1513            final TaskRecord task = mTaskHistory.get(i);
1514            if (task.mFullscreen) {
1515                return true;
1516            }
1517        }
1518        return false;
1519    }
1520
1521    /**
1522     * Returns true if the stack is translucent and can have other contents visible behind it if
1523     * needed. A stack is considered translucent if it don't contain a visible or
1524     * starting (about to be visible) activity that is fullscreen (opaque).
1525     * @param starting The currently starting activity or null if there is none.
1526     * @param stackBehindId The id of the stack directly behind this one.
1527     */
1528    private boolean isStackTranslucent(ActivityRecord starting, int stackBehindId) {
1529        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1530            final TaskRecord task = mTaskHistory.get(taskNdx);
1531            final ArrayList<ActivityRecord> activities = task.mActivities;
1532            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1533                final ActivityRecord r = activities.get(activityNdx);
1534
1535                if (r.finishing) {
1536                    // We don't factor in finishing activities when determining translucency since
1537                    // they will be gone soon.
1538                    continue;
1539                }
1540
1541                if (!r.visible && r != starting) {
1542                    // Also ignore invisible activities that are not the currently starting
1543                    // activity (about to be visible).
1544                    continue;
1545                }
1546
1547                if (r.fullscreen) {
1548                    // Stack isn't translucent if it has at least one fullscreen activity
1549                    // that is visible.
1550                    return false;
1551                }
1552
1553                if (!isHomeStack() && r.frontOfTask
1554                        && task.isOverHomeStack() && stackBehindId != HOME_STACK_ID) {
1555                    // Stack isn't translucent if it's top activity should have the home stack
1556                    // behind it and the stack currently behind it isn't the home stack.
1557                    return false;
1558                }
1559            }
1560        }
1561        return true;
1562    }
1563
1564    /**
1565     * Returns stack's visibility: {@link #STACK_INVISIBLE}, {@link #STACK_VISIBLE} or
1566     * {@link #STACK_VISIBLE_ACTIVITY_BEHIND}.
1567     * @param starting The currently starting activity or null if there is none.
1568     */
1569    int getStackVisibilityLocked(ActivityRecord starting) {
1570        if (!isAttached()) {
1571            return STACK_INVISIBLE;
1572        }
1573
1574        if (mStackSupervisor.isFrontStack(this) || mStackSupervisor.isFocusedStack(this)) {
1575            return STACK_VISIBLE;
1576        }
1577
1578        final int stackIndex = mStacks.indexOf(this);
1579
1580        if (stackIndex == mStacks.size() - 1) {
1581            Slog.wtf(TAG,
1582                    "Stack=" + this + " isn't front stack but is at the top of the stack list");
1583            return STACK_INVISIBLE;
1584        }
1585
1586        final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
1587        if (isLockscreenShown && !StackId.isAllowedOverLockscreen(mStackId)) {
1588            return STACK_INVISIBLE;
1589        }
1590
1591        final ActivityStack focusedStack = mStackSupervisor.getFocusedStack();
1592        final int focusedStackId = focusedStack.mStackId;
1593
1594        if (mStackId == FULLSCREEN_WORKSPACE_STACK_ID
1595                && hasVisibleBehindActivity() && focusedStackId == HOME_STACK_ID
1596                && !focusedStack.topActivity().fullscreen) {
1597            // The fullscreen stack should be visible if it has a visible behind activity behind
1598            // the home stack that is translucent.
1599            return STACK_VISIBLE_ACTIVITY_BEHIND;
1600        }
1601
1602        if (mStackId == DOCKED_STACK_ID) {
1603            // Docked stack is always visible, except in the case where the top running activity
1604            // task in the focus stack doesn't support any form of resizing but we show it for the
1605            // home task even though it's not resizable.
1606            final ActivityRecord r = focusedStack.topRunningActivityLocked();
1607            final TaskRecord task = r != null ? r.task : null;
1608            return task == null || task.canGoInDockedStack() || task.isHomeTask() ? STACK_VISIBLE
1609                    : STACK_INVISIBLE;
1610        }
1611
1612        // Find the first stack behind focused stack that actually got something visible.
1613        int stackBehindFocusedIndex = mStacks.indexOf(focusedStack) - 1;
1614        while (stackBehindFocusedIndex >= 0 &&
1615                mStacks.get(stackBehindFocusedIndex).topRunningActivityLocked() == null) {
1616            stackBehindFocusedIndex--;
1617        }
1618        if ((focusedStackId == DOCKED_STACK_ID || focusedStackId == PINNED_STACK_ID)
1619                && stackIndex == stackBehindFocusedIndex) {
1620            // Stacks directly behind the docked or pinned stack are always visible.
1621            return STACK_VISIBLE;
1622        }
1623
1624        final int stackBehindFocusedId = (stackBehindFocusedIndex >= 0)
1625                ? mStacks.get(stackBehindFocusedIndex).mStackId : INVALID_STACK_ID;
1626
1627        if (focusedStackId == FULLSCREEN_WORKSPACE_STACK_ID
1628                && focusedStack.isStackTranslucent(starting, stackBehindFocusedId)) {
1629            // Stacks behind the fullscreen stack with a translucent activity are always
1630            // visible so they can act as a backdrop to the translucent activity.
1631            // For example, dialog activities
1632            if (stackIndex == stackBehindFocusedIndex) {
1633                return STACK_VISIBLE;
1634            }
1635            if (stackBehindFocusedIndex >= 0) {
1636                if ((stackBehindFocusedId == DOCKED_STACK_ID
1637                        || stackBehindFocusedId == PINNED_STACK_ID)
1638                        && stackIndex == (stackBehindFocusedIndex - 1)) {
1639                    // The stack behind the docked or pinned stack is also visible so we can have a
1640                    // complete backdrop to the translucent activity when the docked stack is up.
1641                    return STACK_VISIBLE;
1642                }
1643            }
1644        }
1645
1646        if (StackId.isStaticStack(mStackId)) {
1647            // Visibility of any static stack should have been determined by the conditions above.
1648            return STACK_INVISIBLE;
1649        }
1650
1651        for (int i = stackIndex + 1; i < mStacks.size(); i++) {
1652            final ActivityStack stack = mStacks.get(i);
1653
1654            if (!stack.mFullscreen && !stack.hasFullscreenTask()) {
1655                continue;
1656            }
1657
1658            if (!StackId.isDynamicStacksVisibleBehindAllowed(stack.mStackId)) {
1659                // These stacks can't have any dynamic stacks visible behind them.
1660                return STACK_INVISIBLE;
1661            }
1662
1663            if (!stack.isStackTranslucent(starting, INVALID_STACK_ID)) {
1664                return STACK_INVISIBLE;
1665            }
1666        }
1667
1668        return STACK_VISIBLE;
1669    }
1670
1671    final int rankTaskLayers(int baseLayer) {
1672        int layer = 0;
1673        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1674            final TaskRecord task = mTaskHistory.get(taskNdx);
1675            ActivityRecord r = task.topRunningActivityLocked();
1676            if (r == null || r.finishing || !r.visible) {
1677                task.mLayerRank = -1;
1678            } else {
1679                task.mLayerRank = baseLayer + layer++;
1680            }
1681        }
1682        return layer;
1683    }
1684
1685    /**
1686     * Make sure that all activities that need to be visible (that is, they
1687     * currently can be seen by the user) actually are.
1688     */
1689    final void ensureActivitiesVisibleLocked(ActivityRecord starting, int configChanges,
1690            boolean preserveWindows) {
1691        ActivityRecord top = topRunningActivityLocked();
1692        if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "ensureActivitiesVisible behind " + top
1693                + " configChanges=0x" + Integer.toHexString(configChanges));
1694        if (top != null) {
1695            checkTranslucentActivityWaiting(top);
1696        }
1697
1698        // If the top activity is not fullscreen, then we need to
1699        // make sure any activities under it are now visible.
1700        boolean aboveTop = top != null;
1701        final int stackVisibility = getStackVisibilityLocked(starting);
1702        final boolean stackInvisible = stackVisibility != STACK_VISIBLE;
1703        final boolean stackVisibleBehind = stackVisibility == STACK_VISIBLE_ACTIVITY_BEHIND;
1704        boolean behindFullscreenActivity = stackInvisible;
1705        boolean resumeNextActivity = isFocusable() && (isInStackLocked(starting) == null);
1706        boolean behindTranslucentActivity = false;
1707        final ActivityRecord visibleBehind = getVisibleBehindActivity();
1708        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1709            final TaskRecord task = mTaskHistory.get(taskNdx);
1710            final ArrayList<ActivityRecord> activities = task.mActivities;
1711            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1712                final ActivityRecord r = activities.get(activityNdx);
1713                if (r.finishing) {
1714                    // Normally the screenshot will be taken in makeInvisible(). When an activity
1715                    // is finishing, we no longer change its visibility, but we still need to take
1716                    // the screenshots if startPausingLocked decided it should be taken.
1717                    if (r.mUpdateTaskThumbnailWhenHidden) {
1718                        r.updateThumbnailLocked(screenshotActivitiesLocked(r), null);
1719                        r.mUpdateTaskThumbnailWhenHidden = false;
1720                    }
1721                    continue;
1722                }
1723                final boolean isTop = r == top;
1724                if (aboveTop && !isTop) {
1725                    continue;
1726                }
1727                aboveTop = false;
1728                // mLaunchingBehind: Activities launching behind are at the back of the task stack
1729                // but must be drawn initially for the animation as though they were visible.
1730                final boolean activityVisibleBehind =
1731                        (behindTranslucentActivity || stackVisibleBehind) && visibleBehind == r;
1732                final boolean isVisible = (!behindFullscreenActivity || r.mLaunchTaskBehind
1733                        || activityVisibleBehind) && okToShowLocked(r);
1734                if (isVisible) {
1735                    if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make visible? " + r
1736                            + " finishing=" + r.finishing + " state=" + r.state);
1737                    // First: if this is not the current activity being started, make
1738                    // sure it matches the current configuration.
1739                    if (r != starting) {
1740                        ensureActivityConfigurationLocked(r, 0, preserveWindows);
1741                    }
1742
1743                    if (r.app == null || r.app.thread == null) {
1744                        if (makeVisibleAndRestartIfNeeded(starting, configChanges, isTop,
1745                                resumeNextActivity, r)) {
1746                            if (activityNdx >= activities.size()) {
1747                                // Record may be removed if its process needs to restart.
1748                                activityNdx = activities.size() - 1;
1749                            } else {
1750                                resumeNextActivity = false;
1751                            }
1752                        }
1753                    } else if (r.visible) {
1754                        // If this activity is already visible, then there is nothing to do here.
1755                        if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1756                                "Skipping: already visible at " + r);
1757
1758                        if (handleAlreadyVisible(r)) {
1759                            resumeNextActivity = false;
1760                        }
1761                    } else {
1762                        makeVisibleIfNeeded(starting, r);
1763                    }
1764                    // Aggregate current change flags.
1765                    configChanges |= r.configChangeFlags;
1766                    behindFullscreenActivity = updateBehindFullscreen(stackInvisible,
1767                            behindFullscreenActivity, task, r);
1768                    if (behindFullscreenActivity && !r.fullscreen) {
1769                        behindTranslucentActivity = true;
1770                    }
1771                } else {
1772                    if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Make invisible? " + r
1773                            + " finishing=" + r.finishing + " state=" + r.state + " stackInvisible="
1774                            + stackInvisible + " behindFullscreenActivity="
1775                            + behindFullscreenActivity + " mLaunchTaskBehind="
1776                            + r.mLaunchTaskBehind);
1777                    makeInvisible(r, visibleBehind);
1778                }
1779            }
1780            if (mStackId == FREEFORM_WORKSPACE_STACK_ID) {
1781                // The visibility of tasks and the activities they contain in freeform stack are
1782                // determined individually unlike other stacks where the visibility or fullscreen
1783                // status of an activity in a previous task affects other.
1784                behindFullscreenActivity = stackVisibility == STACK_INVISIBLE;
1785            } else if (mStackId == HOME_STACK_ID) {
1786                if (task.isHomeTask()) {
1787                    if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Home task: at " + task
1788                            + " stackInvisible=" + stackInvisible
1789                            + " behindFullscreenActivity=" + behindFullscreenActivity);
1790                    // No other task in the home stack should be visible behind the home activity.
1791                    // Home activities is usually a translucent activity with the wallpaper behind
1792                    // them. However, when they don't have the wallpaper behind them, we want to
1793                    // show activities in the next application stack behind them vs. another
1794                    // task in the home stack like recents.
1795                    behindFullscreenActivity = true;
1796                } else if (task.isRecentsTask()
1797                        && task.getTaskToReturnTo() == APPLICATION_ACTIVITY_TYPE) {
1798                    if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1799                            "Recents task returning to app: at " + task
1800                                    + " stackInvisible=" + stackInvisible
1801                                    + " behindFullscreenActivity=" + behindFullscreenActivity);
1802                    // We don't want any other tasks in the home stack visible if the recents
1803                    // activity is going to be returning to an application activity type.
1804                    // We do this to preserve the visible order the user used to get into the
1805                    // recents activity. The recents activity is normally translucent and if it
1806                    // doesn't have the wallpaper behind it the next activity in the home stack
1807                    // shouldn't be visible when the home stack is brought to the front to display
1808                    // the recents activity from an app.
1809                    behindFullscreenActivity = true;
1810                }
1811
1812            }
1813        }
1814
1815        if (mTranslucentActivityWaiting != null &&
1816                mUndrawnActivitiesBelowTopTranslucent.isEmpty()) {
1817            // Nothing is getting drawn or everything was already visible, don't wait for timeout.
1818            notifyActivityDrawnLocked(null);
1819        }
1820    }
1821
1822    private void checkTranslucentActivityWaiting(ActivityRecord top) {
1823        if (mTranslucentActivityWaiting != top) {
1824            mUndrawnActivitiesBelowTopTranslucent.clear();
1825            if (mTranslucentActivityWaiting != null) {
1826                // Call the callback with a timeout indication.
1827                notifyActivityDrawnLocked(null);
1828                mTranslucentActivityWaiting = null;
1829            }
1830            mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
1831        }
1832    }
1833
1834    private boolean makeVisibleAndRestartIfNeeded(ActivityRecord starting, int configChanges,
1835            boolean isTop, boolean andResume, ActivityRecord r) {
1836        // We need to make sure the app is running if it's the top, or it is just made visible from
1837        // invisible. If the app is already visible, it must have died while it was visible. In this
1838        // case, we'll show the dead window but will not restart the app. Otherwise we could end up
1839        // thrashing.
1840        if (isTop || !r.visible) {
1841            // This activity needs to be visible, but isn't even running...
1842            // get it started and resume if no other stack in this stack is resumed.
1843            if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Start and freeze screen for " + r);
1844            if (r != starting) {
1845                r.startFreezingScreenLocked(r.app, configChanges);
1846            }
1847            if (!r.visible || r.mLaunchTaskBehind) {
1848                if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Starting and making visible: " + r);
1849                setVisible(r, true);
1850            }
1851            if (r != starting) {
1852                mStackSupervisor.startSpecificActivityLocked(r, andResume, false);
1853                return true;
1854            }
1855        }
1856        return false;
1857    }
1858
1859    private void makeInvisible(ActivityRecord r, ActivityRecord visibleBehind) {
1860        if (!r.visible) {
1861            if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Already invisible: " + r);
1862            return;
1863        }
1864        // Now for any activities that aren't visible to the user, make sure they no longer are
1865        // keeping the screen frozen.
1866        if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Making invisible: " + r + " " + r.state);
1867        try {
1868            setVisible(r, false);
1869            switch (r.state) {
1870                case STOPPING:
1871                case STOPPED:
1872                    if (r.app != null && r.app.thread != null) {
1873                        if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1874                                "Scheduling invisibility: " + r);
1875                        r.app.thread.scheduleWindowVisibility(r.appToken, false);
1876                    }
1877                    break;
1878
1879                case INITIALIZING:
1880                case RESUMED:
1881                case PAUSING:
1882                case PAUSED:
1883                    // This case created for transitioning activities from
1884                    // translucent to opaque {@link Activity#convertToOpaque}.
1885                    if (visibleBehind == r) {
1886                        releaseBackgroundResources(r);
1887                    } else {
1888                        addToStopping(r, true /* immediate */);
1889                    }
1890                    break;
1891
1892                default:
1893                    break;
1894            }
1895        } catch (Exception e) {
1896            // Just skip on any failure; we'll make it visible when it next restarts.
1897            Slog.w(TAG, "Exception thrown making hidden: " + r.intent.getComponent(), e);
1898        }
1899    }
1900
1901    private boolean updateBehindFullscreen(boolean stackInvisible, boolean behindFullscreenActivity,
1902            TaskRecord task, ActivityRecord r) {
1903        if (r.fullscreen) {
1904            if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Fullscreen: at " + r
1905                        + " stackInvisible=" + stackInvisible
1906                        + " behindFullscreenActivity=" + behindFullscreenActivity);
1907            // At this point, nothing else needs to be shown in this task.
1908            behindFullscreenActivity = true;
1909        } else if (!isHomeStack() && r.frontOfTask && task.isOverHomeStack()) {
1910            if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY, "Showing home: at " + r
1911                    + " stackInvisible=" + stackInvisible
1912                    + " behindFullscreenActivity=" + behindFullscreenActivity);
1913            behindFullscreenActivity = true;
1914        }
1915        return behindFullscreenActivity;
1916    }
1917
1918    private void makeVisibleIfNeeded(ActivityRecord starting, ActivityRecord r) {
1919
1920        // This activity is not currently visible, but is running. Tell it to become visible.
1921        if (r.state == ActivityState.RESUMED || r == starting) {
1922            if (DEBUG_VISIBILITY) Slog.d(TAG_VISIBILITY,
1923                    "Not making visible, r=" + r + " state=" + r.state + " starting=" + starting);
1924            return;
1925        }
1926
1927        // If this activity is paused, tell it to now show its window.
1928        if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
1929                "Making visible and scheduling visibility: " + r);
1930        try {
1931            if (mTranslucentActivityWaiting != null) {
1932                r.updateOptionsLocked(r.returningOptions);
1933                mUndrawnActivitiesBelowTopTranslucent.add(r);
1934            }
1935            setVisible(r, true);
1936            r.sleeping = false;
1937            r.app.pendingUiClean = true;
1938            r.app.thread.scheduleWindowVisibility(r.appToken, true);
1939            // The activity may be waiting for stop, but that is no longer
1940            // appropriate for it.
1941            mStackSupervisor.mStoppingActivities.remove(r);
1942            mStackSupervisor.mGoingToSleepActivities.remove(r);
1943        } catch (Exception e) {
1944            // Just skip on any failure; we'll make it
1945            // visible when it next restarts.
1946            Slog.w(TAG, "Exception thrown making visibile: " + r.intent.getComponent(), e);
1947        }
1948        handleAlreadyVisible(r);
1949    }
1950
1951    private boolean handleAlreadyVisible(ActivityRecord r) {
1952        r.stopFreezingScreenLocked(false);
1953        try {
1954            if (r.returningOptions != null) {
1955                r.app.thread.scheduleOnNewActivityOptions(r.appToken, r.returningOptions);
1956            }
1957        } catch(RemoteException e) {
1958        }
1959        return r.state == ActivityState.RESUMED;
1960    }
1961
1962    void convertActivityToTranslucent(ActivityRecord r) {
1963        mTranslucentActivityWaiting = r;
1964        mUndrawnActivitiesBelowTopTranslucent.clear();
1965        mHandler.sendEmptyMessageDelayed(TRANSLUCENT_TIMEOUT_MSG, TRANSLUCENT_CONVERSION_TIMEOUT);
1966    }
1967
1968    void clearOtherAppTimeTrackers(AppTimeTracker except) {
1969        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
1970            final TaskRecord task = mTaskHistory.get(taskNdx);
1971            final ArrayList<ActivityRecord> activities = task.mActivities;
1972            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
1973                final ActivityRecord r = activities.get(activityNdx);
1974                if ( r.appTimeTracker != except) {
1975                    r.appTimeTracker = null;
1976                }
1977            }
1978        }
1979    }
1980
1981    /**
1982     * Called as activities below the top translucent activity are redrawn. When the last one is
1983     * redrawn notify the top activity by calling
1984     * {@link Activity#onTranslucentConversionComplete}.
1985     *
1986     * @param r The most recent background activity to be drawn. Or, if r is null then a timeout
1987     * occurred and the activity will be notified immediately.
1988     */
1989    void notifyActivityDrawnLocked(ActivityRecord r) {
1990        mActivityContainer.setDrawn();
1991        if ((r == null)
1992                || (mUndrawnActivitiesBelowTopTranslucent.remove(r) &&
1993                        mUndrawnActivitiesBelowTopTranslucent.isEmpty())) {
1994            // The last undrawn activity below the top has just been drawn. If there is an
1995            // opaque activity at the top, notify it that it can become translucent safely now.
1996            final ActivityRecord waitingActivity = mTranslucentActivityWaiting;
1997            mTranslucentActivityWaiting = null;
1998            mUndrawnActivitiesBelowTopTranslucent.clear();
1999            mHandler.removeMessages(TRANSLUCENT_TIMEOUT_MSG);
2000
2001            if (waitingActivity != null) {
2002                mWindowManager.setWindowOpaque(waitingActivity.appToken, false);
2003                if (waitingActivity.app != null && waitingActivity.app.thread != null) {
2004                    try {
2005                        waitingActivity.app.thread.scheduleTranslucentConversionComplete(
2006                                waitingActivity.appToken, r != null);
2007                    } catch (RemoteException e) {
2008                    }
2009                }
2010            }
2011        }
2012    }
2013
2014    /** If any activities below the top running one are in the INITIALIZING state and they have a
2015     * starting window displayed then remove that starting window. It is possible that the activity
2016     * in this state will never resumed in which case that starting window will be orphaned. */
2017    void cancelInitializingActivities() {
2018        final ActivityRecord topActivity = topRunningActivityLocked();
2019        boolean aboveTop = true;
2020        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2021            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
2022            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
2023                final ActivityRecord r = activities.get(activityNdx);
2024                if (aboveTop) {
2025                    if (r == topActivity) {
2026                        aboveTop = false;
2027                    }
2028                    continue;
2029                }
2030
2031                if (r.state == ActivityState.INITIALIZING
2032                        && r.mStartingWindowState == STARTING_WINDOW_SHOWN) {
2033                    if (DEBUG_VISIBILITY) Slog.w(TAG_VISIBILITY,
2034                            "Found orphaned starting window " + r);
2035                    r.mStartingWindowState = STARTING_WINDOW_REMOVED;
2036                    mWindowManager.removeAppStartingWindow(r.appToken);
2037                }
2038            }
2039        }
2040    }
2041
2042    /**
2043     * Ensure that the top activity in the stack is resumed.
2044     *
2045     * @param prev The previously resumed activity, for when in the process
2046     * of pausing; can be null to call from elsewhere.
2047     * @param options Activity options.
2048     *
2049     * @return Returns true if something is being resumed, or false if
2050     * nothing happened.
2051     *
2052     * NOTE: It is not safe to call this method directly as it can cause an activity in a
2053     *       non-focused stack to be resumed.
2054     *       Use {@link ActivityStackSupervisor#resumeFocusedStackTopActivityLocked} to resume the
2055     *       right activity for the current system state.
2056     */
2057    boolean resumeTopActivityUncheckedLocked(ActivityRecord prev, ActivityOptions options) {
2058        if (mStackSupervisor.inResumeTopActivity) {
2059            // Don't even start recursing.
2060            return false;
2061        }
2062
2063        boolean result = false;
2064        try {
2065            // Protect against recursion.
2066            mStackSupervisor.inResumeTopActivity = true;
2067            if (mService.mLockScreenShown == ActivityManagerService.LOCK_SCREEN_LEAVING) {
2068                mService.mLockScreenShown = ActivityManagerService.LOCK_SCREEN_HIDDEN;
2069                mService.updateSleepIfNeededLocked();
2070            }
2071            result = resumeTopActivityInnerLocked(prev, options);
2072        } finally {
2073            mStackSupervisor.inResumeTopActivity = false;
2074        }
2075        return result;
2076    }
2077
2078    private boolean resumeTopActivityInnerLocked(ActivityRecord prev, ActivityOptions options) {
2079        if (DEBUG_LOCKSCREEN) mService.logLockScreen("");
2080
2081        if (!mService.mBooting && !mService.mBooted) {
2082            // Not ready yet!
2083            return false;
2084        }
2085
2086        ActivityRecord parent = mActivityContainer.mParentActivity;
2087        if ((parent != null && parent.state != ActivityState.RESUMED) ||
2088                !mActivityContainer.isAttachedLocked()) {
2089            // Do not resume this stack if its parent is not resumed.
2090            // TODO: If in a loop, make sure that parent stack resumeTopActivity is called 1st.
2091            return false;
2092        }
2093
2094        mStackSupervisor.cancelInitializingActivities();
2095
2096        // Find the first activity that is not finishing.
2097        final ActivityRecord next = topRunningActivityLocked();
2098
2099        // Remember how we'll process this pause/resume situation, and ensure
2100        // that the state is reset however we wind up proceeding.
2101        final boolean userLeaving = mStackSupervisor.mUserLeaving;
2102        mStackSupervisor.mUserLeaving = false;
2103
2104        final TaskRecord prevTask = prev != null ? prev.task : null;
2105        if (next == null) {
2106            // There are no more activities!
2107            final String reason = "noMoreActivities";
2108            final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack()
2109                    ? HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
2110            if (!mFullscreen && adjustFocusToNextFocusableStackLocked(returnTaskType, reason)) {
2111                // Try to move focus to the next visible stack with a running activity if this
2112                // stack is not covering the entire screen.
2113                return mStackSupervisor.resumeFocusedStackTopActivityLocked(
2114                        mStackSupervisor.getFocusedStack(), prev, null);
2115            }
2116
2117            // Let's just start up the Launcher...
2118            ActivityOptions.abort(options);
2119            if (DEBUG_STATES) Slog.d(TAG_STATES,
2120                    "resumeTopActivityLocked: No more activities go home");
2121            if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2122            // Only resume home if on home display
2123            return isOnHomeDisplay() &&
2124                    mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, reason);
2125        }
2126
2127        next.delayedResume = false;
2128
2129        // If the top activity is the resumed one, nothing to do.
2130        if (mResumedActivity == next && next.state == ActivityState.RESUMED &&
2131                    mStackSupervisor.allResumedActivitiesComplete()) {
2132            // Make sure we have executed any pending transitions, since there
2133            // should be nothing left to do at this point.
2134            mWindowManager.executeAppTransition();
2135            mNoAnimActivities.clear();
2136            ActivityOptions.abort(options);
2137            if (DEBUG_STATES) Slog.d(TAG_STATES,
2138                    "resumeTopActivityLocked: Top activity resumed " + next);
2139            if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2140            return false;
2141        }
2142
2143        final TaskRecord nextTask = next.task;
2144        if (prevTask != null && prevTask.stack == this &&
2145                prevTask.isOverHomeStack() && prev.finishing && prev.frontOfTask) {
2146            if (DEBUG_STACK)  mStackSupervisor.validateTopActivitiesLocked();
2147            if (prevTask == nextTask) {
2148                prevTask.setFrontOfTask();
2149            } else if (prevTask != topTask()) {
2150                // This task is going away but it was supposed to return to the home stack.
2151                // Now the task above it has to return to the home task instead.
2152                final int taskNdx = mTaskHistory.indexOf(prevTask) + 1;
2153                mTaskHistory.get(taskNdx).setTaskToReturnTo(HOME_ACTIVITY_TYPE);
2154            } else if (!isOnHomeDisplay()) {
2155                return false;
2156            } else if (!isHomeStack()){
2157                if (DEBUG_STATES) Slog.d(TAG_STATES,
2158                        "resumeTopActivityLocked: Launching home next");
2159                final int returnTaskType = prevTask == null || !prevTask.isOverHomeStack() ?
2160                        HOME_ACTIVITY_TYPE : prevTask.getTaskToReturnTo();
2161                return isOnHomeDisplay() &&
2162                        mStackSupervisor.resumeHomeStackTask(returnTaskType, prev, "prevFinished");
2163            }
2164        }
2165
2166        // If we are sleeping, and there is no resumed activity, and the top
2167        // activity is paused, well that is the state we want.
2168        if (mService.isSleepingOrShuttingDown()
2169                && mLastPausedActivity == next
2170                && mStackSupervisor.allPausedActivitiesComplete()) {
2171            // Make sure we have executed any pending transitions, since there
2172            // should be nothing left to do at this point.
2173            mWindowManager.executeAppTransition();
2174            mNoAnimActivities.clear();
2175            ActivityOptions.abort(options);
2176            if (DEBUG_STATES) Slog.d(TAG_STATES,
2177                    "resumeTopActivityLocked: Going to sleep and all paused");
2178            if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2179            return false;
2180        }
2181
2182        // Make sure that the user who owns this activity is started.  If not,
2183        // we will just leave it as is because someone should be bringing
2184        // another user's activities to the top of the stack.
2185        if (!mService.mUserController.hasStartedUserState(next.userId)) {
2186            Slog.w(TAG, "Skipping resume of top activity " + next
2187                    + ": user " + next.userId + " is stopped");
2188            if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2189            return false;
2190        }
2191
2192        // The activity may be waiting for stop, but that is no longer
2193        // appropriate for it.
2194        mStackSupervisor.mStoppingActivities.remove(next);
2195        mStackSupervisor.mGoingToSleepActivities.remove(next);
2196        next.sleeping = false;
2197        mStackSupervisor.mWaitingVisibleActivities.remove(next);
2198
2199        if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resuming " + next);
2200
2201        // If we are currently pausing an activity, then don't do anything until that is done.
2202        if (!mStackSupervisor.allPausedActivitiesComplete()) {
2203            if (DEBUG_SWITCH || DEBUG_PAUSE || DEBUG_STATES) Slog.v(TAG_PAUSE,
2204                    "resumeTopActivityLocked: Skip resume: some activity pausing.");
2205            if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2206            return false;
2207        }
2208
2209        mStackSupervisor.setLaunchSource(next.info.applicationInfo.uid);
2210
2211        // We need to start pausing the current activity so the top one can be resumed...
2212        final boolean dontWaitForPause = (next.info.flags & FLAG_RESUME_WHILE_PAUSING) != 0;
2213        boolean pausing = mStackSupervisor.pauseBackStacks(userLeaving, true, dontWaitForPause);
2214        if (mResumedActivity != null) {
2215            if (DEBUG_STATES) Slog.d(TAG_STATES,
2216                    "resumeTopActivityLocked: Pausing " + mResumedActivity);
2217            pausing |= startPausingLocked(userLeaving, false, true, dontWaitForPause);
2218        }
2219        if (pausing) {
2220            if (DEBUG_SWITCH || DEBUG_STATES) Slog.v(TAG_STATES,
2221                    "resumeTopActivityLocked: Skip resume: need to start pausing");
2222            // At this point we want to put the upcoming activity's process
2223            // at the top of the LRU list, since we know we will be needing it
2224            // very soon and it would be a waste to let it get killed if it
2225            // happens to be sitting towards the end.
2226            if (next.app != null && next.app.thread != null) {
2227                mService.updateLruProcessLocked(next.app, true, null);
2228            }
2229            if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2230            return true;
2231        }
2232
2233        // If the most recent activity was noHistory but was only stopped rather
2234        // than stopped+finished because the device went to sleep, we need to make
2235        // sure to finish it as we're making a new activity topmost.
2236        if (mService.isSleeping() && mLastNoHistoryActivity != null &&
2237                !mLastNoHistoryActivity.finishing) {
2238            if (DEBUG_STATES) Slog.d(TAG_STATES,
2239                    "no-history finish of " + mLastNoHistoryActivity + " on new resume");
2240            requestFinishActivityLocked(mLastNoHistoryActivity.appToken, Activity.RESULT_CANCELED,
2241                    null, "resume-no-history", false);
2242            mLastNoHistoryActivity = null;
2243        }
2244
2245        if (prev != null && prev != next) {
2246            if (!mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2247                    && next != null && !next.nowVisible) {
2248                mStackSupervisor.mWaitingVisibleActivities.add(prev);
2249                if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2250                        "Resuming top, waiting visible to hide: " + prev);
2251            } else {
2252                // The next activity is already visible, so hide the previous
2253                // activity's windows right now so we can show the new one ASAP.
2254                // We only do this if the previous is finishing, which should mean
2255                // it is on top of the one being resumed so hiding it quickly
2256                // is good.  Otherwise, we want to do the normal route of allowing
2257                // the resumed activity to be shown so we can decide if the
2258                // previous should actually be hidden depending on whether the
2259                // new one is found to be full-screen or not.
2260                if (prev.finishing) {
2261                    mWindowManager.setAppVisibility(prev.appToken, false);
2262                    if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2263                            "Not waiting for visible to hide: " + prev + ", waitingVisible="
2264                            + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2265                            + ", nowVisible=" + next.nowVisible);
2266                } else {
2267                    if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
2268                            "Previous already visible but still waiting to hide: " + prev
2269                            + ", waitingVisible="
2270                            + mStackSupervisor.mWaitingVisibleActivities.contains(prev)
2271                            + ", nowVisible=" + next.nowVisible);
2272                }
2273            }
2274        }
2275
2276        // Launching this app's activity, make sure the app is no longer
2277        // considered stopped.
2278        try {
2279            AppGlobals.getPackageManager().setPackageStoppedState(
2280                    next.packageName, false, next.userId); /* TODO: Verify if correct userid */
2281        } catch (RemoteException e1) {
2282        } catch (IllegalArgumentException e) {
2283            Slog.w(TAG, "Failed trying to unstop package "
2284                    + next.packageName + ": " + e);
2285        }
2286
2287        // We are starting up the next activity, so tell the window manager
2288        // that the previous one will be hidden soon.  This way it can know
2289        // to ignore it when computing the desired screen orientation.
2290        boolean anim = true;
2291        if (prev != null) {
2292            if (prev.finishing) {
2293                if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2294                        "Prepare close transition: prev=" + prev);
2295                if (mNoAnimActivities.contains(prev)) {
2296                    anim = false;
2297                    mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
2298                } else {
2299                    mWindowManager.prepareAppTransition(prev.task == next.task
2300                            ? TRANSIT_ACTIVITY_CLOSE
2301                            : TRANSIT_TASK_CLOSE, false);
2302                }
2303                mWindowManager.setAppVisibility(prev.appToken, false);
2304            } else {
2305                if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2306                        "Prepare open transition: prev=" + prev);
2307                if (mNoAnimActivities.contains(next)) {
2308                    anim = false;
2309                    mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
2310                } else {
2311                    mWindowManager.prepareAppTransition(prev.task == next.task
2312                            ? TRANSIT_ACTIVITY_OPEN
2313                            : next.mLaunchTaskBehind
2314                                    ? TRANSIT_TASK_OPEN_BEHIND
2315                                    : TRANSIT_TASK_OPEN, false);
2316                }
2317            }
2318        } else {
2319            if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare open transition: no previous");
2320            if (mNoAnimActivities.contains(next)) {
2321                anim = false;
2322                mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
2323            } else {
2324                mWindowManager.prepareAppTransition(TRANSIT_ACTIVITY_OPEN, false);
2325            }
2326        }
2327
2328        Bundle resumeAnimOptions = null;
2329        if (anim) {
2330            ActivityOptions opts = next.getOptionsForTargetActivityLocked();
2331            if (opts != null) {
2332                resumeAnimOptions = opts.toBundle();
2333            }
2334            next.applyOptionsLocked();
2335        } else {
2336            next.clearOptionsLocked();
2337        }
2338
2339        ActivityStack lastStack = mStackSupervisor.getLastStack();
2340        if (next.app != null && next.app.thread != null) {
2341            if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Resume running: " + next
2342                    + " stopped=" + next.stopped + " visible=" + next.visible);
2343
2344            // If the previous activity is translucent, force a visibility update of
2345            // the next activity, so that it's added to WM's opening app list, and
2346            // transition animation can be set up properly.
2347            // For example, pressing Home button with a translucent activity in focus.
2348            // Launcher is already visible in this case. If we don't add it to opening
2349            // apps, maybeUpdateTransitToWallpaper() will fail to identify this as a
2350            // TRANSIT_WALLPAPER_OPEN animation, and run some funny animation.
2351            final boolean lastActivityTranslucent = lastStack != null
2352                    && (!lastStack.mFullscreen
2353                    || (lastStack.mLastPausedActivity != null
2354                    && !lastStack.mLastPausedActivity.fullscreen));
2355
2356            // This activity is now becoming visible.
2357            if (!next.visible || next.stopped || lastActivityTranslucent) {
2358                mWindowManager.setAppVisibility(next.appToken, true);
2359            }
2360
2361            // schedule launch ticks to collect information about slow apps.
2362            next.startLaunchTickingLocked();
2363
2364            ActivityRecord lastResumedActivity =
2365                    lastStack == null ? null :lastStack.mResumedActivity;
2366            ActivityState lastState = next.state;
2367
2368            mService.updateCpuStats();
2369
2370            if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to RESUMED: " + next + " (in existing)");
2371            next.state = ActivityState.RESUMED;
2372            mResumedActivity = next;
2373            next.task.touchActiveTime();
2374            mRecentTasks.addLocked(next.task);
2375            mService.updateLruProcessLocked(next.app, true, null);
2376            updateLRUListLocked(next);
2377            mService.updateOomAdjLocked();
2378
2379            // Have the window manager re-evaluate the orientation of
2380            // the screen based on the new activity order.
2381            boolean notUpdated = true;
2382            if (mStackSupervisor.isFocusedStack(this)) {
2383                Configuration config = mWindowManager.updateOrientationFromAppTokens(
2384                        mService.mConfiguration,
2385                        next.mayFreezeScreenLocked(next.app) ? next.appToken : null);
2386                if (config != null) {
2387                    next.frozenBeforeDestroy = true;
2388                }
2389                notUpdated = !mService.updateConfigurationLocked(config, next, false);
2390            }
2391
2392            if (notUpdated) {
2393                // The configuration update wasn't able to keep the existing
2394                // instance of the activity, and instead started a new one.
2395                // We should be all done, but let's just make sure our activity
2396                // is still at the top and schedule another run if something
2397                // weird happened.
2398                ActivityRecord nextNext = topRunningActivityLocked();
2399                if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_STATES,
2400                        "Activity config changed during resume: " + next
2401                        + ", new next: " + nextNext);
2402                if (nextNext != next) {
2403                    // Do over!
2404                    mStackSupervisor.scheduleResumeTopActivities();
2405                }
2406                if (mStackSupervisor.reportResumedActivityLocked(next)) {
2407                    mNoAnimActivities.clear();
2408                    if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2409                    return true;
2410                }
2411                if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2412                return false;
2413            }
2414
2415            try {
2416                // Deliver all pending results.
2417                ArrayList<ResultInfo> a = next.results;
2418                if (a != null) {
2419                    final int N = a.size();
2420                    if (!next.finishing && N > 0) {
2421                        if (DEBUG_RESULTS) Slog.v(TAG_RESULTS,
2422                                "Delivering results to " + next + ": " + a);
2423                        next.app.thread.scheduleSendResult(next.appToken, a);
2424                    }
2425                }
2426
2427                if (next.newIntents != null) {
2428                    next.app.thread.scheduleNewIntent(next.newIntents, next.appToken);
2429                }
2430
2431                // Well the app will no longer be stopped.
2432                // Clear app token stopped state in window manager if needed.
2433                mWindowManager.notifyAppStopped(next.appToken, false);
2434
2435                EventLog.writeEvent(EventLogTags.AM_RESUME_ACTIVITY, next.userId,
2436                        System.identityHashCode(next), next.task.taskId, next.shortComponentName);
2437
2438                next.sleeping = false;
2439                mService.showAskCompatModeDialogLocked(next);
2440                next.app.pendingUiClean = true;
2441                next.app.forceProcessStateUpTo(mService.mTopProcessState);
2442                next.clearOptionsLocked();
2443                next.app.thread.scheduleResumeActivity(next.appToken, next.app.repProcState,
2444                        mService.isNextTransitionForward(), resumeAnimOptions);
2445
2446                mStackSupervisor.checkReadyForSleepLocked();
2447
2448                if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Resumed " + next);
2449            } catch (Exception e) {
2450                // Whoops, need to restart this activity!
2451                if (DEBUG_STATES) Slog.v(TAG_STATES, "Resume failed; resetting state to "
2452                        + lastState + ": " + next);
2453                next.state = lastState;
2454                if (lastStack != null) {
2455                    lastStack.mResumedActivity = lastResumedActivity;
2456                }
2457                Slog.i(TAG, "Restarting because process died: " + next);
2458                if (!next.hasBeenLaunched) {
2459                    next.hasBeenLaunched = true;
2460                } else  if (SHOW_APP_STARTING_PREVIEW && lastStack != null &&
2461                        mStackSupervisor.isFrontStack(lastStack)) {
2462                    mWindowManager.setAppStartingWindow(
2463                            next.appToken, next.packageName, next.theme,
2464                            mService.compatibilityInfoForPackageLocked(next.info.applicationInfo),
2465                            next.nonLocalizedLabel, next.labelRes, next.icon, next.logo,
2466                            next.windowFlags, null, true);
2467                    next.mStartingWindowState = STARTING_WINDOW_SHOWN;
2468                }
2469                mStackSupervisor.startSpecificActivityLocked(next, true, false);
2470                if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2471                return true;
2472            }
2473
2474            // From this point on, if something goes wrong there is no way
2475            // to recover the activity.
2476            try {
2477                completeResumeLocked(next);
2478            } catch (Exception e) {
2479                // If any exception gets thrown, toss away this
2480                // activity and try the next one.
2481                Slog.w(TAG, "Exception thrown during resume of " + next, e);
2482                requestFinishActivityLocked(next.appToken, Activity.RESULT_CANCELED, null,
2483                        "resume-exception", true);
2484                if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2485                return true;
2486            }
2487        } else {
2488            // Whoops, need to restart this activity!
2489            if (!next.hasBeenLaunched) {
2490                next.hasBeenLaunched = true;
2491            } else {
2492                if (SHOW_APP_STARTING_PREVIEW) {
2493                    mWindowManager.setAppStartingWindow(
2494                            next.appToken, next.packageName, next.theme,
2495                            mService.compatibilityInfoForPackageLocked(
2496                                    next.info.applicationInfo),
2497                            next.nonLocalizedLabel,
2498                            next.labelRes, next.icon, next.logo, next.windowFlags,
2499                            null, true);
2500                    next.mStartingWindowState = STARTING_WINDOW_SHOWN;
2501                }
2502                if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Restarting: " + next);
2503            }
2504            if (DEBUG_STATES) Slog.d(TAG_STATES, "resumeTopActivityLocked: Restarting " + next);
2505            mStackSupervisor.startSpecificActivityLocked(next, true, true);
2506        }
2507
2508        if (DEBUG_STACK) mStackSupervisor.validateTopActivitiesLocked();
2509        return true;
2510    }
2511
2512    private TaskRecord getNextTask(TaskRecord targetTask) {
2513        final int index = mTaskHistory.indexOf(targetTask);
2514        if (index >= 0) {
2515            final int numTasks = mTaskHistory.size();
2516            for (int i = index + 1; i < numTasks; ++i) {
2517                TaskRecord task = mTaskHistory.get(i);
2518                if (task.userId == targetTask.userId) {
2519                    return task;
2520                }
2521            }
2522        }
2523        return null;
2524    }
2525
2526    private void insertTaskAtPosition(TaskRecord task, int position) {
2527        if (position >= mTaskHistory.size()) {
2528            insertTaskAtTop(task, null);
2529            return;
2530        }
2531        // Calculate maximum possible position for this task.
2532        int maxPosition = mTaskHistory.size();
2533        if (!mStackSupervisor.isCurrentProfileLocked(task.userId)
2534                && task.topRunningActivityLocked() == null) {
2535            // Put non-current user tasks below current user tasks.
2536            while (maxPosition > 0) {
2537                final TaskRecord tmpTask = mTaskHistory.get(maxPosition - 1);
2538                if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2539                        || tmpTask.topRunningActivityLocked() == null) {
2540                    break;
2541                }
2542                maxPosition--;
2543            }
2544        }
2545        position = Math.min(position, maxPosition);
2546        mTaskHistory.remove(task);
2547        mTaskHistory.add(position, task);
2548        updateTaskMovement(task, true);
2549    }
2550
2551    private void insertTaskAtTop(TaskRecord task, ActivityRecord newActivity) {
2552        // If the moving task is over home stack, transfer its return type to next task
2553        if (task.isOverHomeStack()) {
2554            final TaskRecord nextTask = getNextTask(task);
2555            if (nextTask != null) {
2556                nextTask.setTaskToReturnTo(task.getTaskToReturnTo());
2557            }
2558        }
2559
2560        // If this is being moved to the top by another activity or being launched from the home
2561        // activity, set mTaskToReturnTo accordingly.
2562        if (isOnHomeDisplay()) {
2563            ActivityStack lastStack = mStackSupervisor.getLastStack();
2564            final boolean fromHome = lastStack.isHomeStack();
2565            if (!isHomeStack() && (fromHome || topTask() != task)) {
2566                int returnToType = APPLICATION_ACTIVITY_TYPE;
2567                if (fromHome && StackId.allowTopTaskToReturnHome(mStackId)) {
2568                    returnToType = lastStack.topTask() == null
2569                            ? HOME_ACTIVITY_TYPE : lastStack.topTask().taskType;
2570                }
2571                task.setTaskToReturnTo(returnToType);
2572            }
2573        } else {
2574            task.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
2575        }
2576
2577        mTaskHistory.remove(task);
2578        // Now put task at top.
2579        int taskNdx = mTaskHistory.size();
2580        final boolean notShownWhenLocked =
2581                (newActivity != null && (newActivity.info.flags & FLAG_SHOW_FOR_ALL_USERS) == 0)
2582                || (newActivity == null && task.topRunningActivityLocked() == null);
2583        if (!mStackSupervisor.isCurrentProfileLocked(task.userId) && notShownWhenLocked) {
2584            // Put non-current user tasks below current user tasks.
2585            while (--taskNdx >= 0) {
2586                final TaskRecord tmpTask = mTaskHistory.get(taskNdx);
2587                if (!mStackSupervisor.isCurrentProfileLocked(tmpTask.userId)
2588                        || tmpTask.topRunningActivityLocked() == null) {
2589                    break;
2590                }
2591            }
2592            ++taskNdx;
2593        }
2594        mTaskHistory.add(taskNdx, task);
2595        updateTaskMovement(task, true);
2596    }
2597
2598    final void startActivityLocked(ActivityRecord r, boolean newTask, boolean keepCurTransition,
2599            ActivityOptions options) {
2600        TaskRecord rTask = r.task;
2601        final int taskId = rTask.taskId;
2602        // mLaunchTaskBehind tasks get placed at the back of the task stack.
2603        if (!r.mLaunchTaskBehind && (taskForIdLocked(taskId) == null || newTask)) {
2604            // Last activity in task had been removed or ActivityManagerService is reusing task.
2605            // Insert or replace.
2606            // Might not even be in.
2607            insertTaskAtTop(rTask, r);
2608            mWindowManager.moveTaskToTop(taskId);
2609        }
2610        TaskRecord task = null;
2611        if (!newTask) {
2612            // If starting in an existing task, find where that is...
2613            boolean startIt = true;
2614            for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
2615                task = mTaskHistory.get(taskNdx);
2616                if (task.getTopActivity() == null) {
2617                    // All activities in task are finishing.
2618                    continue;
2619                }
2620                if (task == r.task) {
2621                    // Here it is!  Now, if this is not yet visible to the
2622                    // user, then just add it without starting; it will
2623                    // get started when the user navigates back to it.
2624                    if (!startIt) {
2625                        if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to task "
2626                                + task, new RuntimeException("here").fillInStackTrace());
2627                        task.addActivityToTop(r);
2628                        r.putInHistory();
2629                        addConfigOverride(r, task);
2630                        if (VALIDATE_TOKENS) {
2631                            validateAppTokensLocked();
2632                        }
2633                        ActivityOptions.abort(options);
2634                        return;
2635                    }
2636                    break;
2637                } else if (task.numFullscreen > 0) {
2638                    startIt = false;
2639                }
2640            }
2641        }
2642
2643        // Place a new activity at top of stack, so it is next to interact
2644        // with the user.
2645
2646        // If we are not placing the new activity frontmost, we do not want
2647        // to deliver the onUserLeaving callback to the actual frontmost
2648        // activity
2649        if (task == r.task && mTaskHistory.indexOf(task) != (mTaskHistory.size() - 1)) {
2650            mStackSupervisor.mUserLeaving = false;
2651            if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
2652                    "startActivity() behind front, mUserLeaving=false");
2653        }
2654
2655        task = r.task;
2656
2657        // Slot the activity into the history stack and proceed
2658        if (DEBUG_ADD_REMOVE) Slog.i(TAG, "Adding activity " + r + " to stack to task " + task,
2659                new RuntimeException("here").fillInStackTrace());
2660        task.addActivityToTop(r);
2661        task.setFrontOfTask();
2662
2663        r.putInHistory();
2664        if (!isHomeStack() || numActivities() > 0) {
2665            // We want to show the starting preview window if we are
2666            // switching to a new task, or the next activity's process is
2667            // not currently running.
2668            boolean showStartingIcon = newTask;
2669            ProcessRecord proc = r.app;
2670            if (proc == null) {
2671                proc = mService.mProcessNames.get(r.processName, r.info.applicationInfo.uid);
2672            }
2673            if (proc == null || proc.thread == null) {
2674                showStartingIcon = true;
2675            }
2676            if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
2677                    "Prepare open transition: starting " + r);
2678            if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_NO_ANIMATION) != 0) {
2679                mWindowManager.prepareAppTransition(TRANSIT_NONE, keepCurTransition);
2680                mNoAnimActivities.add(r);
2681            } else {
2682                mWindowManager.prepareAppTransition(newTask
2683                        ? r.mLaunchTaskBehind
2684                                ? TRANSIT_TASK_OPEN_BEHIND
2685                                : TRANSIT_TASK_OPEN
2686                        : TRANSIT_ACTIVITY_OPEN, keepCurTransition);
2687                mNoAnimActivities.remove(r);
2688            }
2689            addConfigOverride(r, task);
2690            boolean doShow = true;
2691            if (newTask) {
2692                // Even though this activity is starting fresh, we still need
2693                // to reset it to make sure we apply affinities to move any
2694                // existing activities from other tasks in to it.
2695                // If the caller has requested that the target task be
2696                // reset, then do so.
2697                if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED) != 0) {
2698                    resetTaskIfNeededLocked(r, r);
2699                    doShow = topRunningNonDelayedActivityLocked(null) == r;
2700                }
2701            } else if (options != null && options.getAnimationType()
2702                    == ActivityOptions.ANIM_SCENE_TRANSITION) {
2703                doShow = false;
2704            }
2705            if (r.mLaunchTaskBehind) {
2706                // Don't do a starting window for mLaunchTaskBehind. More importantly make sure we
2707                // tell WindowManager that r is visible even though it is at the back of the stack.
2708                mWindowManager.setAppVisibility(r.appToken, true);
2709                ensureActivitiesVisibleLocked(null, 0, !PRESERVE_WINDOWS);
2710            } else if (SHOW_APP_STARTING_PREVIEW && doShow) {
2711                // Figure out if we are transitioning from another activity that is
2712                // "has the same starting icon" as the next one.  This allows the
2713                // window manager to keep the previous window it had previously
2714                // created, if it still had one.
2715                ActivityRecord prev = mResumedActivity;
2716                if (prev != null) {
2717                    // We don't want to reuse the previous starting preview if:
2718                    // (1) The current activity is in a different task.
2719                    if (prev.task != r.task) {
2720                        prev = null;
2721                    }
2722                    // (2) The current activity is already displayed.
2723                    else if (prev.nowVisible) {
2724                        prev = null;
2725                    }
2726                }
2727                mWindowManager.setAppStartingWindow(
2728                        r.appToken, r.packageName, r.theme,
2729                        mService.compatibilityInfoForPackageLocked(
2730                                r.info.applicationInfo), r.nonLocalizedLabel,
2731                        r.labelRes, r.icon, r.logo, r.windowFlags,
2732                        prev != null ? prev.appToken : null, showStartingIcon);
2733                r.mStartingWindowState = STARTING_WINDOW_SHOWN;
2734            }
2735        } else {
2736            // If this is the first activity, don't do any fancy animations,
2737            // because there is nothing for it to animate on top of.
2738            addConfigOverride(r, task);
2739            ActivityOptions.abort(options);
2740            options = null;
2741        }
2742        if (VALIDATE_TOKENS) {
2743            validateAppTokensLocked();
2744        }
2745    }
2746
2747    final void validateAppTokensLocked() {
2748        mValidateAppTokens.clear();
2749        mValidateAppTokens.ensureCapacity(numActivities());
2750        final int numTasks = mTaskHistory.size();
2751        for (int taskNdx = 0; taskNdx < numTasks; ++taskNdx) {
2752            TaskRecord task = mTaskHistory.get(taskNdx);
2753            final ArrayList<ActivityRecord> activities = task.mActivities;
2754            if (activities.isEmpty()) {
2755                continue;
2756            }
2757            TaskGroup group = new TaskGroup();
2758            group.taskId = task.taskId;
2759            mValidateAppTokens.add(group);
2760            final int numActivities = activities.size();
2761            for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
2762                final ActivityRecord r = activities.get(activityNdx);
2763                group.tokens.add(r.appToken);
2764            }
2765        }
2766        mWindowManager.validateAppTokens(mStackId, mValidateAppTokens);
2767    }
2768
2769    /**
2770     * Perform a reset of the given task, if needed as part of launching it.
2771     * Returns the new HistoryRecord at the top of the task.
2772     */
2773    /**
2774     * Helper method for #resetTaskIfNeededLocked.
2775     * We are inside of the task being reset...  we'll either finish this activity, push it out
2776     * for another task, or leave it as-is.
2777     * @param task The task containing the Activity (taskTop) that might be reset.
2778     * @param forceReset
2779     * @return An ActivityOptions that needs to be processed.
2780     */
2781    final ActivityOptions resetTargetTaskIfNeededLocked(TaskRecord task, boolean forceReset) {
2782        ActivityOptions topOptions = null;
2783
2784        int replyChainEnd = -1;
2785        boolean canMoveOptions = true;
2786
2787        // We only do this for activities that are not the root of the task (since if we finish
2788        // the root, we may no longer have the task!).
2789        final ArrayList<ActivityRecord> activities = task.mActivities;
2790        final int numActivities = activities.size();
2791        final int rootActivityNdx = task.findEffectiveRootIndex();
2792        for (int i = numActivities - 1; i > rootActivityNdx; --i ) {
2793            ActivityRecord target = activities.get(i);
2794            if (target.frontOfTask)
2795                break;
2796
2797            final int flags = target.info.flags;
2798            final boolean finishOnTaskLaunch =
2799                    (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2800            final boolean allowTaskReparenting =
2801                    (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2802            final boolean clearWhenTaskReset =
2803                    (target.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0;
2804
2805            if (!finishOnTaskLaunch
2806                    && !clearWhenTaskReset
2807                    && target.resultTo != null) {
2808                // If this activity is sending a reply to a previous
2809                // activity, we can't do anything with it now until
2810                // we reach the start of the reply chain.
2811                // XXX note that we are assuming the result is always
2812                // to the previous activity, which is almost always
2813                // the case but we really shouldn't count on.
2814                if (replyChainEnd < 0) {
2815                    replyChainEnd = i;
2816                }
2817            } else if (!finishOnTaskLaunch
2818                    && !clearWhenTaskReset
2819                    && allowTaskReparenting
2820                    && target.taskAffinity != null
2821                    && !target.taskAffinity.equals(task.affinity)) {
2822                // If this activity has an affinity for another
2823                // task, then we need to move it out of here.  We will
2824                // move it as far out of the way as possible, to the
2825                // bottom of the activity stack.  This also keeps it
2826                // correctly ordered with any activities we previously
2827                // moved.
2828                final TaskRecord targetTask;
2829                final ActivityRecord bottom =
2830                        !mTaskHistory.isEmpty() && !mTaskHistory.get(0).mActivities.isEmpty() ?
2831                                mTaskHistory.get(0).mActivities.get(0) : null;
2832                if (bottom != null && target.taskAffinity != null
2833                        && target.taskAffinity.equals(bottom.task.affinity)) {
2834                    // If the activity currently at the bottom has the
2835                    // same task affinity as the one we are moving,
2836                    // then merge it into the same task.
2837                    targetTask = bottom.task;
2838                    if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
2839                            + " out to bottom task " + bottom.task);
2840                } else {
2841                    targetTask = createTaskRecord(
2842                            mStackSupervisor.getNextTaskIdForUserLocked(target.userId),
2843                            target.info, null, null, null, false);
2844                    targetTask.affinityIntent = target.intent;
2845                    if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Start pushing activity " + target
2846                            + " out to new task " + target.task);
2847                }
2848
2849                setAppTask(target, targetTask);
2850
2851                boolean noOptions = canMoveOptions;
2852                final int start = replyChainEnd < 0 ? i : replyChainEnd;
2853                for (int srcPos = start; srcPos >= i; --srcPos) {
2854                    final ActivityRecord p = activities.get(srcPos);
2855                    if (p.finishing) {
2856                        continue;
2857                    }
2858
2859                    canMoveOptions = false;
2860                    if (noOptions && topOptions == null) {
2861                        topOptions = p.takeOptionsLocked();
2862                        if (topOptions != null) {
2863                            noOptions = false;
2864                        }
2865                    }
2866                    if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
2867                            "Removing activity " + p + " from task=" + task + " adding to task="
2868                            + targetTask + " Callers=" + Debug.getCallers(4));
2869                    if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2870                            "Pushing next activity " + p + " out to target's task " + target.task);
2871                    p.setTask(targetTask, null);
2872                    targetTask.addActivityAtBottom(p);
2873
2874                    setAppTask(p, targetTask);
2875                }
2876
2877                mWindowManager.moveTaskToBottom(targetTask.taskId);
2878                if (VALIDATE_TOKENS) {
2879                    validateAppTokensLocked();
2880                }
2881
2882                replyChainEnd = -1;
2883            } else if (forceReset || finishOnTaskLaunch || clearWhenTaskReset) {
2884                // If the activity should just be removed -- either
2885                // because it asks for it, or the task should be
2886                // cleared -- then finish it and anything that is
2887                // part of its reply chain.
2888                int end;
2889                if (clearWhenTaskReset) {
2890                    // In this case, we want to finish this activity
2891                    // and everything above it, so be sneaky and pretend
2892                    // like these are all in the reply chain.
2893                    end = activities.size() - 1;
2894                } else if (replyChainEnd < 0) {
2895                    end = i;
2896                } else {
2897                    end = replyChainEnd;
2898                }
2899                boolean noOptions = canMoveOptions;
2900                for (int srcPos = i; srcPos <= end; srcPos++) {
2901                    ActivityRecord p = activities.get(srcPos);
2902                    if (p.finishing) {
2903                        continue;
2904                    }
2905                    canMoveOptions = false;
2906                    if (noOptions && topOptions == null) {
2907                        topOptions = p.takeOptionsLocked();
2908                        if (topOptions != null) {
2909                            noOptions = false;
2910                        }
2911                    }
2912                    if (DEBUG_TASKS) Slog.w(TAG_TASKS,
2913                            "resetTaskIntendedTask: calling finishActivity on " + p);
2914                    if (finishActivityLocked(
2915                            p, Activity.RESULT_CANCELED, null, "reset-task", false)) {
2916                        end--;
2917                        srcPos--;
2918                    }
2919                }
2920                replyChainEnd = -1;
2921            } else {
2922                // If we were in the middle of a chain, well the
2923                // activity that started it all doesn't want anything
2924                // special, so leave it all as-is.
2925                replyChainEnd = -1;
2926            }
2927        }
2928
2929        return topOptions;
2930    }
2931
2932    /**
2933     * Helper method for #resetTaskIfNeededLocked. Processes all of the activities in a given
2934     * TaskRecord looking for an affinity with the task of resetTaskIfNeededLocked.taskTop.
2935     * @param affinityTask The task we are looking for an affinity to.
2936     * @param task Task that resetTaskIfNeededLocked.taskTop belongs to.
2937     * @param topTaskIsHigher True if #task has already been processed by resetTaskIfNeededLocked.
2938     * @param forceReset Flag passed in to resetTaskIfNeededLocked.
2939     */
2940    private int resetAffinityTaskIfNeededLocked(TaskRecord affinityTask, TaskRecord task,
2941            boolean topTaskIsHigher, boolean forceReset, int taskInsertionPoint) {
2942        int replyChainEnd = -1;
2943        final int taskId = task.taskId;
2944        final String taskAffinity = task.affinity;
2945
2946        final ArrayList<ActivityRecord> activities = affinityTask.mActivities;
2947        final int numActivities = activities.size();
2948        final int rootActivityNdx = affinityTask.findEffectiveRootIndex();
2949
2950        // Do not operate on or below the effective root Activity.
2951        for (int i = numActivities - 1; i > rootActivityNdx; --i) {
2952            ActivityRecord target = activities.get(i);
2953            if (target.frontOfTask)
2954                break;
2955
2956            final int flags = target.info.flags;
2957            boolean finishOnTaskLaunch = (flags & ActivityInfo.FLAG_FINISH_ON_TASK_LAUNCH) != 0;
2958            boolean allowTaskReparenting = (flags & ActivityInfo.FLAG_ALLOW_TASK_REPARENTING) != 0;
2959
2960            if (target.resultTo != null) {
2961                // If this activity is sending a reply to a previous
2962                // activity, we can't do anything with it now until
2963                // we reach the start of the reply chain.
2964                // XXX note that we are assuming the result is always
2965                // to the previous activity, which is almost always
2966                // the case but we really shouldn't count on.
2967                if (replyChainEnd < 0) {
2968                    replyChainEnd = i;
2969                }
2970            } else if (topTaskIsHigher
2971                    && allowTaskReparenting
2972                    && taskAffinity != null
2973                    && taskAffinity.equals(target.taskAffinity)) {
2974                // This activity has an affinity for our task. Either remove it if we are
2975                // clearing or move it over to our task.  Note that
2976                // we currently punt on the case where we are resetting a
2977                // task that is not at the top but who has activities above
2978                // with an affinity to it...  this is really not a normal
2979                // case, and we will need to later pull that task to the front
2980                // and usually at that point we will do the reset and pick
2981                // up those remaining activities.  (This only happens if
2982                // someone starts an activity in a new task from an activity
2983                // in a task that is not currently on top.)
2984                if (forceReset || finishOnTaskLaunch) {
2985                    final int start = replyChainEnd >= 0 ? replyChainEnd : i;
2986                    if (DEBUG_TASKS) Slog.v(TAG_TASKS,
2987                            "Finishing task at index " + start + " to " + i);
2988                    for (int srcPos = start; srcPos >= i; --srcPos) {
2989                        final ActivityRecord p = activities.get(srcPos);
2990                        if (p.finishing) {
2991                            continue;
2992                        }
2993                        finishActivityLocked(
2994                                p, Activity.RESULT_CANCELED, null, "move-affinity", false);
2995                    }
2996                } else {
2997                    if (taskInsertionPoint < 0) {
2998                        taskInsertionPoint = task.mActivities.size();
2999
3000                    }
3001
3002                    final int start = replyChainEnd >= 0 ? replyChainEnd : i;
3003                    if (DEBUG_TASKS) Slog.v(TAG_TASKS,
3004                            "Reparenting from task=" + affinityTask + ":" + start + "-" + i
3005                            + " to task=" + task + ":" + taskInsertionPoint);
3006                    for (int srcPos = start; srcPos >= i; --srcPos) {
3007                        final ActivityRecord p = activities.get(srcPos);
3008                        p.setTask(task, null);
3009                        task.addActivityAtIndex(taskInsertionPoint, p);
3010
3011                        if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3012                                "Removing and adding activity " + p + " to stack at " + task
3013                                + " callers=" + Debug.getCallers(3));
3014                        if (DEBUG_TASKS) Slog.v(TAG_TASKS, "Pulling activity " + p
3015                                + " from " + srcPos + " in to resetting task " + task);
3016                        setAppTask(p, task);
3017                    }
3018                    mWindowManager.moveTaskToTop(taskId);
3019                    if (VALIDATE_TOKENS) {
3020                        validateAppTokensLocked();
3021                    }
3022
3023                    // Now we've moved it in to place...  but what if this is
3024                    // a singleTop activity and we have put it on top of another
3025                    // instance of the same activity?  Then we drop the instance
3026                    // below so it remains singleTop.
3027                    if (target.info.launchMode == ActivityInfo.LAUNCH_SINGLE_TOP) {
3028                        ArrayList<ActivityRecord> taskActivities = task.mActivities;
3029                        int targetNdx = taskActivities.indexOf(target);
3030                        if (targetNdx > 0) {
3031                            ActivityRecord p = taskActivities.get(targetNdx - 1);
3032                            if (p.intent.getComponent().equals(target.intent.getComponent())) {
3033                                finishActivityLocked(p, Activity.RESULT_CANCELED, null, "replace",
3034                                        false);
3035                            }
3036                        }
3037                    }
3038                }
3039
3040                replyChainEnd = -1;
3041            }
3042        }
3043        return taskInsertionPoint;
3044    }
3045
3046    final ActivityRecord resetTaskIfNeededLocked(ActivityRecord taskTop,
3047            ActivityRecord newActivity) {
3048        boolean forceReset =
3049                (newActivity.info.flags & ActivityInfo.FLAG_CLEAR_TASK_ON_LAUNCH) != 0;
3050        if (ACTIVITY_INACTIVE_RESET_TIME > 0
3051                && taskTop.task.getInactiveDuration() > ACTIVITY_INACTIVE_RESET_TIME) {
3052            if ((newActivity.info.flags & ActivityInfo.FLAG_ALWAYS_RETAIN_TASK_STATE) == 0) {
3053                forceReset = true;
3054            }
3055        }
3056
3057        final TaskRecord task = taskTop.task;
3058
3059        /** False until we evaluate the TaskRecord associated with taskTop. Switches to true
3060         * for remaining tasks. Used for later tasks to reparent to task. */
3061        boolean taskFound = false;
3062
3063        /** If ActivityOptions are moved out and need to be aborted or moved to taskTop. */
3064        ActivityOptions topOptions = null;
3065
3066        // Preserve the location for reparenting in the new task.
3067        int reparentInsertionPoint = -1;
3068
3069        for (int i = mTaskHistory.size() - 1; i >= 0; --i) {
3070            final TaskRecord targetTask = mTaskHistory.get(i);
3071
3072            if (targetTask == task) {
3073                topOptions = resetTargetTaskIfNeededLocked(task, forceReset);
3074                taskFound = true;
3075            } else {
3076                reparentInsertionPoint = resetAffinityTaskIfNeededLocked(targetTask, task,
3077                        taskFound, forceReset, reparentInsertionPoint);
3078            }
3079        }
3080
3081        int taskNdx = mTaskHistory.indexOf(task);
3082        if (taskNdx >= 0) {
3083            do {
3084                taskTop = mTaskHistory.get(taskNdx--).getTopActivity();
3085            } while (taskTop == null && taskNdx >= 0);
3086        }
3087
3088        if (topOptions != null) {
3089            // If we got some ActivityOptions from an activity on top that
3090            // was removed from the task, propagate them to the new real top.
3091            if (taskTop != null) {
3092                taskTop.updateOptionsLocked(topOptions);
3093            } else {
3094                topOptions.abort();
3095            }
3096        }
3097
3098        return taskTop;
3099    }
3100
3101    void sendActivityResultLocked(int callingUid, ActivityRecord r,
3102            String resultWho, int requestCode, int resultCode, Intent data) {
3103
3104        if (callingUid > 0) {
3105            mService.grantUriPermissionFromIntentLocked(callingUid, r.packageName,
3106                    data, r.getUriPermissionsLocked(), r.userId);
3107        }
3108
3109        if (DEBUG_RESULTS) Slog.v(TAG, "Send activity result to " + r
3110                + " : who=" + resultWho + " req=" + requestCode
3111                + " res=" + resultCode + " data=" + data);
3112        if (mResumedActivity == r && r.app != null && r.app.thread != null) {
3113            try {
3114                ArrayList<ResultInfo> list = new ArrayList<ResultInfo>();
3115                list.add(new ResultInfo(resultWho, requestCode,
3116                        resultCode, data));
3117                r.app.thread.scheduleSendResult(r.appToken, list);
3118                return;
3119            } catch (Exception e) {
3120                Slog.w(TAG, "Exception thrown sending result to " + r, e);
3121            }
3122        }
3123
3124        r.addResultLocked(null, resultWho, requestCode, resultCode, data);
3125    }
3126
3127    private void adjustFocusedActivityLocked(ActivityRecord r, String reason) {
3128        if (!mStackSupervisor.isFocusedStack(this) || mService.mFocusedActivity != r) {
3129            return;
3130        }
3131
3132        final ActivityRecord next = topRunningActivityLocked();
3133        final String myReason = reason + " adjustFocus";
3134        if (next != r) {
3135            if (next != null && StackId.keepFocusInStackIfPossible(mStackId) && isFocusable()) {
3136                // For freeform, docked, and pinned stacks we always keep the focus within the
3137                // stack as long as there is a running activity in the stack that we can adjust
3138                // focus to.
3139                mService.setFocusedActivityLocked(next, myReason);
3140                return;
3141            } else {
3142                final TaskRecord task = r.task;
3143                if (r.frontOfTask && task == topTask() && task.isOverHomeStack()) {
3144                    final int taskToReturnTo = task.getTaskToReturnTo();
3145
3146                    // For non-fullscreen stack, we want to move the focus to the next visible
3147                    // stack to prevent the home screen from moving to the top and obscuring
3148                    // other visible stacks.
3149                    if (!mFullscreen
3150                            && adjustFocusToNextFocusableStackLocked(taskToReturnTo, myReason)) {
3151                        return;
3152                    }
3153                    // Move the home stack to the top if this stack is fullscreen or there is no
3154                    // other visible stack.
3155                    if (mStackSupervisor.moveHomeStackTaskToTop(taskToReturnTo, myReason)) {
3156                        // Activity focus was already adjusted. Nothing else to do...
3157                        return;
3158                    }
3159                }
3160            }
3161        }
3162
3163        mService.setFocusedActivityLocked(mStackSupervisor.topRunningActivityLocked(), myReason);
3164    }
3165
3166    private boolean adjustFocusToNextFocusableStackLocked(int taskToReturnTo, String reason) {
3167        final ActivityStack stack = getNextFocusableStackLocked();
3168        final String myReason = reason + " adjustFocusToNextFocusableStack";
3169        if (stack == null) {
3170            return false;
3171        }
3172
3173        final ActivityRecord top = stack.topRunningActivityLocked();
3174
3175        if (stack.isHomeStack() && (top == null || !top.visible)) {
3176            // If we will be focusing on the home stack next and its current top activity isn't
3177            // visible, then use the task return to value to determine the home task to display next.
3178            return mStackSupervisor.moveHomeStackTaskToTop(taskToReturnTo, reason);
3179        }
3180        return mService.setFocusedActivityLocked(top, myReason);
3181    }
3182
3183    final void stopActivityLocked(ActivityRecord r) {
3184        if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Stopping: " + r);
3185        if ((r.intent.getFlags()&Intent.FLAG_ACTIVITY_NO_HISTORY) != 0
3186                || (r.info.flags&ActivityInfo.FLAG_NO_HISTORY) != 0) {
3187            if (!r.finishing) {
3188                if (!mService.isSleeping()) {
3189                    if (DEBUG_STATES) Slog.d(TAG_STATES, "no-history finish of " + r);
3190                    if (requestFinishActivityLocked(r.appToken, Activity.RESULT_CANCELED, null,
3191                            "stop-no-history", false)) {
3192                        // Activity was finished, no need to continue trying to schedule stop.
3193                        adjustFocusedActivityLocked(r, "stopActivityFinished");
3194                        r.resumeKeyDispatchingLocked();
3195                        return;
3196                    }
3197                } else {
3198                    if (DEBUG_STATES) Slog.d(TAG_STATES, "Not finishing noHistory " + r
3199                            + " on stop because we're just sleeping");
3200                }
3201            }
3202        }
3203
3204        if (r.app != null && r.app.thread != null) {
3205            adjustFocusedActivityLocked(r, "stopActivity");
3206            r.resumeKeyDispatchingLocked();
3207            try {
3208                r.stopped = false;
3209                if (DEBUG_STATES) Slog.v(TAG_STATES,
3210                        "Moving to STOPPING: " + r + " (stop requested)");
3211                r.state = ActivityState.STOPPING;
3212                if (DEBUG_VISIBILITY) Slog.v(TAG_VISIBILITY,
3213                        "Stopping visible=" + r.visible + " for " + r);
3214                if (!r.visible) {
3215                    mWindowManager.setAppVisibility(r.appToken, false);
3216                }
3217                EventLogTags.writeAmStopActivity(
3218                        r.userId, System.identityHashCode(r), r.shortComponentName);
3219                r.app.thread.scheduleStopActivity(r.appToken, r.visible, r.configChangeFlags);
3220                if (mService.isSleepingOrShuttingDown()) {
3221                    r.setSleeping(true);
3222                }
3223                Message msg = mHandler.obtainMessage(STOP_TIMEOUT_MSG, r);
3224                mHandler.sendMessageDelayed(msg, STOP_TIMEOUT);
3225            } catch (Exception e) {
3226                // Maybe just ignore exceptions here...  if the process
3227                // has crashed, our death notification will clean things
3228                // up.
3229                Slog.w(TAG, "Exception thrown during pause", e);
3230                // Just in case, assume it to be stopped.
3231                r.stopped = true;
3232                if (DEBUG_STATES) Slog.v(TAG_STATES, "Stop failed; moving to STOPPED: " + r);
3233                r.state = ActivityState.STOPPED;
3234                if (r.deferRelaunchUntilPaused) {
3235                    destroyActivityLocked(r, true, "stop-except");
3236                }
3237            }
3238        }
3239    }
3240
3241    /**
3242     * @return Returns true if the activity is being finished, false if for
3243     * some reason it is being left as-is.
3244     */
3245    final boolean requestFinishActivityLocked(IBinder token, int resultCode,
3246            Intent resultData, String reason, boolean oomAdj) {
3247        ActivityRecord r = isInStackLocked(token);
3248        if (DEBUG_RESULTS || DEBUG_STATES) Slog.v(TAG_STATES,
3249                "Finishing activity token=" + token + " r="
3250                + ", result=" + resultCode + ", data=" + resultData
3251                + ", reason=" + reason);
3252        if (r == null) {
3253            return false;
3254        }
3255
3256        finishActivityLocked(r, resultCode, resultData, reason, oomAdj);
3257        return true;
3258    }
3259
3260    final void finishSubActivityLocked(ActivityRecord self, String resultWho, int requestCode) {
3261        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3262            ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3263            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3264                ActivityRecord r = activities.get(activityNdx);
3265                if (r.resultTo == self && r.requestCode == requestCode) {
3266                    if ((r.resultWho == null && resultWho == null) ||
3267                        (r.resultWho != null && r.resultWho.equals(resultWho))) {
3268                        finishActivityLocked(r, Activity.RESULT_CANCELED, null, "request-sub",
3269                                false);
3270                    }
3271                }
3272            }
3273        }
3274        mService.updateOomAdjLocked();
3275    }
3276
3277    final TaskRecord finishTopRunningActivityLocked(ProcessRecord app, String reason) {
3278        ActivityRecord r = topRunningActivityLocked();
3279        TaskRecord finishedTask = null;
3280        if (r == null || r.app != app) {
3281            return null;
3282        }
3283        Slog.w(TAG, "  Force finishing activity "
3284                + r.intent.getComponent().flattenToShortString());
3285        int taskNdx = mTaskHistory.indexOf(r.task);
3286        int activityNdx = r.task.mActivities.indexOf(r);
3287        finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
3288        finishedTask = r.task;
3289        // Also terminate any activities below it that aren't yet
3290        // stopped, to avoid a situation where one will get
3291        // re-start our crashing activity once it gets resumed again.
3292        --activityNdx;
3293        if (activityNdx < 0) {
3294            do {
3295                --taskNdx;
3296                if (taskNdx < 0) {
3297                    break;
3298                }
3299                activityNdx = mTaskHistory.get(taskNdx).mActivities.size() - 1;
3300            } while (activityNdx < 0);
3301        }
3302        if (activityNdx >= 0) {
3303            r = mTaskHistory.get(taskNdx).mActivities.get(activityNdx);
3304            if (r.state == ActivityState.RESUMED
3305                    || r.state == ActivityState.PAUSING
3306                    || r.state == ActivityState.PAUSED) {
3307                if (!r.isHomeActivity() || mService.mHomeProcess != r.app) {
3308                    Slog.w(TAG, "  Force finishing activity "
3309                            + r.intent.getComponent().flattenToShortString());
3310                    finishActivityLocked(r, Activity.RESULT_CANCELED, null, reason, false);
3311                }
3312            }
3313        }
3314        return finishedTask;
3315    }
3316
3317    final void finishVoiceTask(IVoiceInteractionSession session) {
3318        IBinder sessionBinder = session.asBinder();
3319        boolean didOne = false;
3320        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3321            TaskRecord tr = mTaskHistory.get(taskNdx);
3322            if (tr.voiceSession != null && tr.voiceSession.asBinder() == sessionBinder) {
3323                for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3324                    ActivityRecord r = tr.mActivities.get(activityNdx);
3325                    if (!r.finishing) {
3326                        finishActivityLocked(r, Activity.RESULT_CANCELED, null, "finish-voice",
3327                                false);
3328                        didOne = true;
3329                    }
3330                }
3331            } else {
3332                // Check if any of the activities are using voice
3333                for (int activityNdx = tr.mActivities.size() - 1; activityNdx >= 0; --activityNdx) {
3334                    ActivityRecord r = tr.mActivities.get(activityNdx);
3335                    if (r.voiceSession != null
3336                            && r.voiceSession.asBinder() == sessionBinder) {
3337                        // Inform of cancellation
3338                        r.clearVoiceSessionLocked();
3339                        try {
3340                            r.app.thread.scheduleLocalVoiceInteractionStarted((IBinder) r.appToken,
3341                                    null);
3342                        } catch (RemoteException re) {
3343                            // Ok
3344                        }
3345                        mService.finishRunningVoiceLocked();
3346                        break;
3347                    }
3348                }
3349            }
3350        }
3351
3352        if (didOne) {
3353            mService.updateOomAdjLocked();
3354        }
3355    }
3356
3357    final boolean finishActivityAffinityLocked(ActivityRecord r) {
3358        ArrayList<ActivityRecord> activities = r.task.mActivities;
3359        for (int index = activities.indexOf(r); index >= 0; --index) {
3360            ActivityRecord cur = activities.get(index);
3361            if (!Objects.equals(cur.taskAffinity, r.taskAffinity)) {
3362                break;
3363            }
3364            finishActivityLocked(cur, Activity.RESULT_CANCELED, null, "request-affinity", true);
3365        }
3366        return true;
3367    }
3368
3369    final void finishActivityResultsLocked(ActivityRecord r, int resultCode, Intent resultData) {
3370        // send the result
3371        ActivityRecord resultTo = r.resultTo;
3372        if (resultTo != null) {
3373            if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "Adding result to " + resultTo
3374                    + " who=" + r.resultWho + " req=" + r.requestCode
3375                    + " res=" + resultCode + " data=" + resultData);
3376            if (resultTo.userId != r.userId) {
3377                if (resultData != null) {
3378                    resultData.prepareToLeaveUser(r.userId);
3379                }
3380            }
3381            if (r.info.applicationInfo.uid > 0) {
3382                mService.grantUriPermissionFromIntentLocked(r.info.applicationInfo.uid,
3383                        resultTo.packageName, resultData,
3384                        resultTo.getUriPermissionsLocked(), resultTo.userId);
3385            }
3386            resultTo.addResultLocked(r, r.resultWho, r.requestCode, resultCode,
3387                                     resultData);
3388            r.resultTo = null;
3389        }
3390        else if (DEBUG_RESULTS) Slog.v(TAG_RESULTS, "No result destination from " + r);
3391
3392        // Make sure this HistoryRecord is not holding on to other resources,
3393        // because clients have remote IPC references to this object so we
3394        // can't assume that will go away and want to avoid circular IPC refs.
3395        r.results = null;
3396        r.pendingResults = null;
3397        r.newIntents = null;
3398        r.icicle = null;
3399    }
3400
3401    /**
3402     * @return Returns true if this activity has been removed from the history
3403     * list, or false if it is still in the list and will be removed later.
3404     */
3405    final boolean finishActivityLocked(ActivityRecord r, int resultCode, Intent resultData,
3406            String reason, boolean oomAdj) {
3407        if (r.finishing) {
3408            Slog.w(TAG, "Duplicate finish request for " + r);
3409            return false;
3410        }
3411
3412        r.makeFinishingLocked();
3413        final TaskRecord task = r.task;
3414        EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
3415                r.userId, System.identityHashCode(r),
3416                task.taskId, r.shortComponentName, reason);
3417        final ArrayList<ActivityRecord> activities = task.mActivities;
3418        final int index = activities.indexOf(r);
3419        if (index < (activities.size() - 1)) {
3420            task.setFrontOfTask();
3421            if ((r.intent.getFlags() & Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET) != 0) {
3422                // If the caller asked that this activity (and all above it)
3423                // be cleared when the task is reset, don't lose that information,
3424                // but propagate it up to the next activity.
3425                ActivityRecord next = activities.get(index+1);
3426                next.intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
3427            }
3428        }
3429
3430        r.pauseKeyDispatchingLocked();
3431
3432        adjustFocusedActivityLocked(r, "finishActivity");
3433
3434        finishActivityResultsLocked(r, resultCode, resultData);
3435
3436        final boolean endTask = index <= 0;
3437        final int transit = endTask ? TRANSIT_TASK_CLOSE : TRANSIT_ACTIVITY_CLOSE;
3438        if (mResumedActivity == r) {
3439
3440            if (DEBUG_VISIBILITY || DEBUG_TRANSITION) Slog.v(TAG_TRANSITION,
3441                    "Prepare close transition: finishing " + r);
3442            mWindowManager.prepareAppTransition(transit, false);
3443
3444            // Tell window manager to prepare for this one to be removed.
3445            mWindowManager.setAppVisibility(r.appToken, false);
3446
3447            if (mPausingActivity == null) {
3448                if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish needs to pause: " + r);
3449                if (DEBUG_USER_LEAVING) Slog.v(TAG_USER_LEAVING,
3450                        "finish() => pause with userLeaving=false");
3451                startPausingLocked(false, false, false, false);
3452            }
3453
3454            if (endTask) {
3455                mStackSupervisor.removeLockedTaskLocked(task);
3456            }
3457        } else if (r.state != ActivityState.PAUSING) {
3458            // If the activity is PAUSING, we will complete the finish once
3459            // it is done pausing; else we can just directly finish it here.
3460            if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish not pausing: " + r);
3461            if (r.visible) {
3462                mWindowManager.prepareAppTransition(transit, false);
3463                mWindowManager.setAppVisibility(r.appToken, false);
3464                mWindowManager.executeAppTransition();
3465                if (!mStackSupervisor.mWaitingVisibleActivities.contains(r)) {
3466                    mStackSupervisor.mWaitingVisibleActivities.add(r);
3467                }
3468            }
3469            return finishCurrentActivityLocked(r, (r.visible || r.nowVisible) ?
3470                    FINISH_AFTER_VISIBLE : FINISH_AFTER_PAUSE, oomAdj) == null;
3471        } else {
3472            if (DEBUG_PAUSE) Slog.v(TAG_PAUSE, "Finish waiting for pause of: " + r);
3473        }
3474
3475        return false;
3476    }
3477
3478    static final int FINISH_IMMEDIATELY = 0;
3479    static final int FINISH_AFTER_PAUSE = 1;
3480    static final int FINISH_AFTER_VISIBLE = 2;
3481
3482    final ActivityRecord finishCurrentActivityLocked(ActivityRecord r, int mode, boolean oomAdj) {
3483        // First things first: if this activity is currently visible,
3484        // and the resumed activity is not yet visible, then hold off on
3485        // finishing until the resumed one becomes visible.
3486
3487        final ActivityRecord next = mStackSupervisor.topRunningActivityLocked();
3488
3489        if (mode == FINISH_AFTER_VISIBLE && (r.visible || r.nowVisible)
3490                && next != null && !next.nowVisible) {
3491            if (!mStackSupervisor.mStoppingActivities.contains(r)) {
3492                addToStopping(r, false /* immediate */);
3493            }
3494            if (DEBUG_STATES) Slog.v(TAG_STATES,
3495                    "Moving to STOPPING: "+ r + " (finish requested)");
3496            r.state = ActivityState.STOPPING;
3497            if (oomAdj) {
3498                mService.updateOomAdjLocked();
3499            }
3500            return r;
3501        }
3502
3503        // make sure the record is cleaned out of other places.
3504        mStackSupervisor.mStoppingActivities.remove(r);
3505        mStackSupervisor.mGoingToSleepActivities.remove(r);
3506        mStackSupervisor.mWaitingVisibleActivities.remove(r);
3507        if (mResumedActivity == r) {
3508            mResumedActivity = null;
3509        }
3510        final ActivityState prevState = r.state;
3511        if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to FINISHING: " + r);
3512        r.state = ActivityState.FINISHING;
3513
3514        if (mode == FINISH_IMMEDIATELY
3515                || (prevState == ActivityState.PAUSED
3516                    && (mode == FINISH_AFTER_PAUSE || mStackId == PINNED_STACK_ID))
3517                || prevState == ActivityState.STOPPED
3518                || prevState == ActivityState.INITIALIZING) {
3519            r.makeFinishingLocked();
3520            boolean activityRemoved = destroyActivityLocked(r, true, "finish-imm");
3521            if (activityRemoved) {
3522                mStackSupervisor.resumeFocusedStackTopActivityLocked();
3523            }
3524            if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS,
3525                    "destroyActivityLocked: finishCurrentActivityLocked r=" + r +
3526                    " destroy returned removed=" + activityRemoved);
3527            return activityRemoved ? null : r;
3528        }
3529
3530        // Need to go through the full pause cycle to get this
3531        // activity into the stopped state and then finish it.
3532        if (DEBUG_ALL) Slog.v(TAG, "Enqueueing pending finish: " + r);
3533        mStackSupervisor.mFinishingActivities.add(r);
3534        r.resumeKeyDispatchingLocked();
3535        mStackSupervisor.resumeFocusedStackTopActivityLocked();
3536        return r;
3537    }
3538
3539    void finishAllActivitiesLocked(boolean immediately) {
3540        boolean noActivitiesInStack = true;
3541        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3542            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3543            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3544                final ActivityRecord r = activities.get(activityNdx);
3545                noActivitiesInStack = false;
3546                if (r.finishing && !immediately) {
3547                    continue;
3548                }
3549                Slog.d(TAG, "finishAllActivitiesLocked: finishing " + r + " immediately");
3550                finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
3551            }
3552        }
3553        if (noActivitiesInStack) {
3554            mActivityContainer.onTaskListEmptyLocked();
3555        }
3556    }
3557
3558    final boolean shouldUpRecreateTaskLocked(ActivityRecord srec, String destAffinity) {
3559        // Basic case: for simple app-centric recents, we need to recreate
3560        // the task if the affinity has changed.
3561        if (srec == null || srec.task.affinity == null ||
3562                !srec.task.affinity.equals(destAffinity)) {
3563            return true;
3564        }
3565        // Document-centric case: an app may be split in to multiple documents;
3566        // they need to re-create their task if this current activity is the root
3567        // of a document, unless simply finishing it will return them to the the
3568        // correct app behind.
3569        if (srec.frontOfTask && srec.task != null && srec.task.getBaseIntent() != null
3570                && srec.task.getBaseIntent().isDocument()) {
3571            // Okay, this activity is at the root of its task.  What to do, what to do...
3572            if (srec.task.getTaskToReturnTo() != ActivityRecord.APPLICATION_ACTIVITY_TYPE) {
3573                // Finishing won't return to an application, so we need to recreate.
3574                return true;
3575            }
3576            // We now need to get the task below it to determine what to do.
3577            int taskIdx = mTaskHistory.indexOf(srec.task);
3578            if (taskIdx <= 0) {
3579                Slog.w(TAG, "shouldUpRecreateTask: task not in history for " + srec);
3580                return false;
3581            }
3582            if (taskIdx == 0) {
3583                // At the bottom of the stack, nothing to go back to.
3584                return true;
3585            }
3586            TaskRecord prevTask = mTaskHistory.get(taskIdx);
3587            if (!srec.task.affinity.equals(prevTask.affinity)) {
3588                // These are different apps, so need to recreate.
3589                return true;
3590            }
3591        }
3592        return false;
3593    }
3594
3595    final boolean navigateUpToLocked(ActivityRecord srec, Intent destIntent, int resultCode,
3596            Intent resultData) {
3597        final TaskRecord task = srec.task;
3598        final ArrayList<ActivityRecord> activities = task.mActivities;
3599        final int start = activities.indexOf(srec);
3600        if (!mTaskHistory.contains(task) || (start < 0)) {
3601            return false;
3602        }
3603        int finishTo = start - 1;
3604        ActivityRecord parent = finishTo < 0 ? null : activities.get(finishTo);
3605        boolean foundParentInTask = false;
3606        final ComponentName dest = destIntent.getComponent();
3607        if (start > 0 && dest != null) {
3608            for (int i = finishTo; i >= 0; i--) {
3609                ActivityRecord r = activities.get(i);
3610                if (r.info.packageName.equals(dest.getPackageName()) &&
3611                        r.info.name.equals(dest.getClassName())) {
3612                    finishTo = i;
3613                    parent = r;
3614                    foundParentInTask = true;
3615                    break;
3616                }
3617            }
3618        }
3619
3620        IActivityController controller = mService.mController;
3621        if (controller != null) {
3622            ActivityRecord next = topRunningActivityLocked(srec.appToken, 0);
3623            if (next != null) {
3624                // ask watcher if this is allowed
3625                boolean resumeOK = true;
3626                try {
3627                    resumeOK = controller.activityResuming(next.packageName);
3628                } catch (RemoteException e) {
3629                    mService.mController = null;
3630                    Watchdog.getInstance().setActivityController(null);
3631                }
3632
3633                if (!resumeOK) {
3634                    return false;
3635                }
3636            }
3637        }
3638        final long origId = Binder.clearCallingIdentity();
3639        for (int i = start; i > finishTo; i--) {
3640            ActivityRecord r = activities.get(i);
3641            requestFinishActivityLocked(r.appToken, resultCode, resultData, "navigate-up", true);
3642            // Only return the supplied result for the first activity finished
3643            resultCode = Activity.RESULT_CANCELED;
3644            resultData = null;
3645        }
3646
3647        if (parent != null && foundParentInTask) {
3648            final int parentLaunchMode = parent.info.launchMode;
3649            final int destIntentFlags = destIntent.getFlags();
3650            if (parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_INSTANCE ||
3651                    parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TASK ||
3652                    parentLaunchMode == ActivityInfo.LAUNCH_SINGLE_TOP ||
3653                    (destIntentFlags & Intent.FLAG_ACTIVITY_CLEAR_TOP) != 0) {
3654                parent.deliverNewIntentLocked(srec.info.applicationInfo.uid, destIntent,
3655                        srec.packageName);
3656            } else {
3657                try {
3658                    ActivityInfo aInfo = AppGlobals.getPackageManager().getActivityInfo(
3659                            destIntent.getComponent(), 0, srec.userId);
3660                    int res = mService.mActivityStarter.startActivityLocked(srec.app.thread,
3661                            destIntent, null /*ephemeralIntent*/, null, aInfo, null /*rInfo*/, null,
3662                            null, parent.appToken, null, 0, -1, parent.launchedFromUid,
3663                            parent.launchedFromPackage, -1, parent.launchedFromUid, 0, null,
3664                            false, true, null, null, null);
3665                    foundParentInTask = res == ActivityManager.START_SUCCESS;
3666                } catch (RemoteException e) {
3667                    foundParentInTask = false;
3668                }
3669                requestFinishActivityLocked(parent.appToken, resultCode,
3670                        resultData, "navigate-top", true);
3671            }
3672        }
3673        Binder.restoreCallingIdentity(origId);
3674        return foundParentInTask;
3675    }
3676    /**
3677     * Perform the common clean-up of an activity record.  This is called both
3678     * as part of destroyActivityLocked() (when destroying the client-side
3679     * representation) and cleaning things up as a result of its hosting
3680     * processing going away, in which case there is no remaining client-side
3681     * state to destroy so only the cleanup here is needed.
3682     *
3683     * Note: Call before #removeActivityFromHistoryLocked.
3684     */
3685    final void cleanUpActivityLocked(ActivityRecord r, boolean cleanServices,
3686            boolean setState) {
3687        if (mResumedActivity == r) {
3688            mResumedActivity = null;
3689        }
3690        if (mPausingActivity == r) {
3691            mPausingActivity = null;
3692        }
3693        mService.resetFocusedActivityIfNeededLocked(r);
3694
3695        r.deferRelaunchUntilPaused = false;
3696        r.frozenBeforeDestroy = false;
3697
3698        if (setState) {
3699            if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (cleaning up)");
3700            r.state = ActivityState.DESTROYED;
3701            if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during cleanUp for activity " + r);
3702            r.app = null;
3703        }
3704
3705        // Make sure this record is no longer in the pending finishes list.
3706        // This could happen, for example, if we are trimming activities
3707        // down to the max limit while they are still waiting to finish.
3708        mStackSupervisor.mFinishingActivities.remove(r);
3709        mStackSupervisor.mWaitingVisibleActivities.remove(r);
3710
3711        // Remove any pending results.
3712        if (r.finishing && r.pendingResults != null) {
3713            for (WeakReference<PendingIntentRecord> apr : r.pendingResults) {
3714                PendingIntentRecord rec = apr.get();
3715                if (rec != null) {
3716                    mService.cancelIntentSenderLocked(rec, false);
3717                }
3718            }
3719            r.pendingResults = null;
3720        }
3721
3722        if (cleanServices) {
3723            cleanUpActivityServicesLocked(r);
3724        }
3725
3726        // Get rid of any pending idle timeouts.
3727        removeTimeoutsForActivityLocked(r);
3728        if (getVisibleBehindActivity() == r) {
3729            mStackSupervisor.requestVisibleBehindLocked(r, false);
3730        }
3731    }
3732
3733    private void removeTimeoutsForActivityLocked(ActivityRecord r) {
3734        mStackSupervisor.removeTimeoutsForActivityLocked(r);
3735        mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
3736        mHandler.removeMessages(STOP_TIMEOUT_MSG, r);
3737        mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
3738        r.finishLaunchTickingLocked();
3739    }
3740
3741    private void removeActivityFromHistoryLocked(ActivityRecord r, String reason) {
3742        mStackSupervisor.removeChildActivityContainers(r);
3743        finishActivityResultsLocked(r, Activity.RESULT_CANCELED, null);
3744        r.makeFinishingLocked();
3745        if (DEBUG_ADD_REMOVE) Slog.i(TAG_ADD_REMOVE,
3746                "Removing activity " + r + " from stack callers=" + Debug.getCallers(5));
3747
3748        r.takeFromHistory();
3749        removeTimeoutsForActivityLocked(r);
3750        if (DEBUG_STATES) Slog.v(TAG_STATES,
3751                "Moving to DESTROYED: " + r + " (removed from history)");
3752        r.state = ActivityState.DESTROYED;
3753        if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during remove for activity " + r);
3754        r.app = null;
3755        mWindowManager.removeAppToken(r.appToken);
3756        if (VALIDATE_TOKENS) {
3757            validateAppTokensLocked();
3758        }
3759        final TaskRecord task = r.task;
3760        if (task != null && task.removeActivity(r)) {
3761            if (DEBUG_STACK) Slog.i(TAG_STACK,
3762                    "removeActivityFromHistoryLocked: last activity removed from " + this);
3763            if (mStackSupervisor.isFocusedStack(this) && task == topTask() &&
3764                    task.isOverHomeStack()) {
3765                mStackSupervisor.moveHomeStackTaskToTop(task.getTaskToReturnTo(), reason);
3766            }
3767            removeTask(task, reason);
3768        }
3769        cleanUpActivityServicesLocked(r);
3770        r.removeUriPermissionsLocked();
3771    }
3772
3773    /**
3774     * Perform clean-up of service connections in an activity record.
3775     */
3776    final void cleanUpActivityServicesLocked(ActivityRecord r) {
3777        // Throw away any services that have been bound by this activity.
3778        if (r.connections != null) {
3779            Iterator<ConnectionRecord> it = r.connections.iterator();
3780            while (it.hasNext()) {
3781                ConnectionRecord c = it.next();
3782                mService.mServices.removeConnectionLocked(c, null, r);
3783            }
3784            r.connections = null;
3785        }
3786    }
3787
3788    final void scheduleDestroyActivities(ProcessRecord owner, String reason) {
3789        Message msg = mHandler.obtainMessage(DESTROY_ACTIVITIES_MSG);
3790        msg.obj = new ScheduleDestroyArgs(owner, reason);
3791        mHandler.sendMessage(msg);
3792    }
3793
3794    final void destroyActivitiesLocked(ProcessRecord owner, String reason) {
3795        boolean lastIsOpaque = false;
3796        boolean activityRemoved = false;
3797        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
3798            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
3799            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
3800                final ActivityRecord r = activities.get(activityNdx);
3801                if (r.finishing) {
3802                    continue;
3803                }
3804                if (r.fullscreen) {
3805                    lastIsOpaque = true;
3806                }
3807                if (owner != null && r.app != owner) {
3808                    continue;
3809                }
3810                if (!lastIsOpaque) {
3811                    continue;
3812                }
3813                if (r.isDestroyable()) {
3814                    if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "Destroying " + r + " in state " + r.state
3815                            + " resumed=" + mResumedActivity
3816                            + " pausing=" + mPausingActivity + " for reason " + reason);
3817                    if (destroyActivityLocked(r, true, reason)) {
3818                        activityRemoved = true;
3819                    }
3820                }
3821            }
3822        }
3823        if (activityRemoved) {
3824            mStackSupervisor.resumeFocusedStackTopActivityLocked();
3825        }
3826    }
3827
3828    final boolean safelyDestroyActivityLocked(ActivityRecord r, String reason) {
3829        if (r.isDestroyable()) {
3830            if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
3831                    "Destroying " + r + " in state " + r.state + " resumed=" + mResumedActivity
3832                    + " pausing=" + mPausingActivity + " for reason " + reason);
3833            return destroyActivityLocked(r, true, reason);
3834        }
3835        return false;
3836    }
3837
3838    final int releaseSomeActivitiesLocked(ProcessRecord app, ArraySet<TaskRecord> tasks,
3839            String reason) {
3840        // Iterate over tasks starting at the back (oldest) first.
3841        if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Trying to release some activities in " + app);
3842        int maxTasks = tasks.size() / 4;
3843        if (maxTasks < 1) {
3844            maxTasks = 1;
3845        }
3846        int numReleased = 0;
3847        for (int taskNdx = 0; taskNdx < mTaskHistory.size() && maxTasks > 0; taskNdx++) {
3848            final TaskRecord task = mTaskHistory.get(taskNdx);
3849            if (!tasks.contains(task)) {
3850                continue;
3851            }
3852            if (DEBUG_RELEASE) Slog.d(TAG_RELEASE, "Looking for activities to release in " + task);
3853            int curNum = 0;
3854            final ArrayList<ActivityRecord> activities = task.mActivities;
3855            for (int actNdx = 0; actNdx < activities.size(); actNdx++) {
3856                final ActivityRecord activity = activities.get(actNdx);
3857                if (activity.app == app && activity.isDestroyable()) {
3858                    if (DEBUG_RELEASE) Slog.v(TAG_RELEASE, "Destroying " + activity
3859                            + " in state " + activity.state + " resumed=" + mResumedActivity
3860                            + " pausing=" + mPausingActivity + " for reason " + reason);
3861                    destroyActivityLocked(activity, true, reason);
3862                    if (activities.get(actNdx) != activity) {
3863                        // Was removed from list, back up so we don't miss the next one.
3864                        actNdx--;
3865                    }
3866                    curNum++;
3867                }
3868            }
3869            if (curNum > 0) {
3870                numReleased += curNum;
3871                maxTasks--;
3872                if (mTaskHistory.get(taskNdx) != task) {
3873                    // The entire task got removed, back up so we don't miss the next one.
3874                    taskNdx--;
3875                }
3876            }
3877        }
3878        if (DEBUG_RELEASE) Slog.d(TAG_RELEASE,
3879                "Done releasing: did " + numReleased + " activities");
3880        return numReleased;
3881    }
3882
3883    /**
3884     * Destroy the current CLIENT SIDE instance of an activity.  This may be
3885     * called both when actually finishing an activity, or when performing
3886     * a configuration switch where we destroy the current client-side object
3887     * but then create a new client-side object for this same HistoryRecord.
3888     */
3889    final boolean destroyActivityLocked(ActivityRecord r, boolean removeFromApp, String reason) {
3890        if (DEBUG_SWITCH || DEBUG_CLEANUP) Slog.v(TAG_SWITCH,
3891                "Removing activity from " + reason + ": token=" + r
3892                        + ", app=" + (r.app != null ? r.app.processName : "(null)"));
3893        EventLog.writeEvent(EventLogTags.AM_DESTROY_ACTIVITY,
3894                r.userId, System.identityHashCode(r),
3895                r.task.taskId, r.shortComponentName, reason);
3896
3897        boolean removedFromHistory = false;
3898
3899        cleanUpActivityLocked(r, false, false);
3900
3901        final boolean hadApp = r.app != null;
3902
3903        if (hadApp) {
3904            if (removeFromApp) {
3905                r.app.activities.remove(r);
3906                if (mService.mHeavyWeightProcess == r.app && r.app.activities.size() <= 0) {
3907                    mService.mHeavyWeightProcess = null;
3908                    mService.mHandler.sendEmptyMessage(
3909                            ActivityManagerService.CANCEL_HEAVY_NOTIFICATION_MSG);
3910                }
3911                if (r.app.activities.isEmpty()) {
3912                    // Update any services we are bound to that might care about whether
3913                    // their client may have activities.
3914                    mService.mServices.updateServiceConnectionActivitiesLocked(r.app);
3915                    // No longer have activities, so update LRU list and oom adj.
3916                    mService.updateLruProcessLocked(r.app, false, null);
3917                    mService.updateOomAdjLocked();
3918                }
3919            }
3920
3921            boolean skipDestroy = false;
3922
3923            try {
3924                if (DEBUG_SWITCH) Slog.i(TAG_SWITCH, "Destroying: " + r);
3925                r.app.thread.scheduleDestroyActivity(r.appToken, r.finishing,
3926                        r.configChangeFlags);
3927            } catch (Exception e) {
3928                // We can just ignore exceptions here...  if the process
3929                // has crashed, our death notification will clean things
3930                // up.
3931                //Slog.w(TAG, "Exception thrown during finish", e);
3932                if (r.finishing) {
3933                    removeActivityFromHistoryLocked(r, reason + " exceptionInScheduleDestroy");
3934                    removedFromHistory = true;
3935                    skipDestroy = true;
3936                }
3937            }
3938
3939            r.nowVisible = false;
3940
3941            // If the activity is finishing, we need to wait on removing it
3942            // from the list to give it a chance to do its cleanup.  During
3943            // that time it may make calls back with its token so we need to
3944            // be able to find it on the list and so we don't want to remove
3945            // it from the list yet.  Otherwise, we can just immediately put
3946            // it in the destroyed state since we are not removing it from the
3947            // list.
3948            if (r.finishing && !skipDestroy) {
3949                if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYING: " + r
3950                        + " (destroy requested)");
3951                r.state = ActivityState.DESTROYING;
3952                Message msg = mHandler.obtainMessage(DESTROY_TIMEOUT_MSG, r);
3953                mHandler.sendMessageDelayed(msg, DESTROY_TIMEOUT);
3954            } else {
3955                if (DEBUG_STATES) Slog.v(TAG_STATES,
3956                        "Moving to DESTROYED: " + r + " (destroy skipped)");
3957                r.state = ActivityState.DESTROYED;
3958                if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
3959                r.app = null;
3960            }
3961        } else {
3962            // remove this record from the history.
3963            if (r.finishing) {
3964                removeActivityFromHistoryLocked(r, reason + " hadNoApp");
3965                removedFromHistory = true;
3966            } else {
3967                if (DEBUG_STATES) Slog.v(TAG_STATES, "Moving to DESTROYED: " + r + " (no app)");
3968                r.state = ActivityState.DESTROYED;
3969                if (DEBUG_APP) Slog.v(TAG_APP, "Clearing app during destroy for activity " + r);
3970                r.app = null;
3971            }
3972        }
3973
3974        r.configChangeFlags = 0;
3975
3976        if (!mLRUActivities.remove(r) && hadApp) {
3977            Slog.w(TAG, "Activity " + r + " being finished, but not in LRU list");
3978        }
3979
3980        return removedFromHistory;
3981    }
3982
3983    final void activityDestroyedLocked(IBinder token, String reason) {
3984        final long origId = Binder.clearCallingIdentity();
3985        try {
3986            ActivityRecord r = ActivityRecord.forTokenLocked(token);
3987            if (r != null) {
3988                mHandler.removeMessages(DESTROY_TIMEOUT_MSG, r);
3989            }
3990            if (DEBUG_CONTAINERS) Slog.d(TAG_CONTAINERS, "activityDestroyedLocked: r=" + r);
3991
3992            if (isInStackLocked(r) != null) {
3993                if (r.state == ActivityState.DESTROYING) {
3994                    cleanUpActivityLocked(r, true, false);
3995                    removeActivityFromHistoryLocked(r, reason);
3996                }
3997            }
3998            mStackSupervisor.resumeFocusedStackTopActivityLocked();
3999        } finally {
4000            Binder.restoreCallingIdentity(origId);
4001        }
4002    }
4003
4004    void releaseBackgroundResources(ActivityRecord r) {
4005        if (hasVisibleBehindActivity() &&
4006                !mHandler.hasMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG)) {
4007            if (r == topRunningActivityLocked()
4008                    && getStackVisibilityLocked(null) == STACK_VISIBLE) {
4009                // Don't release the top activity if it has requested to run behind the next
4010                // activity and the stack is currently visible.
4011                return;
4012            }
4013            if (DEBUG_STATES) Slog.d(TAG_STATES, "releaseBackgroundResources activtyDisplay=" +
4014                    mActivityContainer.mActivityDisplay + " visibleBehind=" + r + " app=" + r.app +
4015                    " thread=" + r.app.thread);
4016            if (r != null && r.app != null && r.app.thread != null) {
4017                try {
4018                    r.app.thread.scheduleCancelVisibleBehind(r.appToken);
4019                } catch (RemoteException e) {
4020                }
4021                mHandler.sendEmptyMessageDelayed(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG, 500);
4022            } else {
4023                Slog.e(TAG, "releaseBackgroundResources: activity " + r + " no longer running");
4024                backgroundResourcesReleased();
4025            }
4026        }
4027    }
4028
4029    final void backgroundResourcesReleased() {
4030        mHandler.removeMessages(RELEASE_BACKGROUND_RESOURCES_TIMEOUT_MSG);
4031        final ActivityRecord r = getVisibleBehindActivity();
4032        if (r != null) {
4033            mStackSupervisor.mStoppingActivities.add(r);
4034            setVisibleBehindActivity(null);
4035            mStackSupervisor.scheduleIdleTimeoutLocked(null);
4036        }
4037        mStackSupervisor.resumeFocusedStackTopActivityLocked();
4038    }
4039
4040    boolean hasVisibleBehindActivity() {
4041        return isAttached() && mActivityContainer.mActivityDisplay.hasVisibleBehindActivity();
4042    }
4043
4044    void setVisibleBehindActivity(ActivityRecord r) {
4045        if (isAttached()) {
4046            mActivityContainer.mActivityDisplay.setVisibleBehindActivity(r);
4047        }
4048    }
4049
4050    ActivityRecord getVisibleBehindActivity() {
4051        return isAttached() ? mActivityContainer.mActivityDisplay.mVisibleBehindActivity : null;
4052    }
4053
4054    private void removeHistoryRecordsForAppLocked(ArrayList<ActivityRecord> list,
4055            ProcessRecord app, String listName) {
4056        int i = list.size();
4057        if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4058            "Removing app " + app + " from list " + listName + " with " + i + " entries");
4059        while (i > 0) {
4060            i--;
4061            ActivityRecord r = list.get(i);
4062            if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "Record #" + i + " " + r);
4063            if (r.app == app) {
4064                if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP, "---> REMOVING this entry!");
4065                list.remove(i);
4066                removeTimeoutsForActivityLocked(r);
4067            }
4068        }
4069    }
4070
4071    boolean removeHistoryRecordsForAppLocked(ProcessRecord app) {
4072        removeHistoryRecordsForAppLocked(mLRUActivities, app, "mLRUActivities");
4073        removeHistoryRecordsForAppLocked(mStackSupervisor.mStoppingActivities, app,
4074                "mStoppingActivities");
4075        removeHistoryRecordsForAppLocked(mStackSupervisor.mGoingToSleepActivities, app,
4076                "mGoingToSleepActivities");
4077        removeHistoryRecordsForAppLocked(mStackSupervisor.mWaitingVisibleActivities, app,
4078                "mWaitingVisibleActivities");
4079        removeHistoryRecordsForAppLocked(mStackSupervisor.mFinishingActivities, app,
4080                "mFinishingActivities");
4081
4082        boolean hasVisibleActivities = false;
4083
4084        // Clean out the history list.
4085        int i = numActivities();
4086        if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4087                "Removing app " + app + " from history with " + i + " entries");
4088        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4089            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4090            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4091                final ActivityRecord r = activities.get(activityNdx);
4092                --i;
4093                if (DEBUG_CLEANUP) Slog.v(TAG_CLEANUP,
4094                        "Record #" + i + " " + r + ": app=" + r.app);
4095                if (r.app == app) {
4096                    if (r.visible) {
4097                        hasVisibleActivities = true;
4098                    }
4099                    final boolean remove;
4100                    if ((!r.haveState && !r.stateNotNeeded) || r.finishing) {
4101                        // Don't currently have state for the activity, or
4102                        // it is finishing -- always remove it.
4103                        remove = true;
4104                    } else if (!r.visible && r.launchCount > 2 &&
4105                            r.lastLaunchTime > (SystemClock.uptimeMillis() - 60000)) {
4106                        // We have launched this activity too many times since it was
4107                        // able to run, so give up and remove it.
4108                        // (Note if the activity is visible, we don't remove the record.
4109                        // We leave the dead window on the screen but the process will
4110                        // not be restarted unless user explicitly tap on it.)
4111                        remove = true;
4112                    } else {
4113                        // The process may be gone, but the activity lives on!
4114                        remove = false;
4115                    }
4116                    if (remove) {
4117                        if (DEBUG_ADD_REMOVE || DEBUG_CLEANUP) Slog.i(TAG_ADD_REMOVE,
4118                                "Removing activity " + r + " from stack at " + i
4119                                + ": haveState=" + r.haveState
4120                                + " stateNotNeeded=" + r.stateNotNeeded
4121                                + " finishing=" + r.finishing
4122                                + " state=" + r.state + " callers=" + Debug.getCallers(5));
4123                        if (!r.finishing) {
4124                            Slog.w(TAG, "Force removing " + r + ": app died, no saved state");
4125                            EventLog.writeEvent(EventLogTags.AM_FINISH_ACTIVITY,
4126                                    r.userId, System.identityHashCode(r),
4127                                    r.task.taskId, r.shortComponentName,
4128                                    "proc died without state saved");
4129                            if (r.state == ActivityState.RESUMED) {
4130                                mService.updateUsageStats(r, false);
4131                            }
4132                        }
4133                    } else {
4134                        // We have the current state for this activity, so
4135                        // it can be restarted later when needed.
4136                        if (DEBUG_ALL) Slog.v(TAG, "Keeping entry, setting app to null");
4137                        if (DEBUG_APP) Slog.v(TAG_APP,
4138                                "Clearing app during removeHistory for activity " + r);
4139                        r.app = null;
4140                        // Set nowVisible to previous visible state. If the app was visible while
4141                        // it died, we leave the dead window on screen so it's basically visible.
4142                        // This is needed when user later tap on the dead window, we need to stop
4143                        // other apps when user transfers focus to the restarted activity.
4144                        r.nowVisible = r.visible;
4145                        if (!r.haveState) {
4146                            if (DEBUG_SAVED_STATE) Slog.i(TAG_SAVED_STATE,
4147                                    "App died, clearing saved state of " + r);
4148                            r.icicle = null;
4149                        }
4150                    }
4151                    cleanUpActivityLocked(r, true, true);
4152                    if (remove) {
4153                        removeActivityFromHistoryLocked(r, "appDied");
4154                    }
4155                }
4156            }
4157        }
4158
4159        return hasVisibleActivities;
4160    }
4161
4162    final void updateTransitLocked(int transit, ActivityOptions options) {
4163        if (options != null) {
4164            ActivityRecord r = topRunningActivityLocked();
4165            if (r != null && r.state != ActivityState.RESUMED) {
4166                r.updateOptionsLocked(options);
4167            } else {
4168                ActivityOptions.abort(options);
4169            }
4170        }
4171        mWindowManager.prepareAppTransition(transit, false);
4172    }
4173
4174    void updateTaskMovement(TaskRecord task, boolean toFront) {
4175        if (task.isPersistable) {
4176            task.mLastTimeMoved = System.currentTimeMillis();
4177            // Sign is used to keep tasks sorted when persisted. Tasks sent to the bottom most
4178            // recently will be most negative, tasks sent to the bottom before that will be less
4179            // negative. Similarly for recent tasks moved to the top which will be most positive.
4180            if (!toFront) {
4181                task.mLastTimeMoved *= -1;
4182            }
4183        }
4184        mStackSupervisor.invalidateTaskLayers();
4185    }
4186
4187    void moveHomeStackTaskToTop(int homeStackTaskType) {
4188        final int top = mTaskHistory.size() - 1;
4189        for (int taskNdx = top; taskNdx >= 0; --taskNdx) {
4190            final TaskRecord task = mTaskHistory.get(taskNdx);
4191            if (task.taskType == homeStackTaskType) {
4192                if (DEBUG_TASKS || DEBUG_STACK) Slog.d(TAG_STACK,
4193                        "moveHomeStackTaskToTop: moving " + task);
4194                mTaskHistory.remove(taskNdx);
4195                mTaskHistory.add(top, task);
4196                updateTaskMovement(task, true);
4197                return;
4198            }
4199        }
4200    }
4201
4202    final void moveTaskToFrontLocked(TaskRecord tr, boolean noAnimation, ActivityOptions options,
4203            AppTimeTracker timeTracker, String reason) {
4204        if (DEBUG_SWITCH) Slog.v(TAG_SWITCH, "moveTaskToFront: " + tr);
4205
4206        final int numTasks = mTaskHistory.size();
4207        final int index = mTaskHistory.indexOf(tr);
4208        if (numTasks == 0 || index < 0)  {
4209            // nothing to do!
4210            if (noAnimation) {
4211                ActivityOptions.abort(options);
4212            } else {
4213                updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
4214            }
4215            return;
4216        }
4217
4218        if (timeTracker != null) {
4219            // The caller wants a time tracker associated with this task.
4220            for (int i = tr.mActivities.size() - 1; i >= 0; i--) {
4221                tr.mActivities.get(i).appTimeTracker = timeTracker;
4222            }
4223        }
4224
4225        // Shift all activities with this task up to the top
4226        // of the stack, keeping them in the same internal order.
4227        insertTaskAtTop(tr, null);
4228
4229        // Don't refocus if invisible to current user
4230        ActivityRecord top = tr.getTopActivity();
4231        if (!okToShowLocked(top)) {
4232            addRecentActivityLocked(top);
4233            ActivityOptions.abort(options);
4234            return;
4235        }
4236
4237        // Set focus to the top running activity of this stack.
4238        ActivityRecord r = topRunningActivityLocked();
4239        mService.setFocusedActivityLocked(r, reason);
4240
4241        if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to front transition: task=" + tr);
4242        if (noAnimation) {
4243            mWindowManager.prepareAppTransition(TRANSIT_NONE, false);
4244            if (r != null) {
4245                mNoAnimActivities.add(r);
4246            }
4247            ActivityOptions.abort(options);
4248        } else {
4249            updateTransitLocked(TRANSIT_TASK_TO_FRONT, options);
4250        }
4251
4252        mStackSupervisor.resumeFocusedStackTopActivityLocked();
4253        EventLog.writeEvent(EventLogTags.AM_TASK_TO_FRONT, tr.userId, tr.taskId);
4254
4255        if (VALIDATE_TOKENS) {
4256            validateAppTokensLocked();
4257        }
4258    }
4259
4260    /**
4261     * Worker method for rearranging history stack. Implements the function of moving all
4262     * activities for a specific task (gathering them if disjoint) into a single group at the
4263     * bottom of the stack.
4264     *
4265     * If a watcher is installed, the action is preflighted and the watcher has an opportunity
4266     * to premeptively cancel the move.
4267     *
4268     * @param taskId The taskId to collect and move to the bottom.
4269     * @return Returns true if the move completed, false if not.
4270     */
4271    final boolean moveTaskToBackLocked(int taskId) {
4272        final TaskRecord tr = taskForIdLocked(taskId);
4273        if (tr == null) {
4274            Slog.i(TAG, "moveTaskToBack: bad taskId=" + taskId);
4275            return false;
4276        }
4277
4278        Slog.i(TAG, "moveTaskToBack: " + tr);
4279        mStackSupervisor.removeLockedTaskLocked(tr);
4280
4281        // If we have a watcher, preflight the move before committing to it.  First check
4282        // for *other* available tasks, but if none are available, then try again allowing the
4283        // current task to be selected.
4284        if (mStackSupervisor.isFrontStack(this) && mService.mController != null) {
4285            ActivityRecord next = topRunningActivityLocked(null, taskId);
4286            if (next == null) {
4287                next = topRunningActivityLocked(null, 0);
4288            }
4289            if (next != null) {
4290                // ask watcher if this is allowed
4291                boolean moveOK = true;
4292                try {
4293                    moveOK = mService.mController.activityResuming(next.packageName);
4294                } catch (RemoteException e) {
4295                    mService.mController = null;
4296                    Watchdog.getInstance().setActivityController(null);
4297                }
4298                if (!moveOK) {
4299                    return false;
4300                }
4301            }
4302        }
4303
4304        if (DEBUG_TRANSITION) Slog.v(TAG_TRANSITION, "Prepare to back transition: task=" + taskId);
4305
4306        if (mStackId == HOME_STACK_ID && topTask().isHomeTask()) {
4307            // For the case where we are moving the home task back and there is an activity visible
4308            // behind it on the fullscreen stack, we want to move the focus to the visible behind
4309            // activity to maintain order with what the user is seeing.
4310            final ActivityStack fullscreenStack =
4311                    mStackSupervisor.getStack(FULLSCREEN_WORKSPACE_STACK_ID);
4312            if (fullscreenStack != null && fullscreenStack.hasVisibleBehindActivity()) {
4313                final ActivityRecord visibleBehind = fullscreenStack.getVisibleBehindActivity();
4314                mService.setFocusedActivityLocked(visibleBehind, "moveTaskToBack");
4315                mStackSupervisor.resumeFocusedStackTopActivityLocked();
4316                return true;
4317            }
4318        }
4319
4320        boolean prevIsHome = false;
4321
4322        // If true, we should resume the home activity next if the task we are moving to the
4323        // back is over the home stack. We force to false if the task we are moving to back
4324        // is the home task and we don't want it resumed after moving to the back.
4325        final boolean canGoHome = !tr.isHomeTask() && tr.isOverHomeStack();
4326        if (canGoHome) {
4327            final TaskRecord nextTask = getNextTask(tr);
4328            if (nextTask != null) {
4329                nextTask.setTaskToReturnTo(tr.getTaskToReturnTo());
4330            } else {
4331                prevIsHome = true;
4332            }
4333        }
4334        mTaskHistory.remove(tr);
4335        mTaskHistory.add(0, tr);
4336        updateTaskMovement(tr, false);
4337
4338        // There is an assumption that moving a task to the back moves it behind the home activity.
4339        // We make sure here that some activity in the stack will launch home.
4340        int numTasks = mTaskHistory.size();
4341        for (int taskNdx = numTasks - 1; taskNdx >= 1; --taskNdx) {
4342            final TaskRecord task = mTaskHistory.get(taskNdx);
4343            if (task.isOverHomeStack()) {
4344                break;
4345            }
4346            if (taskNdx == 1) {
4347                // Set the last task before tr to go to home.
4348                task.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
4349            }
4350        }
4351
4352        mWindowManager.prepareAppTransition(TRANSIT_TASK_TO_BACK, false);
4353        mWindowManager.moveTaskToBottom(taskId);
4354
4355        if (VALIDATE_TOKENS) {
4356            validateAppTokensLocked();
4357        }
4358
4359        final TaskRecord task = mResumedActivity != null ? mResumedActivity.task : null;
4360        if (prevIsHome || (task == tr && canGoHome) || (numTasks <= 1 && isOnHomeDisplay())) {
4361            if (!mService.mBooting && !mService.mBooted) {
4362                // Not ready yet!
4363                return false;
4364            }
4365            final int taskToReturnTo = tr.getTaskToReturnTo();
4366            tr.setTaskToReturnTo(APPLICATION_ACTIVITY_TYPE);
4367            return mStackSupervisor.resumeHomeStackTask(taskToReturnTo, null, "moveTaskToBack");
4368        }
4369
4370        mStackSupervisor.resumeFocusedStackTopActivityLocked();
4371        return true;
4372    }
4373
4374    static final void logStartActivity(int tag, ActivityRecord r,
4375            TaskRecord task) {
4376        final Uri data = r.intent.getData();
4377        final String strData = data != null ? data.toSafeString() : null;
4378
4379        EventLog.writeEvent(tag,
4380                r.userId, System.identityHashCode(r), task.taskId,
4381                r.shortComponentName, r.intent.getAction(),
4382                r.intent.getType(), strData, r.intent.getFlags());
4383    }
4384
4385    /**
4386     * Ensures all visible activities at or below the input activity have the right configuration.
4387     */
4388    void ensureVisibleActivitiesConfigurationLocked(ActivityRecord start, boolean preserveWindow) {
4389        if (start == null || !start.visible) {
4390            return;
4391        }
4392
4393        final TaskRecord startTask = start.task;
4394        boolean behindFullscreen = false;
4395        boolean updatedConfig = false;
4396
4397        for (int taskIndex = mTaskHistory.indexOf(startTask); taskIndex >= 0; --taskIndex) {
4398            final TaskRecord task = mTaskHistory.get(taskIndex);
4399            final ArrayList<ActivityRecord> activities = task.mActivities;
4400            int activityIndex =
4401                    (start.task == task) ? activities.indexOf(start) : activities.size() - 1;
4402            for (; activityIndex >= 0; --activityIndex) {
4403                final ActivityRecord r = activities.get(activityIndex);
4404                updatedConfig |= ensureActivityConfigurationLocked(r, 0, preserveWindow);
4405                if (r.fullscreen) {
4406                    behindFullscreen = true;
4407                    break;
4408                }
4409            }
4410            if (behindFullscreen) {
4411                break;
4412            }
4413        }
4414        if (updatedConfig) {
4415            // Ensure the resumed state of the focus activity if we updated the confiugaration of
4416            // any activity.
4417            mStackSupervisor.resumeFocusedStackTopActivityLocked();
4418        }
4419    }
4420
4421    /**
4422     * Make sure the given activity matches the current configuration. Returns false if the activity
4423     * had to be destroyed.  Returns true if the configuration is the same, or the activity will
4424     * remain running as-is for whatever reason. Ensures the HistoryRecord is updated with the
4425     * correct configuration and all other bookkeeping is handled.
4426     */
4427    boolean ensureActivityConfigurationLocked(
4428            ActivityRecord r, int globalChanges, boolean preserveWindow) {
4429        if (mConfigWillChange) {
4430            if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4431                    "Skipping config check (will change): " + r);
4432            return true;
4433        }
4434
4435        if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4436                "Ensuring correct configuration: " + r);
4437
4438        // Short circuit: if the two configurations are equal (the common case), then there is
4439        // nothing to do.
4440        final Configuration newConfig = mService.mConfiguration;
4441        final Configuration taskConfig = r.task.mOverrideConfig;
4442        if (r.configuration.equals(newConfig)
4443                && r.taskConfigOverride.equals(taskConfig)
4444                && !r.forceNewConfig) {
4445            if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4446                    "Configuration unchanged in " + r);
4447            return true;
4448        }
4449
4450        // We don't worry about activities that are finishing.
4451        if (r.finishing) {
4452            if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4453                    "Configuration doesn't matter in finishing " + r);
4454            r.stopFreezingScreenLocked(false);
4455            return true;
4456        }
4457
4458        // Okay we now are going to make this activity have the new config.
4459        // But then we need to figure out how it needs to deal with that.
4460        final Configuration oldConfig = r.configuration;
4461        final Configuration oldTaskOverride = r.taskConfigOverride;
4462        r.configuration = newConfig;
4463        r.taskConfigOverride = taskConfig;
4464
4465        int taskChanges = getTaskConfigurationChanges(r, taskConfig, oldTaskOverride);
4466        final int changes = oldConfig.diff(newConfig) | taskChanges;
4467        if (changes == 0 && !r.forceNewConfig) {
4468            if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4469                    "Configuration no differences in " + r);
4470            // There are no significant differences, so we won't relaunch but should still deliver
4471            // the new configuration to the client process.
4472            r.scheduleConfigurationChanged(taskConfig, true);
4473            return true;
4474        }
4475
4476        if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4477                "Configuration changes for " + r + " ; taskChanges="
4478                        + Configuration.configurationDiffToString(taskChanges) + ", allChanges="
4479                        + Configuration.configurationDiffToString(changes));
4480
4481        // If the activity isn't currently running, just leave the new
4482        // configuration and it will pick that up next time it starts.
4483        if (r.app == null || r.app.thread == null) {
4484            if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4485                    "Configuration doesn't matter not running " + r);
4486            r.stopFreezingScreenLocked(false);
4487            r.forceNewConfig = false;
4488            return true;
4489        }
4490
4491        // Figure out how to handle the changes between the configurations.
4492        if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4493                "Checking to restart " + r.info.name + ": changed=0x"
4494                + Integer.toHexString(changes) + ", handles=0x"
4495                + Integer.toHexString(r.info.getRealConfigChanged()) + ", newConfig=" + newConfig
4496                + ", taskConfig=" + taskConfig);
4497
4498        if ((changes&(~r.info.getRealConfigChanged())) != 0 || r.forceNewConfig) {
4499            // Aha, the activity isn't handling the change, so DIE DIE DIE.
4500            r.configChangeFlags |= changes;
4501            r.startFreezingScreenLocked(r.app, globalChanges);
4502            r.forceNewConfig = false;
4503            preserveWindow &= isResizeOnlyChange(changes);
4504            if (r.app == null || r.app.thread == null) {
4505                if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4506                        "Config is destroying non-running " + r);
4507                destroyActivityLocked(r, true, "config");
4508            } else if (r.state == ActivityState.PAUSING) {
4509                // A little annoying: we are waiting for this activity to finish pausing. Let's not
4510                // do anything now, but just flag that it needs to be restarted when done pausing.
4511                if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4512                        "Config is skipping already pausing " + r);
4513                r.deferRelaunchUntilPaused = true;
4514                r.preserveWindowOnDeferredRelaunch = preserveWindow;
4515                return true;
4516            } else if (r.state == ActivityState.RESUMED) {
4517                // Try to optimize this case: the configuration is changing and we need to restart
4518                // the top, resumed activity. Instead of doing the normal handshaking, just say
4519                // "restart!".
4520                if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4521                        "Config is relaunching resumed " + r);
4522
4523                if (DEBUG_STATES && !r.visible) {
4524                    Slog.v(TAG_STATES, "Config is relaunching resumed invisible activity " + r
4525                            + " called by " + Debug.getCallers(4));
4526                }
4527
4528                relaunchActivityLocked(r, r.configChangeFlags, true, preserveWindow);
4529            } else {
4530                if (DEBUG_SWITCH || DEBUG_CONFIGURATION) Slog.v(TAG_CONFIGURATION,
4531                        "Config is relaunching non-resumed " + r);
4532                relaunchActivityLocked(r, r.configChangeFlags, false, preserveWindow);
4533            }
4534
4535            // All done...  tell the caller we weren't able to keep this activity around.
4536            return false;
4537        }
4538
4539        // Default case: the activity can handle this new configuration, so hand it over.
4540        // NOTE: We only forward the task override configuration as the system level configuration
4541        // changes is always sent to all processes when they happen so it can just use whatever
4542        // system level configuration it last got.
4543        r.scheduleConfigurationChanged(taskConfig, true);
4544        r.stopFreezingScreenLocked(false);
4545
4546        return true;
4547    }
4548
4549    private int getTaskConfigurationChanges(ActivityRecord record, Configuration taskConfig,
4550            Configuration oldTaskOverride) {
4551
4552        // If we went from full-screen to non-full-screen, make sure to use the correct
4553        // configuration task diff, so the diff stays as small as possible.
4554        if (Configuration.EMPTY.equals(oldTaskOverride)
4555                && !Configuration.EMPTY.equals(taskConfig)) {
4556            oldTaskOverride = record.task.extractOverrideConfig(record.configuration);
4557        }
4558
4559        // Conversely, do the same when going the other direction.
4560        if (Configuration.EMPTY.equals(taskConfig)
4561                && !Configuration.EMPTY.equals(oldTaskOverride)) {
4562            taskConfig = record.task.extractOverrideConfig(record.configuration);
4563        }
4564
4565        // Determine what has changed.  May be nothing, if this is a config
4566        // that has come back from the app after going idle.  In that case
4567        // we just want to leave the official config object now in the
4568        // activity and do nothing else.
4569        int taskChanges = oldTaskOverride.diff(taskConfig);
4570        // We don't want to use size changes if they don't cross boundaries that are important to
4571        // the app.
4572        if ((taskChanges & CONFIG_SCREEN_SIZE) != 0) {
4573            final boolean crosses = record.crossesHorizontalSizeThreshold(
4574                    oldTaskOverride.screenWidthDp, taskConfig.screenWidthDp)
4575                    || record.crossesVerticalSizeThreshold(
4576                    oldTaskOverride.screenHeightDp, taskConfig.screenHeightDp);
4577            if (!crosses) {
4578                taskChanges &= ~CONFIG_SCREEN_SIZE;
4579            }
4580        }
4581        if ((taskChanges & CONFIG_SMALLEST_SCREEN_SIZE) != 0) {
4582            final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4583            final int newSmallest = taskConfig.smallestScreenWidthDp;
4584            if (!record.crossesSmallestSizeThreshold(oldSmallest, newSmallest)) {
4585                taskChanges &= ~CONFIG_SMALLEST_SCREEN_SIZE;
4586            }
4587        }
4588        return catchConfigChangesFromUnset(taskConfig, oldTaskOverride, taskChanges);
4589    }
4590
4591    private static int catchConfigChangesFromUnset(Configuration taskConfig,
4592            Configuration oldTaskOverride, int taskChanges) {
4593        if (taskChanges == 0) {
4594            // {@link Configuration#diff} doesn't catch changes from unset values.
4595            // Check for changes we care about.
4596            if (oldTaskOverride.orientation != taskConfig.orientation) {
4597                taskChanges |= CONFIG_ORIENTATION;
4598            }
4599            // We want to explicitly track situations where the size configuration goes from
4600            // undefined to defined. We don't care about crossing the threshold in that case,
4601            // because there is no threshold.
4602            final int oldHeight = oldTaskOverride.screenHeightDp;
4603            final int newHeight = taskConfig.screenHeightDp;
4604            final int undefinedHeight = Configuration.SCREEN_HEIGHT_DP_UNDEFINED;
4605            if ((oldHeight == undefinedHeight && newHeight != undefinedHeight)
4606                    || (oldHeight != undefinedHeight && newHeight == undefinedHeight)) {
4607                taskChanges |= CONFIG_SCREEN_SIZE;
4608            }
4609            final int oldWidth = oldTaskOverride.screenWidthDp;
4610            final int newWidth = taskConfig.screenWidthDp;
4611            final int undefinedWidth = Configuration.SCREEN_WIDTH_DP_UNDEFINED;
4612            if ((oldWidth == undefinedWidth && newWidth != undefinedWidth)
4613                    || (oldWidth != undefinedWidth && newWidth == undefinedWidth)) {
4614                taskChanges |= CONFIG_SCREEN_SIZE;
4615            }
4616            final int oldSmallest = oldTaskOverride.smallestScreenWidthDp;
4617            final int newSmallest = taskConfig.smallestScreenWidthDp;
4618            final int undefinedSmallest = Configuration.SMALLEST_SCREEN_WIDTH_DP_UNDEFINED;
4619            if ((oldSmallest == undefinedSmallest && newSmallest != undefinedSmallest)
4620                    || (oldSmallest != undefinedSmallest && newSmallest == undefinedSmallest)) {
4621                taskChanges |= CONFIG_SMALLEST_SCREEN_SIZE;
4622            }
4623            final int oldLayout = oldTaskOverride.screenLayout;
4624            final int newLayout = taskConfig.screenLayout;
4625            if ((oldLayout == SCREENLAYOUT_UNDEFINED && newLayout != SCREENLAYOUT_UNDEFINED)
4626                || (oldLayout != SCREENLAYOUT_UNDEFINED && newLayout == SCREENLAYOUT_UNDEFINED)) {
4627                taskChanges |= CONFIG_SCREEN_LAYOUT;
4628            }
4629        }
4630        return taskChanges;
4631    }
4632
4633    private static boolean isResizeOnlyChange(int change) {
4634        return (change & ~(CONFIG_SCREEN_SIZE | CONFIG_SMALLEST_SCREEN_SIZE | CONFIG_ORIENTATION
4635                | CONFIG_SCREEN_LAYOUT)) == 0;
4636    }
4637
4638    private void relaunchActivityLocked(
4639            ActivityRecord r, int changes, boolean andResume, boolean preserveWindow) {
4640        if (mService.mSuppressResizeConfigChanges && preserveWindow) {
4641            r.configChangeFlags = 0;
4642            return;
4643        }
4644
4645        List<ResultInfo> results = null;
4646        List<ReferrerIntent> newIntents = null;
4647        if (andResume) {
4648            results = r.results;
4649            newIntents = r.newIntents;
4650        }
4651        if (DEBUG_SWITCH) Slog.v(TAG_SWITCH,
4652                "Relaunching: " + r + " with results=" + results + " newIntents=" + newIntents
4653                + " andResume=" + andResume + " preserveWindow=" + preserveWindow);
4654        EventLog.writeEvent(andResume ? EventLogTags.AM_RELAUNCH_RESUME_ACTIVITY
4655                : EventLogTags.AM_RELAUNCH_ACTIVITY, r.userId, System.identityHashCode(r),
4656                r.task.taskId, r.shortComponentName);
4657
4658        r.startFreezingScreenLocked(r.app, 0);
4659
4660        mStackSupervisor.removeChildActivityContainers(r);
4661
4662        try {
4663            if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH,
4664                    "Moving to " + (andResume ? "RESUMED" : "PAUSED") + " Relaunching " + r
4665                    + " callers=" + Debug.getCallers(6));
4666            r.forceNewConfig = false;
4667            mStackSupervisor.activityRelaunchingLocked(r);
4668            r.app.thread.scheduleRelaunchActivity(r.appToken, results, newIntents, changes,
4669                    !andResume, new Configuration(mService.mConfiguration),
4670                    new Configuration(r.task.mOverrideConfig), preserveWindow);
4671            // Note: don't need to call pauseIfSleepingLocked() here, because
4672            // the caller will only pass in 'andResume' if this activity is
4673            // currently resumed, which implies we aren't sleeping.
4674        } catch (RemoteException e) {
4675            if (DEBUG_SWITCH || DEBUG_STATES) Slog.i(TAG_SWITCH, "Relaunch failed", e);
4676        }
4677
4678        if (andResume) {
4679            if (DEBUG_STATES) {
4680                Slog.d(TAG_STATES, "Resumed after relaunch " + r);
4681            }
4682            r.state = ActivityState.RESUMED;
4683            // Relaunch-resume could happen either when the app is already in the front,
4684            // or while it's being brought to front. In the latter case, it's marked RESUMED
4685            // but not yet visible (or stopped). We need to complete the resume here as the
4686            // code in resumeTopActivityInnerLocked to complete the resume might be skipped.
4687            if (!r.visible || r.stopped) {
4688                mWindowManager.setAppVisibility(r.appToken, true);
4689                completeResumeLocked(r);
4690            } else {
4691                r.results = null;
4692                r.newIntents = null;
4693            }
4694        } else {
4695            mHandler.removeMessages(PAUSE_TIMEOUT_MSG, r);
4696            r.state = ActivityState.PAUSED;
4697        }
4698
4699        r.configChangeFlags = 0;
4700        r.deferRelaunchUntilPaused = false;
4701        r.preserveWindowOnDeferredRelaunch = false;
4702    }
4703
4704    boolean willActivityBeVisibleLocked(IBinder token) {
4705        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4706            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4707            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4708                final ActivityRecord r = activities.get(activityNdx);
4709                if (r.appToken == token) {
4710                    return true;
4711                }
4712                if (r.fullscreen && !r.finishing) {
4713                    return false;
4714                }
4715            }
4716        }
4717        final ActivityRecord r = ActivityRecord.forTokenLocked(token);
4718        if (r == null) {
4719            return false;
4720        }
4721        if (r.finishing) Slog.e(TAG, "willActivityBeVisibleLocked: Returning false,"
4722                + " would have returned true for r=" + r);
4723        return !r.finishing;
4724    }
4725
4726    void closeSystemDialogsLocked() {
4727        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4728            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4729            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4730                final ActivityRecord r = activities.get(activityNdx);
4731                if ((r.info.flags&ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS) != 0) {
4732                    finishActivityLocked(r, Activity.RESULT_CANCELED, null, "close-sys", true);
4733                }
4734            }
4735        }
4736    }
4737
4738    boolean finishDisabledPackageActivitiesLocked(String packageName, Set<String> filterByClasses,
4739            boolean doit, boolean evenPersistent, int userId) {
4740        boolean didSomething = false;
4741        TaskRecord lastTask = null;
4742        ComponentName homeActivity = null;
4743        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4744            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4745            int numActivities = activities.size();
4746            for (int activityNdx = 0; activityNdx < numActivities; ++activityNdx) {
4747                ActivityRecord r = activities.get(activityNdx);
4748                final boolean sameComponent =
4749                        (r.packageName.equals(packageName) && (filterByClasses == null
4750                                || filterByClasses.contains(r.realActivity.getClassName())))
4751                        || (packageName == null && r.userId == userId);
4752                if ((userId == UserHandle.USER_ALL || r.userId == userId)
4753                        && (sameComponent || r.task == lastTask)
4754                        && (r.app == null || evenPersistent || !r.app.persistent)) {
4755                    if (!doit) {
4756                        if (r.finishing) {
4757                            // If this activity is just finishing, then it is not
4758                            // interesting as far as something to stop.
4759                            continue;
4760                        }
4761                        return true;
4762                    }
4763                    if (r.isHomeActivity()) {
4764                        if (homeActivity != null && homeActivity.equals(r.realActivity)) {
4765                            Slog.i(TAG, "Skip force-stop again " + r);
4766                            continue;
4767                        } else {
4768                            homeActivity = r.realActivity;
4769                        }
4770                    }
4771                    didSomething = true;
4772                    Slog.i(TAG, "  Force finishing activity " + r);
4773                    if (sameComponent) {
4774                        if (r.app != null) {
4775                            r.app.removed = true;
4776                        }
4777                        r.app = null;
4778                    }
4779                    lastTask = r.task;
4780                    if (finishActivityLocked(r, Activity.RESULT_CANCELED, null, "force-stop",
4781                            true)) {
4782                        // r has been deleted from mActivities, accommodate.
4783                        --numActivities;
4784                        --activityNdx;
4785                    }
4786                }
4787            }
4788        }
4789        return didSomething;
4790    }
4791
4792    void getTasksLocked(List<RunningTaskInfo> list, int callingUid, boolean allowed) {
4793        boolean focusedStack = mStackSupervisor.getFocusedStack() == this;
4794        boolean topTask = true;
4795        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4796            final TaskRecord task = mTaskHistory.get(taskNdx);
4797            if (task.getTopActivity() == null) {
4798                continue;
4799            }
4800            ActivityRecord r = null;
4801            ActivityRecord top = null;
4802            ActivityRecord tmp;
4803            int numActivities = 0;
4804            int numRunning = 0;
4805            final ArrayList<ActivityRecord> activities = task.mActivities;
4806            if (!allowed && !task.isHomeTask() && task.effectiveUid != callingUid) {
4807                continue;
4808            }
4809            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4810                tmp = activities.get(activityNdx);
4811                if (tmp.finishing) {
4812                    continue;
4813                }
4814                r = tmp;
4815
4816                // Initialize state for next task if needed.
4817                if (top == null || (top.state == ActivityState.INITIALIZING)) {
4818                    top = r;
4819                    numActivities = numRunning = 0;
4820                }
4821
4822                // Add 'r' into the current task.
4823                numActivities++;
4824                if (r.app != null && r.app.thread != null) {
4825                    numRunning++;
4826                }
4827
4828                if (DEBUG_ALL) Slog.v(
4829                    TAG, r.intent.getComponent().flattenToShortString()
4830                    + ": task=" + r.task);
4831            }
4832
4833            RunningTaskInfo ci = new RunningTaskInfo();
4834            ci.id = task.taskId;
4835            ci.stackId = mStackId;
4836            ci.baseActivity = r.intent.getComponent();
4837            ci.topActivity = top.intent.getComponent();
4838            ci.lastActiveTime = task.lastActiveTime;
4839            if (focusedStack && topTask) {
4840                // Give the latest time to ensure foreground task can be sorted
4841                // at the first, because lastActiveTime of creating task is 0.
4842                ci.lastActiveTime = System.currentTimeMillis();
4843                topTask = false;
4844            }
4845
4846            if (top.task != null) {
4847                ci.description = top.task.lastDescription;
4848            }
4849            ci.numActivities = numActivities;
4850            ci.numRunning = numRunning;
4851            ci.isDockable = task.canGoInDockedStack();
4852            ci.resizeMode = task.mResizeMode;
4853            list.add(ci);
4854        }
4855    }
4856
4857    public void unhandledBackLocked() {
4858        final int top = mTaskHistory.size() - 1;
4859        if (DEBUG_SWITCH) Slog.d(TAG_SWITCH, "Performing unhandledBack(): top activity at " + top);
4860        if (top >= 0) {
4861            final ArrayList<ActivityRecord> activities = mTaskHistory.get(top).mActivities;
4862            int activityTop = activities.size() - 1;
4863            if (activityTop > 0) {
4864                finishActivityLocked(activities.get(activityTop), Activity.RESULT_CANCELED, null,
4865                        "unhandled-back", true);
4866            }
4867        }
4868    }
4869
4870    /**
4871     * Reset local parameters because an app's activity died.
4872     * @param app The app of the activity that died.
4873     * @return result from removeHistoryRecordsForAppLocked.
4874     */
4875    boolean handleAppDiedLocked(ProcessRecord app) {
4876        if (mPausingActivity != null && mPausingActivity.app == app) {
4877            if (DEBUG_PAUSE || DEBUG_CLEANUP) Slog.v(TAG_PAUSE,
4878                    "App died while pausing: " + mPausingActivity);
4879            mPausingActivity = null;
4880        }
4881        if (mLastPausedActivity != null && mLastPausedActivity.app == app) {
4882            mLastPausedActivity = null;
4883            mLastNoHistoryActivity = null;
4884        }
4885
4886        return removeHistoryRecordsForAppLocked(app);
4887    }
4888
4889    void handleAppCrashLocked(ProcessRecord app) {
4890        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4891            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4892            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4893                final ActivityRecord r = activities.get(activityNdx);
4894                if (r.app == app) {
4895                    Slog.w(TAG, "  Force finishing activity "
4896                            + r.intent.getComponent().flattenToShortString());
4897                    // Force the destroy to skip right to removal.
4898                    r.app = null;
4899                    finishCurrentActivityLocked(r, FINISH_IMMEDIATELY, false);
4900                }
4901            }
4902        }
4903    }
4904
4905    boolean dumpActivitiesLocked(FileDescriptor fd, PrintWriter pw, boolean dumpAll,
4906            boolean dumpClient, String dumpPackage, boolean needSep, String header) {
4907        boolean printed = false;
4908        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4909            final TaskRecord task = mTaskHistory.get(taskNdx);
4910            printed |= ActivityStackSupervisor.dumpHistoryList(fd, pw,
4911                    mTaskHistory.get(taskNdx).mActivities, "    ", "Hist", true, !dumpAll,
4912                    dumpClient, dumpPackage, needSep, header,
4913                    "    Task id #" + task.taskId + "\n" +
4914                    "    mFullscreen=" + task.mFullscreen + "\n" +
4915                    "    mBounds=" + task.mBounds + "\n" +
4916                    "    mMinimalWidth=" + task.mMinimalWidth + "\n" +
4917                    "    mMinimalHeight=" + task.mMinimalHeight + "\n" +
4918                    "    mLastNonFullscreenBounds=" + task.mLastNonFullscreenBounds);
4919            if (printed) {
4920                header = null;
4921            }
4922        }
4923        return printed;
4924    }
4925
4926    ArrayList<ActivityRecord> getDumpActivitiesLocked(String name) {
4927        ArrayList<ActivityRecord> activities = new ArrayList<ActivityRecord>();
4928
4929        if ("all".equals(name)) {
4930            for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4931                activities.addAll(mTaskHistory.get(taskNdx).mActivities);
4932            }
4933        } else if ("top".equals(name)) {
4934            final int top = mTaskHistory.size() - 1;
4935            if (top >= 0) {
4936                final ArrayList<ActivityRecord> list = mTaskHistory.get(top).mActivities;
4937                int listTop = list.size() - 1;
4938                if (listTop >= 0) {
4939                    activities.add(list.get(listTop));
4940                }
4941            }
4942        } else {
4943            ItemMatcher matcher = new ItemMatcher();
4944            matcher.build(name);
4945
4946            for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4947                for (ActivityRecord r1 : mTaskHistory.get(taskNdx).mActivities) {
4948                    if (matcher.match(r1, r1.intent.getComponent())) {
4949                        activities.add(r1);
4950                    }
4951                }
4952            }
4953        }
4954
4955        return activities;
4956    }
4957
4958    ActivityRecord restartPackage(String packageName) {
4959        ActivityRecord starting = topRunningActivityLocked();
4960
4961        // All activities that came from the package must be
4962        // restarted as if there was a config change.
4963        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
4964            final ArrayList<ActivityRecord> activities = mTaskHistory.get(taskNdx).mActivities;
4965            for (int activityNdx = activities.size() - 1; activityNdx >= 0; --activityNdx) {
4966                final ActivityRecord a = activities.get(activityNdx);
4967                if (a.info.packageName.equals(packageName)) {
4968                    a.forceNewConfig = true;
4969                    if (starting != null && a == starting && a.visible) {
4970                        a.startFreezingScreenLocked(starting.app,
4971                                CONFIG_SCREEN_LAYOUT);
4972                    }
4973                }
4974            }
4975        }
4976
4977        return starting;
4978    }
4979
4980    void removeTask(TaskRecord task, String reason) {
4981        removeTask(task, reason, REMOVE_TASK_MODE_DESTROYING);
4982    }
4983
4984    /**
4985     * Removes the input task from this stack.
4986     * @param task to remove.
4987     * @param reason for removal.
4988     * @param mode task removal mode. Either {@link #REMOVE_TASK_MODE_DESTROYING},
4989     *             {@link #REMOVE_TASK_MODE_MOVING}, {@link #REMOVE_TASK_MODE_MOVING_TO_TOP}.
4990     */
4991    void removeTask(TaskRecord task, String reason, int mode) {
4992        if (mode == REMOVE_TASK_MODE_DESTROYING) {
4993            mStackSupervisor.removeLockedTaskLocked(task);
4994            mWindowManager.removeTask(task.taskId);
4995            if (!StackId.persistTaskBounds(mStackId)) {
4996                // Reset current bounds for task whose bounds shouldn't be persisted so it uses
4997                // default configuration the next time it launches.
4998                task.updateOverrideConfiguration(null);
4999            }
5000        }
5001
5002        final ActivityRecord r = mResumedActivity;
5003        if (r != null && r.task == task) {
5004            mResumedActivity = null;
5005        }
5006
5007        final int taskNdx = mTaskHistory.indexOf(task);
5008        final int topTaskNdx = mTaskHistory.size() - 1;
5009        if (task.isOverHomeStack() && taskNdx < topTaskNdx) {
5010            final TaskRecord nextTask = mTaskHistory.get(taskNdx + 1);
5011            if (!nextTask.isOverHomeStack()) {
5012                nextTask.setTaskToReturnTo(HOME_ACTIVITY_TYPE);
5013            }
5014        }
5015        mTaskHistory.remove(task);
5016        updateTaskMovement(task, true);
5017
5018        if (mode == REMOVE_TASK_MODE_DESTROYING && task.mActivities.isEmpty()) {
5019            // TODO: VI what about activity?
5020            final boolean isVoiceSession = task.voiceSession != null;
5021            if (isVoiceSession) {
5022                try {
5023                    task.voiceSession.taskFinished(task.intent, task.taskId);
5024                } catch (RemoteException e) {
5025                }
5026            }
5027            if (task.autoRemoveFromRecents() || isVoiceSession) {
5028                // Task creator asked to remove this when done, or this task was a voice
5029                // interaction, so it should not remain on the recent tasks list.
5030                mRecentTasks.remove(task);
5031                task.removedFromRecents();
5032            }
5033        }
5034
5035        if (mTaskHistory.isEmpty()) {
5036            if (DEBUG_STACK) Slog.i(TAG_STACK, "removeTask: removing stack=" + this);
5037            // We only need to adjust focused stack if this stack is in focus and we are not in the
5038            // process of moving the task to the top of the stack that will be focused.
5039            if (isOnHomeDisplay() && mode != REMOVE_TASK_MODE_MOVING_TO_TOP
5040                    && mStackSupervisor.isFocusedStack(this)) {
5041                String myReason = reason + " leftTaskHistoryEmpty";
5042                if (mFullscreen
5043                        || !adjustFocusToNextFocusableStackLocked(
5044                        task.getTaskToReturnTo(), myReason)) {
5045                    mStackSupervisor.moveHomeStackToFront(myReason);
5046                }
5047            }
5048            if (mStacks != null) {
5049                mStacks.remove(this);
5050                mStacks.add(0, this);
5051            }
5052            if (!isHomeStack()) {
5053                mActivityContainer.onTaskListEmptyLocked();
5054            }
5055        }
5056
5057        task.stack = null;
5058    }
5059
5060    TaskRecord createTaskRecord(int taskId, ActivityInfo info, Intent intent,
5061            IVoiceInteractionSession voiceSession, IVoiceInteractor voiceInteractor,
5062            boolean toTop) {
5063        TaskRecord task = new TaskRecord(mService, taskId, info, intent, voiceSession,
5064                voiceInteractor);
5065        // add the task to stack first, mTaskPositioner might need the stack association
5066        addTask(task, toTop, "createTaskRecord");
5067        final boolean isLockscreenShown = mService.mLockScreenShown == LOCK_SCREEN_SHOWN;
5068        if (!layoutTaskInStack(task, info.windowLayout) && mBounds != null && task.isResizeable()
5069                && !isLockscreenShown) {
5070            task.updateOverrideConfiguration(mBounds);
5071        }
5072        return task;
5073    }
5074
5075    boolean layoutTaskInStack(TaskRecord task, ActivityInfo.WindowLayout windowLayout) {
5076        if (mTaskPositioner == null) {
5077            return false;
5078        }
5079        mTaskPositioner.updateDefaultBounds(task, mTaskHistory, windowLayout);
5080        return true;
5081    }
5082
5083    ArrayList<TaskRecord> getAllTasks() {
5084        return new ArrayList<>(mTaskHistory);
5085    }
5086
5087    void addTask(final TaskRecord task, final boolean toTop, String reason) {
5088        final ActivityStack prevStack = preAddTask(task, reason, toTop);
5089
5090        task.stack = this;
5091        if (toTop) {
5092            insertTaskAtTop(task, null);
5093        } else {
5094            mTaskHistory.add(0, task);
5095            updateTaskMovement(task, false);
5096        }
5097        postAddTask(task, prevStack);
5098    }
5099
5100    void positionTask(final TaskRecord task, int position) {
5101        final ActivityRecord topRunningActivity = task.topRunningActivityLocked();
5102        final boolean wasResumed = topRunningActivity == task.stack.mResumedActivity;
5103        final ActivityStack prevStack = preAddTask(task, "positionTask", !ON_TOP);
5104        task.stack = this;
5105        insertTaskAtPosition(task, position);
5106        postAddTask(task, prevStack);
5107        if (wasResumed) {
5108            if (mResumedActivity != null) {
5109                Log.wtf(TAG, "mResumedActivity was already set when moving mResumedActivity from"
5110                        + " other stack to this stack mResumedActivity=" + mResumedActivity
5111                        + " other mResumedActivity=" + topRunningActivity);
5112            }
5113            mResumedActivity = topRunningActivity;
5114        }
5115    }
5116
5117    private ActivityStack preAddTask(TaskRecord task, String reason, boolean toTop) {
5118        final ActivityStack prevStack = task.stack;
5119        if (prevStack != null && prevStack != this) {
5120            prevStack.removeTask(task, reason,
5121                    toTop ? REMOVE_TASK_MODE_MOVING_TO_TOP : REMOVE_TASK_MODE_MOVING);
5122        }
5123        return prevStack;
5124    }
5125
5126    private void postAddTask(TaskRecord task, ActivityStack prevStack) {
5127        if (prevStack != null) {
5128            mStackSupervisor.scheduleReportPictureInPictureModeChangedIfNeeded(task, prevStack);
5129        } else if (task.voiceSession != null) {
5130            try {
5131                task.voiceSession.taskStarted(task.intent, task.taskId);
5132            } catch (RemoteException e) {
5133            }
5134        }
5135    }
5136
5137    void addConfigOverride(ActivityRecord r, TaskRecord task) {
5138        final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
5139        // TODO: VI deal with activity
5140        mWindowManager.addAppToken(task.mActivities.indexOf(r), r.appToken,
5141                r.task.taskId, mStackId, r.info.screenOrientation, r.fullscreen,
5142                (r.info.flags & FLAG_SHOW_FOR_ALL_USERS) != 0, r.userId, r.info.configChanges,
5143                task.voiceSession != null, r.mLaunchTaskBehind, bounds, task.mOverrideConfig,
5144                task.mResizeMode, r.isAlwaysFocusable(), task.isHomeTask());
5145        r.taskConfigOverride = task.mOverrideConfig;
5146    }
5147
5148    void moveToFrontAndResumeStateIfNeeded(
5149            ActivityRecord r, boolean moveToFront, boolean setResume, String reason) {
5150        if (!moveToFront) {
5151            return;
5152        }
5153
5154        // If the activity owns the last resumed activity, transfer that together,
5155        // so that we don't resume the same activity again in the new stack.
5156        // Apps may depend on onResume()/onPause() being called in pairs.
5157        if (setResume) {
5158            mResumedActivity = r;
5159        }
5160        // Move the stack in which we are placing the activity to the front. The call will also
5161        // make sure the activity focus is set.
5162        moveToFront(reason);
5163    }
5164
5165    /**
5166     * Moves the input activity from its current stack to this one.
5167     * NOTE: The current task of the activity isn't moved to this stack. Instead a new task is
5168     * created on this stack which the activity is added to.
5169     * */
5170    void moveActivityToStack(ActivityRecord r) {
5171        final ActivityStack prevStack = r.task.stack;
5172        if (prevStack.mStackId == mStackId) {
5173            // You are already in the right stack silly...
5174            return;
5175        }
5176
5177        final boolean wasFocused = mStackSupervisor.isFocusedStack(prevStack)
5178                && (mStackSupervisor.topRunningActivityLocked() == r);
5179        final boolean wasResumed = wasFocused && (prevStack.mResumedActivity == r);
5180
5181        final TaskRecord task = createTaskRecord(
5182                mStackSupervisor.getNextTaskIdForUserLocked(r.userId),
5183                r.info, r.intent, null, null, true);
5184        r.setTask(task, null);
5185        task.addActivityToTop(r);
5186        setAppTask(r, task);
5187        mStackSupervisor.scheduleReportPictureInPictureModeChangedIfNeeded(task, prevStack);
5188        moveToFrontAndResumeStateIfNeeded(r, wasFocused, wasResumed, "moveActivityToStack");
5189        if (wasResumed) {
5190            prevStack.mResumedActivity = null;
5191        }
5192    }
5193
5194    private void setAppTask(ActivityRecord r, TaskRecord task) {
5195        final Rect bounds = task.updateOverrideConfigurationFromLaunchBounds();
5196        mWindowManager.setAppTask(r.appToken, task.taskId, mStackId, bounds, task.mOverrideConfig,
5197                task.mResizeMode, task.isHomeTask());
5198        r.taskConfigOverride = task.mOverrideConfig;
5199    }
5200
5201    public int getStackId() {
5202        return mStackId;
5203    }
5204
5205    @Override
5206    public String toString() {
5207        return "ActivityStack{" + Integer.toHexString(System.identityHashCode(this))
5208                + " stackId=" + mStackId + ", " + mTaskHistory.size() + " tasks}";
5209    }
5210
5211    void onLockTaskPackagesUpdatedLocked() {
5212        for (int taskNdx = mTaskHistory.size() - 1; taskNdx >= 0; --taskNdx) {
5213            mTaskHistory.get(taskNdx).setLockTaskAuth();
5214        }
5215    }
5216}
5217