ActivityManager.java revision 744e6f1738336bed5ef1ff8cbd4139b4113b4c0f
1/*
2 * Copyright (C) 2007 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 android.app;
18
19import android.Manifest;
20import android.annotation.DrawableRes;
21import android.annotation.IntDef;
22import android.annotation.NonNull;
23import android.annotation.Nullable;
24import android.annotation.RequiresPermission;
25import android.annotation.SystemApi;
26import android.annotation.SystemService;
27import android.annotation.TestApi;
28import android.content.ComponentName;
29import android.content.Context;
30import android.content.Intent;
31import android.content.pm.ActivityInfo;
32import android.content.pm.ApplicationInfo;
33import android.content.pm.ConfigurationInfo;
34import android.content.pm.IPackageDataObserver;
35import android.content.pm.PackageManager;
36import android.content.pm.ParceledListSlice;
37import android.content.pm.UserInfo;
38import android.content.res.Configuration;
39import android.content.res.Resources;
40import android.graphics.Bitmap;
41import android.graphics.Canvas;
42import android.graphics.Color;
43import android.graphics.GraphicBuffer;
44import android.graphics.Matrix;
45import android.graphics.Point;
46import android.graphics.Rect;
47import android.os.BatteryStats;
48import android.os.Binder;
49import android.os.Build;
50import android.os.Build.VERSION_CODES;
51import android.os.Bundle;
52import android.os.Debug;
53import android.os.Handler;
54import android.os.IBinder;
55import android.os.Parcel;
56import android.os.Parcelable;
57import android.os.Process;
58import android.os.RemoteException;
59import android.os.ServiceManager;
60import android.os.SystemProperties;
61import android.os.UserHandle;
62import android.os.WorkSource;
63import android.text.TextUtils;
64import android.util.ArrayMap;
65import android.util.DisplayMetrics;
66import android.util.Singleton;
67import android.util.Size;
68
69import com.android.internal.app.procstats.ProcessStats;
70import com.android.internal.os.RoSystemProperties;
71import com.android.internal.os.TransferPipe;
72import com.android.internal.util.FastPrintWriter;
73import com.android.internal.util.MemInfoReader;
74import com.android.server.LocalServices;
75
76import org.xmlpull.v1.XmlSerializer;
77
78import java.io.FileDescriptor;
79import java.io.FileOutputStream;
80import java.io.IOException;
81import java.io.PrintWriter;
82import java.lang.annotation.Retention;
83import java.lang.annotation.RetentionPolicy;
84import java.util.ArrayList;
85import java.util.List;
86
87/**
88 * <p>
89 * This class gives information about, and interacts
90 * with, activities, services, and the containing
91 * process.
92 * </p>
93 *
94 * <p>
95 * A number of the methods in this class are for
96 * debugging or informational purposes and they should
97 * not be used to affect any runtime behavior of
98 * your app. These methods are called out as such in
99 * the method level documentation.
100 * </p>
101 *
102 *<p>
103 * Most application developers should not have the need to
104 * use this class, most of whose methods are for specialized
105 * use cases. However, a few methods are more broadly applicable.
106 * For instance, {@link android.app.ActivityManager#isLowRamDevice() isLowRamDevice()}
107 * enables your app to detect whether it is running on a low-memory device,
108 * and behave accordingly.
109 * {@link android.app.ActivityManager#clearApplicationUserData() clearApplicationUserData()}
110 * is for apps with reset-data functionality.
111 * </p>
112 *
113 * <p>
114 * In some special use cases, where an app interacts with
115 * its Task stack, the app may use the
116 * {@link android.app.ActivityManager.AppTask} and
117 * {@link android.app.ActivityManager.RecentTaskInfo} inner
118 * classes. However, in general, the methods in this class should
119 * be used for testing and debugging purposes only.
120 * </p>
121 */
122@SystemService(Context.ACTIVITY_SERVICE)
123public class ActivityManager {
124    private static String TAG = "ActivityManager";
125
126    private static int gMaxRecentTasks = -1;
127
128    private final Context mContext;
129
130    private static volatile boolean sSystemReady = false;
131
132
133    private static final int FIRST_START_FATAL_ERROR_CODE = -100;
134    private static final int LAST_START_FATAL_ERROR_CODE = -1;
135    private static final int FIRST_START_SUCCESS_CODE = 0;
136    private static final int LAST_START_SUCCESS_CODE = 99;
137    private static final int FIRST_START_NON_FATAL_ERROR_CODE = 100;
138    private static final int LAST_START_NON_FATAL_ERROR_CODE = 199;
139
140    static final class UidObserver extends IUidObserver.Stub {
141        final OnUidImportanceListener mListener;
142        final Context mContext;
143
144        UidObserver(OnUidImportanceListener listener, Context clientContext) {
145            mListener = listener;
146            mContext = clientContext;
147        }
148
149        @Override
150        public void onUidStateChanged(int uid, int procState, long procStateSeq) {
151            mListener.onUidImportance(uid, RunningAppProcessInfo.procStateToImportanceForClient(
152                    procState, mContext));
153        }
154
155        @Override
156        public void onUidGone(int uid, boolean disabled) {
157            mListener.onUidImportance(uid, RunningAppProcessInfo.IMPORTANCE_GONE);
158        }
159
160        @Override
161        public void onUidActive(int uid) {
162        }
163
164        @Override
165        public void onUidIdle(int uid, boolean disabled) {
166        }
167
168        @Override public void onUidCachedChanged(int uid, boolean cached) {
169        }
170    }
171
172    final ArrayMap<OnUidImportanceListener, UidObserver> mImportanceListeners = new ArrayMap<>();
173
174    /**
175     * Defines acceptable types of bugreports.
176     * @hide
177     */
178    @Retention(RetentionPolicy.SOURCE)
179    @IntDef(prefix = { "BUGREPORT_OPTION_" }, value = {
180            BUGREPORT_OPTION_FULL,
181            BUGREPORT_OPTION_INTERACTIVE,
182            BUGREPORT_OPTION_REMOTE,
183            BUGREPORT_OPTION_WEAR,
184            BUGREPORT_OPTION_TELEPHONY,
185            BUGREPORT_OPTION_WIFI
186    })
187    public @interface BugreportMode {}
188    /**
189     * Takes a bugreport without user interference (and hence causing less
190     * interference to the system), but includes all sections.
191     * @hide
192     */
193    public static final int BUGREPORT_OPTION_FULL = 0;
194    /**
195     * Allows user to monitor progress and enter additional data; might not include all
196     * sections.
197     * @hide
198     */
199    public static final int BUGREPORT_OPTION_INTERACTIVE = 1;
200    /**
201     * Takes a bugreport requested remotely by administrator of the Device Owner app,
202     * not the device's user.
203     * @hide
204     */
205    public static final int BUGREPORT_OPTION_REMOTE = 2;
206    /**
207     * Takes a bugreport on a wearable device.
208     * @hide
209     */
210    public static final int BUGREPORT_OPTION_WEAR = 3;
211
212    /**
213     * Takes a lightweight version of bugreport that only includes a few, urgent sections
214     * used to report telephony bugs.
215     * @hide
216     */
217    public static final int BUGREPORT_OPTION_TELEPHONY = 4;
218
219    /**
220     * Takes a lightweight bugreport that only includes a few sections related to Wifi.
221     * @hide
222     */
223    public static final int BUGREPORT_OPTION_WIFI = 5;
224
225    /**
226     * <a href="{@docRoot}guide/topics/manifest/meta-data-element.html">{@code
227     * <meta-data>}</a> name for a 'home' Activity that declares a package that is to be
228     * uninstalled in lieu of the declaring one.  The package named here must be
229     * signed with the same certificate as the one declaring the {@code <meta-data>}.
230     */
231    public static final String META_HOME_ALTERNATE = "android.app.home.alternate";
232
233    // NOTE: Before adding a new start result, please reference the defined ranges to ensure the
234    // result is properly categorized.
235
236    /**
237     * Result for IActivityManager.startVoiceActivity: active session is currently hidden.
238     * @hide
239     */
240    public static final int START_VOICE_HIDDEN_SESSION = FIRST_START_FATAL_ERROR_CODE;
241
242    /**
243     * Result for IActivityManager.startVoiceActivity: active session does not match
244     * the requesting token.
245     * @hide
246     */
247    public static final int START_VOICE_NOT_ACTIVE_SESSION = FIRST_START_FATAL_ERROR_CODE + 1;
248
249    /**
250     * Result for IActivityManager.startActivity: trying to start a background user
251     * activity that shouldn't be displayed for all users.
252     * @hide
253     */
254    public static final int START_NOT_CURRENT_USER_ACTIVITY = FIRST_START_FATAL_ERROR_CODE + 2;
255
256    /**
257     * Result for IActivityManager.startActivity: trying to start an activity under voice
258     * control when that activity does not support the VOICE category.
259     * @hide
260     */
261    public static final int START_NOT_VOICE_COMPATIBLE = FIRST_START_FATAL_ERROR_CODE + 3;
262
263    /**
264     * Result for IActivityManager.startActivity: an error where the
265     * start had to be canceled.
266     * @hide
267     */
268    public static final int START_CANCELED = FIRST_START_FATAL_ERROR_CODE + 4;
269
270    /**
271     * Result for IActivityManager.startActivity: an error where the
272     * thing being started is not an activity.
273     * @hide
274     */
275    public static final int START_NOT_ACTIVITY = FIRST_START_FATAL_ERROR_CODE + 5;
276
277    /**
278     * Result for IActivityManager.startActivity: an error where the
279     * caller does not have permission to start the activity.
280     * @hide
281     */
282    public static final int START_PERMISSION_DENIED = FIRST_START_FATAL_ERROR_CODE + 6;
283
284    /**
285     * Result for IActivityManager.startActivity: an error where the
286     * caller has requested both to forward a result and to receive
287     * a result.
288     * @hide
289     */
290    public static final int START_FORWARD_AND_REQUEST_CONFLICT = FIRST_START_FATAL_ERROR_CODE + 7;
291
292    /**
293     * Result for IActivityManager.startActivity: an error where the
294     * requested class is not found.
295     * @hide
296     */
297    public static final int START_CLASS_NOT_FOUND = FIRST_START_FATAL_ERROR_CODE + 8;
298
299    /**
300     * Result for IActivityManager.startActivity: an error where the
301     * given Intent could not be resolved to an activity.
302     * @hide
303     */
304    public static final int START_INTENT_NOT_RESOLVED = FIRST_START_FATAL_ERROR_CODE + 9;
305
306    /**
307     * Result for IActivityManager.startAssistantActivity: active session is currently hidden.
308     * @hide
309     */
310    public static final int START_ASSISTANT_HIDDEN_SESSION = FIRST_START_FATAL_ERROR_CODE + 10;
311
312    /**
313     * Result for IActivityManager.startAssistantActivity: active session does not match
314     * the requesting token.
315     * @hide
316     */
317    public static final int START_ASSISTANT_NOT_ACTIVE_SESSION = FIRST_START_FATAL_ERROR_CODE + 11;
318
319    /**
320     * Result for IActivityManaqer.startActivity: the activity was started
321     * successfully as normal.
322     * @hide
323     */
324    public static final int START_SUCCESS = FIRST_START_SUCCESS_CODE;
325
326    /**
327     * Result for IActivityManaqer.startActivity: the caller asked that the Intent not
328     * be executed if it is the recipient, and that is indeed the case.
329     * @hide
330     */
331    public static final int START_RETURN_INTENT_TO_CALLER = FIRST_START_SUCCESS_CODE + 1;
332
333    /**
334     * Result for IActivityManaqer.startActivity: activity wasn't really started, but
335     * a task was simply brought to the foreground.
336     * @hide
337     */
338    public static final int START_TASK_TO_FRONT = FIRST_START_SUCCESS_CODE + 2;
339
340    /**
341     * Result for IActivityManaqer.startActivity: activity wasn't really started, but
342     * the given Intent was given to the existing top activity.
343     * @hide
344     */
345    public static final int START_DELIVERED_TO_TOP = FIRST_START_SUCCESS_CODE + 3;
346
347    /**
348     * Result for IActivityManaqer.startActivity: request was canceled because
349     * app switches are temporarily canceled to ensure the user's last request
350     * (such as pressing home) is performed.
351     * @hide
352     */
353    public static final int START_SWITCHES_CANCELED = FIRST_START_NON_FATAL_ERROR_CODE;
354
355    /**
356     * Result for IActivityManaqer.startActivity: a new activity was attempted to be started
357     * while in Lock Task Mode.
358     * @hide
359     */
360    public static final int START_RETURN_LOCK_TASK_MODE_VIOLATION =
361            FIRST_START_NON_FATAL_ERROR_CODE + 1;
362
363    /**
364     * Result for IActivityManaqer.startActivity: a new activity start was aborted. Never returned
365     * externally.
366     * @hide
367     */
368    public static final int START_ABORTED = FIRST_START_NON_FATAL_ERROR_CODE + 2;
369
370    /**
371     * Flag for IActivityManaqer.startActivity: do special start mode where
372     * a new activity is launched only if it is needed.
373     * @hide
374     */
375    public static final int START_FLAG_ONLY_IF_NEEDED = 1<<0;
376
377    /**
378     * Flag for IActivityManaqer.startActivity: launch the app for
379     * debugging.
380     * @hide
381     */
382    public static final int START_FLAG_DEBUG = 1<<1;
383
384    /**
385     * Flag for IActivityManaqer.startActivity: launch the app for
386     * allocation tracking.
387     * @hide
388     */
389    public static final int START_FLAG_TRACK_ALLOCATION = 1<<2;
390
391    /**
392     * Flag for IActivityManaqer.startActivity: launch the app with
393     * native debugging support.
394     * @hide
395     */
396    public static final int START_FLAG_NATIVE_DEBUGGING = 1<<3;
397
398    /**
399     * Result for IActivityManaqer.broadcastIntent: success!
400     * @hide
401     */
402    public static final int BROADCAST_SUCCESS = 0;
403
404    /**
405     * Result for IActivityManaqer.broadcastIntent: attempt to broadcast
406     * a sticky intent without appropriate permission.
407     * @hide
408     */
409    public static final int BROADCAST_STICKY_CANT_HAVE_PERMISSION = -1;
410
411    /**
412     * Result for IActivityManager.broadcastIntent: trying to send a broadcast
413     * to a stopped user. Fail.
414     * @hide
415     */
416    public static final int BROADCAST_FAILED_USER_STOPPED = -2;
417
418    /**
419     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
420     * for a sendBroadcast operation.
421     * @hide
422     */
423    public static final int INTENT_SENDER_BROADCAST = 1;
424
425    /**
426     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
427     * for a startActivity operation.
428     * @hide
429     */
430    public static final int INTENT_SENDER_ACTIVITY = 2;
431
432    /**
433     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
434     * for an activity result operation.
435     * @hide
436     */
437    public static final int INTENT_SENDER_ACTIVITY_RESULT = 3;
438
439    /**
440     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
441     * for a startService operation.
442     * @hide
443     */
444    public static final int INTENT_SENDER_SERVICE = 4;
445
446    /**
447     * Type for IActivityManaqer.getIntentSender: this PendingIntent is
448     * for a startForegroundService operation.
449     * @hide
450     */
451    public static final int INTENT_SENDER_FOREGROUND_SERVICE = 5;
452
453    /** @hide User operation call: success! */
454    public static final int USER_OP_SUCCESS = 0;
455
456    /** @hide User operation call: given user id is not known. */
457    public static final int USER_OP_UNKNOWN_USER = -1;
458
459    /** @hide User operation call: given user id is the current user, can't be stopped. */
460    public static final int USER_OP_IS_CURRENT = -2;
461
462    /** @hide User operation call: system user can't be stopped. */
463    public static final int USER_OP_ERROR_IS_SYSTEM = -3;
464
465    /** @hide User operation call: one of related users cannot be stopped. */
466    public static final int USER_OP_ERROR_RELATED_USERS_CANNOT_STOP = -4;
467
468    /**
469     * @hide
470     * Process states, describing the kind of state a particular process is in.
471     * When updating these, make sure to also check all related references to the
472     * constant in code, and update these arrays:
473     *
474     * @see com.android.internal.app.procstats.ProcessState#PROCESS_STATE_TO_STATE
475     * @see com.android.server.am.ProcessList#sProcStateToProcMem
476     * @see com.android.server.am.ProcessList#sFirstAwakePssTimes
477     * @see com.android.server.am.ProcessList#sSameAwakePssTimes
478     * @see com.android.server.am.ProcessList#sTestFirstPssTimes
479     * @see com.android.server.am.ProcessList#sTestSamePssTimes
480     */
481
482    /** @hide Not a real process state. */
483    public static final int PROCESS_STATE_UNKNOWN = -1;
484
485    /** @hide Process is a persistent system process. */
486    public static final int PROCESS_STATE_PERSISTENT = 0;
487
488    /** @hide Process is a persistent system process and is doing UI. */
489    public static final int PROCESS_STATE_PERSISTENT_UI = 1;
490
491    /** @hide Process is hosting the current top activities.  Note that this covers
492     * all activities that are visible to the user. */
493    public static final int PROCESS_STATE_TOP = 2;
494
495    /** @hide Process is hosting a foreground service. */
496    public static final int PROCESS_STATE_FOREGROUND_SERVICE = 3;
497
498    /** @hide Process is hosting a foreground service due to a system binding. */
499    public static final int PROCESS_STATE_BOUND_FOREGROUND_SERVICE = 4;
500
501    /** @hide Process is important to the user, and something they are aware of. */
502    public static final int PROCESS_STATE_IMPORTANT_FOREGROUND = 5;
503
504    /** @hide Process is important to the user, but not something they are aware of. */
505    public static final int PROCESS_STATE_IMPORTANT_BACKGROUND = 6;
506
507    /** @hide Process is in the background transient so we will try to keep running. */
508    public static final int PROCESS_STATE_TRANSIENT_BACKGROUND = 7;
509
510    /** @hide Process is in the background running a backup/restore operation. */
511    public static final int PROCESS_STATE_BACKUP = 8;
512
513    /** @hide Process is in the background running a service.  Unlike oom_adj, this level
514     * is used for both the normal running in background state and the executing
515     * operations state. */
516    public static final int PROCESS_STATE_SERVICE = 9;
517
518    /** @hide Process is in the background running a receiver.   Note that from the
519     * perspective of oom_adj, receivers run at a higher foreground level, but for our
520     * prioritization here that is not necessary and putting them below services means
521     * many fewer changes in some process states as they receive broadcasts. */
522    public static final int PROCESS_STATE_RECEIVER = 10;
523
524    /** @hide Same as {@link #PROCESS_STATE_TOP} but while device is sleeping. */
525    public static final int PROCESS_STATE_TOP_SLEEPING = 11;
526
527    /** @hide Process is in the background, but it can't restore its state so we want
528     * to try to avoid killing it. */
529    public static final int PROCESS_STATE_HEAVY_WEIGHT = 12;
530
531    /** @hide Process is in the background but hosts the home activity. */
532    public static final int PROCESS_STATE_HOME = 13;
533
534    /** @hide Process is in the background but hosts the last shown activity. */
535    public static final int PROCESS_STATE_LAST_ACTIVITY = 14;
536
537    /** @hide Process is being cached for later use and contains activities. */
538    public static final int PROCESS_STATE_CACHED_ACTIVITY = 15;
539
540    /** @hide Process is being cached for later use and is a client of another cached
541     * process that contains activities. */
542    public static final int PROCESS_STATE_CACHED_ACTIVITY_CLIENT = 16;
543
544    /** @hide Process is being cached for later use and has an activity that corresponds
545     * to an existing recent task. */
546    public static final int PROCESS_STATE_CACHED_RECENT = 17;
547
548    /** @hide Process is being cached for later use and is empty. */
549    public static final int PROCESS_STATE_CACHED_EMPTY = 18;
550
551    /** @hide Process does not exist. */
552    public static final int PROCESS_STATE_NONEXISTENT = 19;
553
554    // NOTE: If PROCESS_STATEs are added, then new fields must be added
555    // to frameworks/base/core/proto/android/app/enums.proto and the following method must
556    // be updated to correctly map between them.
557    // However, if the current ActivityManager values are merely modified, no update should be made
558    // to enums.proto, to which values can only be added but never modified. Note that the proto
559    // versions do NOT have the ordering restrictions of the ActivityManager process state.
560    /**
561     * Maps ActivityManager.PROCESS_STATE_ values to enums.proto ProcessStateEnum value.
562     *
563     * @param amInt a process state of the form ActivityManager.PROCESS_STATE_
564     * @return the value of the corresponding enums.proto ProcessStateEnum value.
565     * @hide
566     */
567    public static final int processStateAmToProto(int amInt) {
568        switch (amInt) {
569            case PROCESS_STATE_UNKNOWN:
570                return AppProtoEnums.PROCESS_STATE_UNKNOWN;
571            case PROCESS_STATE_PERSISTENT:
572                return AppProtoEnums.PROCESS_STATE_PERSISTENT;
573            case PROCESS_STATE_PERSISTENT_UI:
574                return AppProtoEnums.PROCESS_STATE_PERSISTENT_UI;
575            case PROCESS_STATE_TOP:
576                return AppProtoEnums.PROCESS_STATE_TOP;
577            case PROCESS_STATE_FOREGROUND_SERVICE:
578                return AppProtoEnums.PROCESS_STATE_FOREGROUND_SERVICE;
579            case PROCESS_STATE_BOUND_FOREGROUND_SERVICE:
580                return AppProtoEnums.PROCESS_STATE_BOUND_FOREGROUND_SERVICE;
581            case PROCESS_STATE_IMPORTANT_FOREGROUND:
582                return AppProtoEnums.PROCESS_STATE_IMPORTANT_FOREGROUND;
583            case PROCESS_STATE_IMPORTANT_BACKGROUND:
584                return AppProtoEnums.PROCESS_STATE_IMPORTANT_BACKGROUND;
585            case PROCESS_STATE_TRANSIENT_BACKGROUND:
586                return AppProtoEnums.PROCESS_STATE_TRANSIENT_BACKGROUND;
587            case PROCESS_STATE_BACKUP:
588                return AppProtoEnums.PROCESS_STATE_BACKUP;
589            case PROCESS_STATE_SERVICE:
590                return AppProtoEnums.PROCESS_STATE_SERVICE;
591            case PROCESS_STATE_RECEIVER:
592                return AppProtoEnums.PROCESS_STATE_RECEIVER;
593            case PROCESS_STATE_TOP_SLEEPING:
594                return AppProtoEnums.PROCESS_STATE_TOP_SLEEPING;
595            case PROCESS_STATE_HEAVY_WEIGHT:
596                return AppProtoEnums.PROCESS_STATE_HEAVY_WEIGHT;
597            case PROCESS_STATE_HOME:
598                return AppProtoEnums.PROCESS_STATE_HOME;
599            case PROCESS_STATE_LAST_ACTIVITY:
600                return AppProtoEnums.PROCESS_STATE_LAST_ACTIVITY;
601            case PROCESS_STATE_CACHED_ACTIVITY:
602                return AppProtoEnums.PROCESS_STATE_CACHED_ACTIVITY;
603            case PROCESS_STATE_CACHED_ACTIVITY_CLIENT:
604                return AppProtoEnums.PROCESS_STATE_CACHED_ACTIVITY_CLIENT;
605            case PROCESS_STATE_CACHED_RECENT:
606                return AppProtoEnums.PROCESS_STATE_CACHED_RECENT;
607            case PROCESS_STATE_CACHED_EMPTY:
608                return AppProtoEnums.PROCESS_STATE_CACHED_EMPTY;
609            case PROCESS_STATE_NONEXISTENT:
610                return AppProtoEnums.PROCESS_STATE_NONEXISTENT;
611            default:
612                // ActivityManager process state (amInt)
613                // could not be mapped to an AppProtoEnums ProcessState state.
614                return AppProtoEnums.PROCESS_STATE_UNKNOWN_TO_PROTO;
615        }
616    }
617
618    /** @hide The lowest process state number */
619    public static final int MIN_PROCESS_STATE = PROCESS_STATE_PERSISTENT;
620
621    /** @hide The highest process state number */
622    public static final int MAX_PROCESS_STATE = PROCESS_STATE_NONEXISTENT;
623
624    /** @hide Should this process state be considered a background state? */
625    public static final boolean isProcStateBackground(int procState) {
626        return procState >= PROCESS_STATE_TRANSIENT_BACKGROUND;
627    }
628
629    /** @hide requestType for assist context: only basic information. */
630    public static final int ASSIST_CONTEXT_BASIC = 0;
631
632    /** @hide requestType for assist context: generate full AssistStructure. */
633    public static final int ASSIST_CONTEXT_FULL = 1;
634
635    /** @hide requestType for assist context: generate full AssistStructure for autofill. */
636    public static final int ASSIST_CONTEXT_AUTOFILL = 2;
637
638    /** @hide Flag for registerUidObserver: report changes in process state. */
639    public static final int UID_OBSERVER_PROCSTATE = 1<<0;
640
641    /** @hide Flag for registerUidObserver: report uid gone. */
642    public static final int UID_OBSERVER_GONE = 1<<1;
643
644    /** @hide Flag for registerUidObserver: report uid has become idle. */
645    public static final int UID_OBSERVER_IDLE = 1<<2;
646
647    /** @hide Flag for registerUidObserver: report uid has become active. */
648    public static final int UID_OBSERVER_ACTIVE = 1<<3;
649
650    /** @hide Flag for registerUidObserver: report uid cached state has changed. */
651    public static final int UID_OBSERVER_CACHED = 1<<4;
652
653    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: normal free-to-run operation. */
654    public static final int APP_START_MODE_NORMAL = 0;
655
656    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: delay running until later. */
657    public static final int APP_START_MODE_DELAYED = 1;
658
659    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: delay running until later, with
660     * rigid errors (throwing exception). */
661    public static final int APP_START_MODE_DELAYED_RIGID = 2;
662
663    /** @hide Mode for {@link IActivityManager#isAppStartModeDisabled}: disable/cancel pending
664     * launches; this is the mode for ephemeral apps. */
665    public static final int APP_START_MODE_DISABLED = 3;
666
667    /**
668     * Lock task mode is not active.
669     */
670    public static final int LOCK_TASK_MODE_NONE = 0;
671
672    /**
673     * Full lock task mode is active.
674     */
675    public static final int LOCK_TASK_MODE_LOCKED = 1;
676
677    /**
678     * App pinning mode is active.
679     */
680    public static final int LOCK_TASK_MODE_PINNED = 2;
681
682    Point mAppTaskThumbnailSize;
683
684    /*package*/ ActivityManager(Context context, Handler handler) {
685        mContext = context;
686    }
687
688    /**
689     * Returns whether the launch was successful.
690     * @hide
691     */
692    public static final boolean isStartResultSuccessful(int result) {
693        return FIRST_START_SUCCESS_CODE <= result && result <= LAST_START_SUCCESS_CODE;
694    }
695
696    /**
697     * Returns whether the launch result was a fatal error.
698     * @hide
699     */
700    public static final boolean isStartResultFatalError(int result) {
701        return FIRST_START_FATAL_ERROR_CODE <= result && result <= LAST_START_FATAL_ERROR_CODE;
702    }
703
704    /**
705     * Screen compatibility mode: the application most always run in
706     * compatibility mode.
707     * @hide
708     */
709    public static final int COMPAT_MODE_ALWAYS = -1;
710
711    /**
712     * Screen compatibility mode: the application can never run in
713     * compatibility mode.
714     * @hide
715     */
716    public static final int COMPAT_MODE_NEVER = -2;
717
718    /**
719     * Screen compatibility mode: unknown.
720     * @hide
721     */
722    public static final int COMPAT_MODE_UNKNOWN = -3;
723
724    /**
725     * Screen compatibility mode: the application currently has compatibility
726     * mode disabled.
727     * @hide
728     */
729    public static final int COMPAT_MODE_DISABLED = 0;
730
731    /**
732     * Screen compatibility mode: the application currently has compatibility
733     * mode enabled.
734     * @hide
735     */
736    public static final int COMPAT_MODE_ENABLED = 1;
737
738    /**
739     * Screen compatibility mode: request to toggle the application's
740     * compatibility mode.
741     * @hide
742     */
743    public static final int COMPAT_MODE_TOGGLE = 2;
744
745    private static final boolean DEVELOPMENT_FORCE_LOW_RAM =
746            SystemProperties.getBoolean("debug.force_low_ram", false);
747
748    /** @hide */
749    @TestApi
750    public static class StackId {
751
752        private StackId() {
753        }
754
755        /** Invalid stack ID. */
756        public static final int INVALID_STACK_ID = -1;
757
758    }
759
760    /**
761     * Parameter to {@link android.app.IActivityManager#setTaskWindowingModeSplitScreenPrimary}
762     * which specifies the position of the created docked stack at the top half of the screen if
763     * in portrait mode or at the left half of the screen if in landscape mode.
764     * @hide
765     */
766    @TestApi
767    public static final int SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT = 0;
768
769    /**
770     * Parameter to {@link android.app.IActivityManager#setTaskWindowingModeSplitScreenPrimary}
771     * which
772     * specifies the position of the created docked stack at the bottom half of the screen if
773     * in portrait mode or at the right half of the screen if in landscape mode.
774     * @hide
775     */
776    @TestApi
777    public static final int SPLIT_SCREEN_CREATE_MODE_BOTTOM_OR_RIGHT = 1;
778
779    /**
780     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
781     * that the resize doesn't need to preserve the window, and can be skipped if bounds
782     * is unchanged. This mode is used by window manager in most cases.
783     * @hide
784     */
785    public static final int RESIZE_MODE_SYSTEM = 0;
786
787    /**
788     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
789     * that the resize should preserve the window if possible.
790     * @hide
791     */
792    public static final int RESIZE_MODE_PRESERVE_WINDOW   = (0x1 << 0);
793
794    /**
795     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
796     * that the resize should be performed even if the bounds appears unchanged.
797     * @hide
798     */
799    public static final int RESIZE_MODE_FORCED = (0x1 << 1);
800
801    /**
802     * Input parameter to {@link android.app.IActivityManager#resizeTask} used by window
803     * manager during a screen rotation.
804     * @hide
805     */
806    public static final int RESIZE_MODE_SYSTEM_SCREEN_ROTATION = RESIZE_MODE_PRESERVE_WINDOW;
807
808    /**
809     * Input parameter to {@link android.app.IActivityManager#resizeTask} used when the
810     * resize is due to a drag action.
811     * @hide
812     */
813    public static final int RESIZE_MODE_USER = RESIZE_MODE_PRESERVE_WINDOW;
814
815    /**
816     * Input parameter to {@link android.app.IActivityManager#resizeTask} which indicates
817     * that the resize should preserve the window if possible, and should not be skipped
818     * even if the bounds is unchanged. Usually used to force a resizing when a drag action
819     * is ending.
820     * @hide
821     */
822    public static final int RESIZE_MODE_USER_FORCED =
823            RESIZE_MODE_PRESERVE_WINDOW | RESIZE_MODE_FORCED;
824
825    /** @hide */
826    public int getFrontActivityScreenCompatMode() {
827        try {
828            return getService().getFrontActivityScreenCompatMode();
829        } catch (RemoteException e) {
830            throw e.rethrowFromSystemServer();
831        }
832    }
833
834    /** @hide */
835    public void setFrontActivityScreenCompatMode(int mode) {
836        try {
837            getService().setFrontActivityScreenCompatMode(mode);
838        } catch (RemoteException e) {
839            throw e.rethrowFromSystemServer();
840        }
841    }
842
843    /** @hide */
844    public int getPackageScreenCompatMode(String packageName) {
845        try {
846            return getService().getPackageScreenCompatMode(packageName);
847        } catch (RemoteException e) {
848            throw e.rethrowFromSystemServer();
849        }
850    }
851
852    /** @hide */
853    public void setPackageScreenCompatMode(String packageName, int mode) {
854        try {
855            getService().setPackageScreenCompatMode(packageName, mode);
856        } catch (RemoteException e) {
857            throw e.rethrowFromSystemServer();
858        }
859    }
860
861    /** @hide */
862    public boolean getPackageAskScreenCompat(String packageName) {
863        try {
864            return getService().getPackageAskScreenCompat(packageName);
865        } catch (RemoteException e) {
866            throw e.rethrowFromSystemServer();
867        }
868    }
869
870    /** @hide */
871    public void setPackageAskScreenCompat(String packageName, boolean ask) {
872        try {
873            getService().setPackageAskScreenCompat(packageName, ask);
874        } catch (RemoteException e) {
875            throw e.rethrowFromSystemServer();
876        }
877    }
878
879    /**
880     * Return the approximate per-application memory class of the current
881     * device.  This gives you an idea of how hard a memory limit you should
882     * impose on your application to let the overall system work best.  The
883     * returned value is in megabytes; the baseline Android memory class is
884     * 16 (which happens to be the Java heap limit of those devices); some
885     * devices with more memory may return 24 or even higher numbers.
886     */
887    public int getMemoryClass() {
888        return staticGetMemoryClass();
889    }
890
891    /** @hide */
892    static public int staticGetMemoryClass() {
893        // Really brain dead right now -- just take this from the configured
894        // vm heap size, and assume it is in megabytes and thus ends with "m".
895        String vmHeapSize = SystemProperties.get("dalvik.vm.heapgrowthlimit", "");
896        if (vmHeapSize != null && !"".equals(vmHeapSize)) {
897            return Integer.parseInt(vmHeapSize.substring(0, vmHeapSize.length()-1));
898        }
899        return staticGetLargeMemoryClass();
900    }
901
902    /**
903     * Return the approximate per-application memory class of the current
904     * device when an application is running with a large heap.  This is the
905     * space available for memory-intensive applications; most applications
906     * should not need this amount of memory, and should instead stay with the
907     * {@link #getMemoryClass()} limit.  The returned value is in megabytes.
908     * This may be the same size as {@link #getMemoryClass()} on memory
909     * constrained devices, or it may be significantly larger on devices with
910     * a large amount of available RAM.
911     *
912     * <p>This is the size of the application's Dalvik heap if it has
913     * specified <code>android:largeHeap="true"</code> in its manifest.
914     */
915    public int getLargeMemoryClass() {
916        return staticGetLargeMemoryClass();
917    }
918
919    /** @hide */
920    static public int staticGetLargeMemoryClass() {
921        // Really brain dead right now -- just take this from the configured
922        // vm heap size, and assume it is in megabytes and thus ends with "m".
923        String vmHeapSize = SystemProperties.get("dalvik.vm.heapsize", "16m");
924        return Integer.parseInt(vmHeapSize.substring(0, vmHeapSize.length() - 1));
925    }
926
927    /**
928     * Returns true if this is a low-RAM device.  Exactly whether a device is low-RAM
929     * is ultimately up to the device configuration, but currently it generally means
930     * something with 1GB or less of RAM.  This is mostly intended to be used by apps
931     * to determine whether they should turn off certain features that require more RAM.
932     */
933    public boolean isLowRamDevice() {
934        return isLowRamDeviceStatic();
935    }
936
937    /** @hide */
938    public static boolean isLowRamDeviceStatic() {
939        return RoSystemProperties.CONFIG_LOW_RAM ||
940                (Build.IS_DEBUGGABLE && DEVELOPMENT_FORCE_LOW_RAM);
941    }
942
943    /**
944     * Returns true if this is a small battery device. Exactly whether a device is considered to be
945     * small battery is ultimately up to the device configuration, but currently it generally means
946     * something in the class of a device with 1000 mAh or less. This is mostly intended to be used
947     * to determine whether certain features should be altered to account for a drastically smaller
948     * battery.
949     * @hide
950     */
951    public static boolean isSmallBatteryDevice() {
952        return RoSystemProperties.CONFIG_SMALL_BATTERY;
953    }
954
955    /**
956     * Used by persistent processes to determine if they are running on a
957     * higher-end device so should be okay using hardware drawing acceleration
958     * (which tends to consume a lot more RAM).
959     * @hide
960     */
961    static public boolean isHighEndGfx() {
962        return !isLowRamDeviceStatic()
963                && !RoSystemProperties.CONFIG_AVOID_GFX_ACCEL
964                && !Resources.getSystem()
965                        .getBoolean(com.android.internal.R.bool.config_avoidGfxAccel);
966    }
967
968    /**
969     * Return the total number of bytes of RAM this device has.
970     * @hide
971     */
972    @TestApi
973    public long getTotalRam() {
974        MemInfoReader memreader = new MemInfoReader();
975        memreader.readMemInfo();
976        return memreader.getTotalSize();
977    }
978
979    /**
980     * Return the maximum number of recents entries that we will maintain and show.
981     * @hide
982     */
983    static public int getMaxRecentTasksStatic() {
984        if (gMaxRecentTasks < 0) {
985            return gMaxRecentTasks = isLowRamDeviceStatic() ? 36 : 48;
986        }
987        return gMaxRecentTasks;
988    }
989
990    /**
991     * Return the default limit on the number of recents that an app can make.
992     * @hide
993     */
994    static public int getDefaultAppRecentsLimitStatic() {
995        return getMaxRecentTasksStatic() / 6;
996    }
997
998    /**
999     * Return the maximum limit on the number of recents that an app can make.
1000     * @hide
1001     */
1002    static public int getMaxAppRecentsLimitStatic() {
1003        return getMaxRecentTasksStatic() / 2;
1004    }
1005
1006    /**
1007     * Returns true if the system supports at least one form of multi-window.
1008     * E.g. freeform, split-screen, picture-in-picture.
1009     * @hide
1010     */
1011    @TestApi
1012    static public boolean supportsMultiWindow(Context context) {
1013        // On watches, multi-window is used to present essential system UI, and thus it must be
1014        // supported regardless of device memory characteristics.
1015        boolean isWatch = context.getPackageManager().hasSystemFeature(
1016                PackageManager.FEATURE_WATCH);
1017        return (!isLowRamDeviceStatic() || isWatch)
1018                && Resources.getSystem().getBoolean(
1019                    com.android.internal.R.bool.config_supportsMultiWindow);
1020    }
1021
1022    /**
1023     * Returns true if the system supports split screen multi-window.
1024     * @hide
1025     */
1026    @TestApi
1027    static public boolean supportsSplitScreenMultiWindow(Context context) {
1028        return supportsMultiWindow(context)
1029                && Resources.getSystem().getBoolean(
1030                    com.android.internal.R.bool.config_supportsSplitScreenMultiWindow);
1031    }
1032
1033    /** @removed */
1034    @Deprecated
1035    public static int getMaxNumPictureInPictureActions() {
1036        return 3;
1037    }
1038
1039    /**
1040     * Information you can set and retrieve about the current activity within the recent task list.
1041     */
1042    public static class TaskDescription implements Parcelable {
1043        /** @hide */
1044        public static final String ATTR_TASKDESCRIPTION_PREFIX = "task_description_";
1045        private static final String ATTR_TASKDESCRIPTIONLABEL =
1046                ATTR_TASKDESCRIPTION_PREFIX + "label";
1047        private static final String ATTR_TASKDESCRIPTIONCOLOR_PRIMARY =
1048                ATTR_TASKDESCRIPTION_PREFIX + "color";
1049        private static final String ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND =
1050                ATTR_TASKDESCRIPTION_PREFIX + "colorBackground";
1051        private static final String ATTR_TASKDESCRIPTIONICON_FILENAME =
1052                ATTR_TASKDESCRIPTION_PREFIX + "icon_filename";
1053        private static final String ATTR_TASKDESCRIPTIONICON_RESOURCE =
1054                ATTR_TASKDESCRIPTION_PREFIX + "icon_resource";
1055
1056        private String mLabel;
1057        private Bitmap mIcon;
1058        private int mIconRes;
1059        private String mIconFilename;
1060        private int mColorPrimary;
1061        private int mColorBackground;
1062        private int mStatusBarColor;
1063        private int mNavigationBarColor;
1064
1065        /**
1066         * Creates the TaskDescription to the specified values.
1067         *
1068         * @param label A label and description of the current state of this task.
1069         * @param icon An icon that represents the current state of this task.
1070         * @param colorPrimary A color to override the theme's primary color.  This color must be
1071         *                     opaque.
1072         * @deprecated use TaskDescription constructor with icon resource instead
1073         */
1074        @Deprecated
1075        public TaskDescription(String label, Bitmap icon, int colorPrimary) {
1076            this(label, icon, 0, null, colorPrimary, 0, 0, 0);
1077            if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
1078                throw new RuntimeException("A TaskDescription's primary color should be opaque");
1079            }
1080        }
1081
1082        /**
1083         * Creates the TaskDescription to the specified values.
1084         *
1085         * @param label A label and description of the current state of this task.
1086         * @param iconRes A drawable resource of an icon that represents the current state of this
1087         *                activity.
1088         * @param colorPrimary A color to override the theme's primary color.  This color must be
1089         *                     opaque.
1090         */
1091        public TaskDescription(String label, @DrawableRes int iconRes, int colorPrimary) {
1092            this(label, null, iconRes, null, colorPrimary, 0, 0, 0);
1093            if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
1094                throw new RuntimeException("A TaskDescription's primary color should be opaque");
1095            }
1096        }
1097
1098        /**
1099         * Creates the TaskDescription to the specified values.
1100         *
1101         * @param label A label and description of the current state of this activity.
1102         * @param icon An icon that represents the current state of this activity.
1103         * @deprecated use TaskDescription constructor with icon resource instead
1104         */
1105        @Deprecated
1106        public TaskDescription(String label, Bitmap icon) {
1107            this(label, icon, 0, null, 0, 0, 0, 0);
1108        }
1109
1110        /**
1111         * Creates the TaskDescription to the specified values.
1112         *
1113         * @param label A label and description of the current state of this activity.
1114         * @param iconRes A drawable resource of an icon that represents the current state of this
1115         *                activity.
1116         */
1117        public TaskDescription(String label, @DrawableRes int iconRes) {
1118            this(label, null, iconRes, null, 0, 0, 0, 0);
1119        }
1120
1121        /**
1122         * Creates the TaskDescription to the specified values.
1123         *
1124         * @param label A label and description of the current state of this activity.
1125         */
1126        public TaskDescription(String label) {
1127            this(label, null, 0, null, 0, 0, 0, 0);
1128        }
1129
1130        /**
1131         * Creates an empty TaskDescription.
1132         */
1133        public TaskDescription() {
1134            this(null, null, 0, null, 0, 0, 0, 0);
1135        }
1136
1137        /** @hide */
1138        public TaskDescription(String label, Bitmap bitmap, int iconRes, String iconFilename,
1139                int colorPrimary, int colorBackground, int statusBarColor, int navigationBarColor) {
1140            mLabel = label;
1141            mIcon = bitmap;
1142            mIconRes = iconRes;
1143            mIconFilename = iconFilename;
1144            mColorPrimary = colorPrimary;
1145            mColorBackground = colorBackground;
1146            mStatusBarColor = statusBarColor;
1147            mNavigationBarColor = navigationBarColor;
1148        }
1149
1150        /**
1151         * Creates a copy of another TaskDescription.
1152         */
1153        public TaskDescription(TaskDescription td) {
1154            copyFrom(td);
1155        }
1156
1157        /**
1158         * Copies this the values from another TaskDescription.
1159         * @hide
1160         */
1161        public void copyFrom(TaskDescription other) {
1162            mLabel = other.mLabel;
1163            mIcon = other.mIcon;
1164            mIconRes = other.mIconRes;
1165            mIconFilename = other.mIconFilename;
1166            mColorPrimary = other.mColorPrimary;
1167            mColorBackground = other.mColorBackground;
1168            mStatusBarColor = other.mStatusBarColor;
1169            mNavigationBarColor = other.mNavigationBarColor;
1170        }
1171
1172        /**
1173         * Copies this the values from another TaskDescription, but preserves the hidden fields
1174         * if they weren't set on {@code other}
1175         * @hide
1176         */
1177        public void copyFromPreserveHiddenFields(TaskDescription other) {
1178            mLabel = other.mLabel;
1179            mIcon = other.mIcon;
1180            mIconRes = other.mIconRes;
1181            mIconFilename = other.mIconFilename;
1182            mColorPrimary = other.mColorPrimary;
1183            if (other.mColorBackground != 0) {
1184                mColorBackground = other.mColorBackground;
1185            }
1186            if (other.mStatusBarColor != 0) {
1187                mStatusBarColor = other.mStatusBarColor;
1188            }
1189            if (other.mNavigationBarColor != 0) {
1190                mNavigationBarColor = other.mNavigationBarColor;
1191            }
1192        }
1193
1194        private TaskDescription(Parcel source) {
1195            readFromParcel(source);
1196        }
1197
1198        /**
1199         * Sets the label for this task description.
1200         * @hide
1201         */
1202        public void setLabel(String label) {
1203            mLabel = label;
1204        }
1205
1206        /**
1207         * Sets the primary color for this task description.
1208         * @hide
1209         */
1210        public void setPrimaryColor(int primaryColor) {
1211            // Ensure that the given color is valid
1212            if ((primaryColor != 0) && (Color.alpha(primaryColor) != 255)) {
1213                throw new RuntimeException("A TaskDescription's primary color should be opaque");
1214            }
1215            mColorPrimary = primaryColor;
1216        }
1217
1218        /**
1219         * Sets the background color for this task description.
1220         * @hide
1221         */
1222        public void setBackgroundColor(int backgroundColor) {
1223            // Ensure that the given color is valid
1224            if ((backgroundColor != 0) && (Color.alpha(backgroundColor) != 255)) {
1225                throw new RuntimeException("A TaskDescription's background color should be opaque");
1226            }
1227            mColorBackground = backgroundColor;
1228        }
1229
1230        /**
1231         * @hide
1232         */
1233        public void setStatusBarColor(int statusBarColor) {
1234            mStatusBarColor = statusBarColor;
1235        }
1236
1237        /**
1238         * @hide
1239         */
1240        public void setNavigationBarColor(int navigationBarColor) {
1241            mNavigationBarColor = navigationBarColor;
1242        }
1243
1244        /**
1245         * Sets the icon for this task description.
1246         * @hide
1247         */
1248        public void setIcon(Bitmap icon) {
1249            mIcon = icon;
1250        }
1251
1252        /**
1253         * Sets the icon resource for this task description.
1254         * @hide
1255         */
1256        public void setIcon(int iconRes) {
1257            mIconRes = iconRes;
1258        }
1259
1260        /**
1261         * Moves the icon bitmap reference from an actual Bitmap to a file containing the
1262         * bitmap.
1263         * @hide
1264         */
1265        public void setIconFilename(String iconFilename) {
1266            mIconFilename = iconFilename;
1267            mIcon = null;
1268        }
1269
1270        /**
1271         * @return The label and description of the current state of this task.
1272         */
1273        public String getLabel() {
1274            return mLabel;
1275        }
1276
1277        /**
1278         * @return The icon that represents the current state of this task.
1279         */
1280        public Bitmap getIcon() {
1281            if (mIcon != null) {
1282                return mIcon;
1283            }
1284            return loadTaskDescriptionIcon(mIconFilename, UserHandle.myUserId());
1285        }
1286
1287        /** @hide */
1288        @TestApi
1289        public int getIconResource() {
1290            return mIconRes;
1291        }
1292
1293        /** @hide */
1294        @TestApi
1295        public String getIconFilename() {
1296            return mIconFilename;
1297        }
1298
1299        /** @hide */
1300        public Bitmap getInMemoryIcon() {
1301            return mIcon;
1302        }
1303
1304        /** @hide */
1305        public static Bitmap loadTaskDescriptionIcon(String iconFilename, int userId) {
1306            if (iconFilename != null) {
1307                try {
1308                    return getService().getTaskDescriptionIcon(iconFilename,
1309                            userId);
1310                } catch (RemoteException e) {
1311                    throw e.rethrowFromSystemServer();
1312                }
1313            }
1314            return null;
1315        }
1316
1317        /**
1318         * @return The color override on the theme's primary color.
1319         */
1320        public int getPrimaryColor() {
1321            return mColorPrimary;
1322        }
1323
1324        /**
1325         * @return The background color.
1326         * @hide
1327         */
1328        public int getBackgroundColor() {
1329            return mColorBackground;
1330        }
1331
1332        /**
1333         * @hide
1334         */
1335        public int getStatusBarColor() {
1336            return mStatusBarColor;
1337        }
1338
1339        /**
1340         * @hide
1341         */
1342        public int getNavigationBarColor() {
1343            return mNavigationBarColor;
1344        }
1345
1346        /** @hide */
1347        public void saveToXml(XmlSerializer out) throws IOException {
1348            if (mLabel != null) {
1349                out.attribute(null, ATTR_TASKDESCRIPTIONLABEL, mLabel);
1350            }
1351            if (mColorPrimary != 0) {
1352                out.attribute(null, ATTR_TASKDESCRIPTIONCOLOR_PRIMARY,
1353                        Integer.toHexString(mColorPrimary));
1354            }
1355            if (mColorBackground != 0) {
1356                out.attribute(null, ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND,
1357                        Integer.toHexString(mColorBackground));
1358            }
1359            if (mIconFilename != null) {
1360                out.attribute(null, ATTR_TASKDESCRIPTIONICON_FILENAME, mIconFilename);
1361            }
1362            if (mIconRes != 0) {
1363                out.attribute(null, ATTR_TASKDESCRIPTIONICON_RESOURCE, Integer.toString(mIconRes));
1364            }
1365        }
1366
1367        /** @hide */
1368        public void restoreFromXml(String attrName, String attrValue) {
1369            if (ATTR_TASKDESCRIPTIONLABEL.equals(attrName)) {
1370                setLabel(attrValue);
1371            } else if (ATTR_TASKDESCRIPTIONCOLOR_PRIMARY.equals(attrName)) {
1372                setPrimaryColor((int) Long.parseLong(attrValue, 16));
1373            } else if (ATTR_TASKDESCRIPTIONCOLOR_BACKGROUND.equals(attrName)) {
1374                setBackgroundColor((int) Long.parseLong(attrValue, 16));
1375            } else if (ATTR_TASKDESCRIPTIONICON_FILENAME.equals(attrName)) {
1376                setIconFilename(attrValue);
1377            } else if (ATTR_TASKDESCRIPTIONICON_RESOURCE.equals(attrName)) {
1378                setIcon(Integer.parseInt(attrValue, 10));
1379            }
1380        }
1381
1382        @Override
1383        public int describeContents() {
1384            return 0;
1385        }
1386
1387        @Override
1388        public void writeToParcel(Parcel dest, int flags) {
1389            if (mLabel == null) {
1390                dest.writeInt(0);
1391            } else {
1392                dest.writeInt(1);
1393                dest.writeString(mLabel);
1394            }
1395            if (mIcon == null) {
1396                dest.writeInt(0);
1397            } else {
1398                dest.writeInt(1);
1399                mIcon.writeToParcel(dest, 0);
1400            }
1401            dest.writeInt(mIconRes);
1402            dest.writeInt(mColorPrimary);
1403            dest.writeInt(mColorBackground);
1404            dest.writeInt(mStatusBarColor);
1405            dest.writeInt(mNavigationBarColor);
1406            if (mIconFilename == null) {
1407                dest.writeInt(0);
1408            } else {
1409                dest.writeInt(1);
1410                dest.writeString(mIconFilename);
1411            }
1412        }
1413
1414        public void readFromParcel(Parcel source) {
1415            mLabel = source.readInt() > 0 ? source.readString() : null;
1416            mIcon = source.readInt() > 0 ? Bitmap.CREATOR.createFromParcel(source) : null;
1417            mIconRes = source.readInt();
1418            mColorPrimary = source.readInt();
1419            mColorBackground = source.readInt();
1420            mStatusBarColor = source.readInt();
1421            mNavigationBarColor = source.readInt();
1422            mIconFilename = source.readInt() > 0 ? source.readString() : null;
1423        }
1424
1425        public static final Creator<TaskDescription> CREATOR
1426                = new Creator<TaskDescription>() {
1427            public TaskDescription createFromParcel(Parcel source) {
1428                return new TaskDescription(source);
1429            }
1430            public TaskDescription[] newArray(int size) {
1431                return new TaskDescription[size];
1432            }
1433        };
1434
1435        @Override
1436        public String toString() {
1437            return "TaskDescription Label: " + mLabel + " Icon: " + mIcon +
1438                    " IconRes: " + mIconRes + " IconFilename: " + mIconFilename +
1439                    " colorPrimary: " + mColorPrimary + " colorBackground: " + mColorBackground +
1440                    " statusBarColor: " + mColorBackground +
1441                    " navigationBarColor: " + mNavigationBarColor;
1442        }
1443    }
1444
1445    /**
1446     * Information you can retrieve about tasks that the user has most recently
1447     * started or visited.
1448     */
1449    public static class RecentTaskInfo implements Parcelable {
1450        /**
1451         * If this task is currently running, this is the identifier for it.
1452         * If it is not running, this will be -1.
1453         */
1454        public int id;
1455
1456        /**
1457         * The true identifier of this task, valid even if it is not running.
1458         */
1459        public int persistentId;
1460
1461        /**
1462         * The original Intent used to launch the task.  You can use this
1463         * Intent to re-launch the task (if it is no longer running) or bring
1464         * the current task to the front.
1465         */
1466        public Intent baseIntent;
1467
1468        /**
1469         * If this task was started from an alias, this is the actual
1470         * activity component that was initially started; the component of
1471         * the baseIntent in this case is the name of the actual activity
1472         * implementation that the alias referred to.  Otherwise, this is null.
1473         */
1474        public ComponentName origActivity;
1475
1476        /**
1477         * The actual activity component that started the task.
1478         * @hide
1479         */
1480        @Nullable
1481        public ComponentName realActivity;
1482
1483        /**
1484         * Description of the task's last state.
1485         */
1486        public CharSequence description;
1487
1488        /**
1489         * The id of the ActivityStack this Task was on most recently.
1490         * @hide
1491         */
1492        public int stackId;
1493
1494        /**
1495         * The id of the user the task was running as.
1496         * @hide
1497         */
1498        public int userId;
1499
1500        /**
1501         * The first time this task was active.
1502         * @hide
1503         */
1504        public long firstActiveTime;
1505
1506        /**
1507         * The last time this task was active.
1508         * @hide
1509         */
1510        public long lastActiveTime;
1511
1512        /**
1513         * The recent activity values for the highest activity in the stack to have set the values.
1514         * {@link Activity#setTaskDescription(android.app.ActivityManager.TaskDescription)}.
1515         */
1516        public TaskDescription taskDescription;
1517
1518        /**
1519         * Task affiliation for grouping with other tasks.
1520         */
1521        public int affiliatedTaskId;
1522
1523        /**
1524         * Task affiliation color of the source task with the affiliated task id.
1525         *
1526         * @hide
1527         */
1528        public int affiliatedTaskColor;
1529
1530        /**
1531         * The component launched as the first activity in the task.
1532         * This can be considered the "application" of this task.
1533         */
1534        public ComponentName baseActivity;
1535
1536        /**
1537         * The activity component at the top of the history stack of the task.
1538         * This is what the user is currently doing.
1539         */
1540        public ComponentName topActivity;
1541
1542        /**
1543         * Number of activities in this task.
1544         */
1545        public int numActivities;
1546
1547        /**
1548         * The bounds of the task.
1549         * @hide
1550         */
1551        public Rect bounds;
1552
1553        /**
1554         * True if the task can go in the docked stack.
1555         * @hide
1556         */
1557        public boolean supportsSplitScreenMultiWindow;
1558
1559        /**
1560         * The resize mode of the task. See {@link ActivityInfo#resizeMode}.
1561         * @hide
1562         */
1563        public int resizeMode;
1564
1565        /**
1566         * The current configuration this task is in.
1567         * @hide
1568         */
1569        final public Configuration configuration = new Configuration();
1570
1571        public RecentTaskInfo() {
1572        }
1573
1574        @Override
1575        public int describeContents() {
1576            return 0;
1577        }
1578
1579        @Override
1580        public void writeToParcel(Parcel dest, int flags) {
1581            dest.writeInt(id);
1582            dest.writeInt(persistentId);
1583            if (baseIntent != null) {
1584                dest.writeInt(1);
1585                baseIntent.writeToParcel(dest, 0);
1586            } else {
1587                dest.writeInt(0);
1588            }
1589            ComponentName.writeToParcel(origActivity, dest);
1590            ComponentName.writeToParcel(realActivity, dest);
1591            TextUtils.writeToParcel(description, dest,
1592                    Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1593            if (taskDescription != null) {
1594                dest.writeInt(1);
1595                taskDescription.writeToParcel(dest, 0);
1596            } else {
1597                dest.writeInt(0);
1598            }
1599            dest.writeInt(stackId);
1600            dest.writeInt(userId);
1601            dest.writeLong(lastActiveTime);
1602            dest.writeInt(affiliatedTaskId);
1603            dest.writeInt(affiliatedTaskColor);
1604            ComponentName.writeToParcel(baseActivity, dest);
1605            ComponentName.writeToParcel(topActivity, dest);
1606            dest.writeInt(numActivities);
1607            if (bounds != null) {
1608                dest.writeInt(1);
1609                bounds.writeToParcel(dest, 0);
1610            } else {
1611                dest.writeInt(0);
1612            }
1613            dest.writeInt(supportsSplitScreenMultiWindow ? 1 : 0);
1614            dest.writeInt(resizeMode);
1615            configuration.writeToParcel(dest, flags);
1616        }
1617
1618        public void readFromParcel(Parcel source) {
1619            id = source.readInt();
1620            persistentId = source.readInt();
1621            baseIntent = source.readInt() > 0 ? Intent.CREATOR.createFromParcel(source) : null;
1622            origActivity = ComponentName.readFromParcel(source);
1623            realActivity = ComponentName.readFromParcel(source);
1624            description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
1625            taskDescription = source.readInt() > 0 ?
1626                    TaskDescription.CREATOR.createFromParcel(source) : null;
1627            stackId = source.readInt();
1628            userId = source.readInt();
1629            lastActiveTime = source.readLong();
1630            affiliatedTaskId = source.readInt();
1631            affiliatedTaskColor = source.readInt();
1632            baseActivity = ComponentName.readFromParcel(source);
1633            topActivity = ComponentName.readFromParcel(source);
1634            numActivities = source.readInt();
1635            bounds = source.readInt() > 0 ?
1636                    Rect.CREATOR.createFromParcel(source) : null;
1637            supportsSplitScreenMultiWindow = source.readInt() == 1;
1638            resizeMode = source.readInt();
1639            configuration.readFromParcel(source);
1640        }
1641
1642        public static final Creator<RecentTaskInfo> CREATOR
1643                = new Creator<RecentTaskInfo>() {
1644            public RecentTaskInfo createFromParcel(Parcel source) {
1645                return new RecentTaskInfo(source);
1646            }
1647            public RecentTaskInfo[] newArray(int size) {
1648                return new RecentTaskInfo[size];
1649            }
1650        };
1651
1652        private RecentTaskInfo(Parcel source) {
1653            readFromParcel(source);
1654        }
1655    }
1656
1657    /**
1658     * Flag for use with {@link #getRecentTasks}: return all tasks, even those
1659     * that have set their
1660     * {@link android.content.Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} flag.
1661     */
1662    public static final int RECENT_WITH_EXCLUDED = 0x0001;
1663
1664    /**
1665     * Provides a list that does not contain any
1666     * recent tasks that currently are not available to the user.
1667     */
1668    public static final int RECENT_IGNORE_UNAVAILABLE = 0x0002;
1669
1670    /**
1671     * <p></p>Return a list of the tasks that the user has recently launched, with
1672     * the most recent being first and older ones after in order.
1673     *
1674     * <p><b>Note: this method is only intended for debugging and presenting
1675     * task management user interfaces</b>.  This should never be used for
1676     * core logic in an application, such as deciding between different
1677     * behaviors based on the information found here.  Such uses are
1678     * <em>not</em> supported, and will likely break in the future.  For
1679     * example, if multiple applications can be actively running at the
1680     * same time, assumptions made about the meaning of the data here for
1681     * purposes of control flow will be incorrect.</p>
1682     *
1683     * @deprecated As of {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this method is
1684     * no longer available to third party applications: the introduction of
1685     * document-centric recents means
1686     * it can leak personal information to the caller.  For backwards compatibility,
1687     * it will still return a small subset of its data: at least the caller's
1688     * own tasks (though see {@link #getAppTasks()} for the correct supported
1689     * way to retrieve that information), and possibly some other tasks
1690     * such as home that are known to not be sensitive.
1691     *
1692     * @param maxNum The maximum number of entries to return in the list.  The
1693     * actual number returned may be smaller, depending on how many tasks the
1694     * user has started and the maximum number the system can remember.
1695     * @param flags Information about what to return.  May be any combination
1696     * of {@link #RECENT_WITH_EXCLUDED} and {@link #RECENT_IGNORE_UNAVAILABLE}.
1697     *
1698     * @return Returns a list of RecentTaskInfo records describing each of
1699     * the recent tasks.
1700     */
1701    @Deprecated
1702    public List<RecentTaskInfo> getRecentTasks(int maxNum, int flags)
1703            throws SecurityException {
1704        try {
1705            if (maxNum < 0) {
1706                throw new IllegalArgumentException("The requested number of tasks should be >= 0");
1707            }
1708            return getService().getRecentTasks(maxNum, flags, mContext.getUserId()).getList();
1709        } catch (RemoteException e) {
1710            throw e.rethrowFromSystemServer();
1711        }
1712    }
1713
1714    /**
1715     * Information you can retrieve about a particular task that is currently
1716     * "running" in the system.  Note that a running task does not mean the
1717     * given task actually has a process it is actively running in; it simply
1718     * means that the user has gone to it and never closed it, but currently
1719     * the system may have killed its process and is only holding on to its
1720     * last state in order to restart it when the user returns.
1721     */
1722    public static class RunningTaskInfo implements Parcelable {
1723        /**
1724         * A unique identifier for this task.
1725         */
1726        public int id;
1727
1728        /**
1729         * The stack that currently contains this task.
1730         * @hide
1731         */
1732        public int stackId;
1733
1734        /**
1735         * The component launched as the first activity in the task.  This can
1736         * be considered the "application" of this task.
1737         */
1738        public ComponentName baseActivity;
1739
1740        /**
1741         * The activity component at the top of the history stack of the task.
1742         * This is what the user is currently doing.
1743         */
1744        public ComponentName topActivity;
1745
1746        /**
1747         * Thumbnail representation of the task's current state.  Currently
1748         * always null.
1749         */
1750        public Bitmap thumbnail;
1751
1752        /**
1753         * Description of the task's current state.
1754         */
1755        public CharSequence description;
1756
1757        /**
1758         * Number of activities in this task.
1759         */
1760        public int numActivities;
1761
1762        /**
1763         * Number of activities that are currently running (not stopped
1764         * and persisted) in this task.
1765         */
1766        public int numRunning;
1767
1768        /**
1769         * Last time task was run. For sorting.
1770         * @hide
1771         */
1772        public long lastActiveTime;
1773
1774        /**
1775         * True if the task can go in the docked stack.
1776         * @hide
1777         */
1778        public boolean supportsSplitScreenMultiWindow;
1779
1780        /**
1781         * The resize mode of the task. See {@link ActivityInfo#resizeMode}.
1782         * @hide
1783         */
1784        public int resizeMode;
1785
1786        /**
1787         * The full configuration the task is currently running in.
1788         * @hide
1789         */
1790        final public Configuration configuration = new Configuration();
1791
1792        public RunningTaskInfo() {
1793        }
1794
1795        public int describeContents() {
1796            return 0;
1797        }
1798
1799        public void writeToParcel(Parcel dest, int flags) {
1800            dest.writeInt(id);
1801            dest.writeInt(stackId);
1802            ComponentName.writeToParcel(baseActivity, dest);
1803            ComponentName.writeToParcel(topActivity, dest);
1804            if (thumbnail != null) {
1805                dest.writeInt(1);
1806                thumbnail.writeToParcel(dest, 0);
1807            } else {
1808                dest.writeInt(0);
1809            }
1810            TextUtils.writeToParcel(description, dest,
1811                    Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
1812            dest.writeInt(numActivities);
1813            dest.writeInt(numRunning);
1814            dest.writeInt(supportsSplitScreenMultiWindow ? 1 : 0);
1815            dest.writeInt(resizeMode);
1816            configuration.writeToParcel(dest, flags);
1817        }
1818
1819        public void readFromParcel(Parcel source) {
1820            id = source.readInt();
1821            stackId = source.readInt();
1822            baseActivity = ComponentName.readFromParcel(source);
1823            topActivity = ComponentName.readFromParcel(source);
1824            if (source.readInt() != 0) {
1825                thumbnail = Bitmap.CREATOR.createFromParcel(source);
1826            } else {
1827                thumbnail = null;
1828            }
1829            description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
1830            numActivities = source.readInt();
1831            numRunning = source.readInt();
1832            supportsSplitScreenMultiWindow = source.readInt() != 0;
1833            resizeMode = source.readInt();
1834            configuration.readFromParcel(source);
1835        }
1836
1837        public static final Creator<RunningTaskInfo> CREATOR = new Creator<RunningTaskInfo>() {
1838            public RunningTaskInfo createFromParcel(Parcel source) {
1839                return new RunningTaskInfo(source);
1840            }
1841            public RunningTaskInfo[] newArray(int size) {
1842                return new RunningTaskInfo[size];
1843            }
1844        };
1845
1846        private RunningTaskInfo(Parcel source) {
1847            readFromParcel(source);
1848        }
1849    }
1850
1851    /**
1852     * Get the list of tasks associated with the calling application.
1853     *
1854     * @return The list of tasks associated with the application making this call.
1855     * @throws SecurityException
1856     */
1857    public List<ActivityManager.AppTask> getAppTasks() {
1858        ArrayList<AppTask> tasks = new ArrayList<AppTask>();
1859        List<IBinder> appTasks;
1860        try {
1861            appTasks = getService().getAppTasks(mContext.getPackageName());
1862        } catch (RemoteException e) {
1863            throw e.rethrowFromSystemServer();
1864        }
1865        int numAppTasks = appTasks.size();
1866        for (int i = 0; i < numAppTasks; i++) {
1867            tasks.add(new AppTask(IAppTask.Stub.asInterface(appTasks.get(i))));
1868        }
1869        return tasks;
1870    }
1871
1872    /**
1873     * Return the current design dimensions for {@link AppTask} thumbnails, for use
1874     * with {@link #addAppTask}.
1875     */
1876    public Size getAppTaskThumbnailSize() {
1877        synchronized (this) {
1878            ensureAppTaskThumbnailSizeLocked();
1879            return new Size(mAppTaskThumbnailSize.x, mAppTaskThumbnailSize.y);
1880        }
1881    }
1882
1883    private void ensureAppTaskThumbnailSizeLocked() {
1884        if (mAppTaskThumbnailSize == null) {
1885            try {
1886                mAppTaskThumbnailSize = getService().getAppTaskThumbnailSize();
1887            } catch (RemoteException e) {
1888                throw e.rethrowFromSystemServer();
1889            }
1890        }
1891    }
1892
1893    /**
1894     * Add a new {@link AppTask} for the calling application.  This will create a new
1895     * recents entry that is added to the <b>end</b> of all existing recents.
1896     *
1897     * @param activity The activity that is adding the entry.   This is used to help determine
1898     * the context that the new recents entry will be in.
1899     * @param intent The Intent that describes the recents entry.  This is the same Intent that
1900     * you would have used to launch the activity for it.  In generally you will want to set
1901     * both {@link Intent#FLAG_ACTIVITY_NEW_DOCUMENT} and
1902     * {@link Intent#FLAG_ACTIVITY_RETAIN_IN_RECENTS}; the latter is required since this recents
1903     * entry will exist without an activity, so it doesn't make sense to not retain it when
1904     * its activity disappears.  The given Intent here also must have an explicit ComponentName
1905     * set on it.
1906     * @param description Optional additional description information.
1907     * @param thumbnail Thumbnail to use for the recents entry.  Should be the size given by
1908     * {@link #getAppTaskThumbnailSize()}.  If the bitmap is not that exact size, it will be
1909     * recreated in your process, probably in a way you don't like, before the recents entry
1910     * is added.
1911     *
1912     * @return Returns the task id of the newly added app task, or -1 if the add failed.  The
1913     * most likely cause of failure is that there is no more room for more tasks for your app.
1914     */
1915    public int addAppTask(@NonNull Activity activity, @NonNull Intent intent,
1916            @Nullable TaskDescription description, @NonNull Bitmap thumbnail) {
1917        Point size;
1918        synchronized (this) {
1919            ensureAppTaskThumbnailSizeLocked();
1920            size = mAppTaskThumbnailSize;
1921        }
1922        final int tw = thumbnail.getWidth();
1923        final int th = thumbnail.getHeight();
1924        if (tw != size.x || th != size.y) {
1925            Bitmap bm = Bitmap.createBitmap(size.x, size.y, thumbnail.getConfig());
1926
1927            // Use ScaleType.CENTER_CROP, except we leave the top edge at the top.
1928            float scale;
1929            float dx = 0, dy = 0;
1930            if (tw * size.x > size.y * th) {
1931                scale = (float) size.x / (float) th;
1932                dx = (size.y - tw * scale) * 0.5f;
1933            } else {
1934                scale = (float) size.y / (float) tw;
1935                dy = (size.x - th * scale) * 0.5f;
1936            }
1937            Matrix matrix = new Matrix();
1938            matrix.setScale(scale, scale);
1939            matrix.postTranslate((int) (dx + 0.5f), 0);
1940
1941            Canvas canvas = new Canvas(bm);
1942            canvas.drawBitmap(thumbnail, matrix, null);
1943            canvas.setBitmap(null);
1944
1945            thumbnail = bm;
1946        }
1947        if (description == null) {
1948            description = new TaskDescription();
1949        }
1950        try {
1951            return getService().addAppTask(activity.getActivityToken(),
1952                    intent, description, thumbnail);
1953        } catch (RemoteException e) {
1954            throw e.rethrowFromSystemServer();
1955        }
1956    }
1957
1958    /**
1959     * Return a list of the tasks that are currently running, with
1960     * the most recent being first and older ones after in order.  Note that
1961     * "running" does not mean any of the task's code is currently loaded or
1962     * activity -- the task may have been frozen by the system, so that it
1963     * can be restarted in its previous state when next brought to the
1964     * foreground.
1965     *
1966     * <p><b>Note: this method is only intended for debugging and presenting
1967     * task management user interfaces</b>.  This should never be used for
1968     * core logic in an application, such as deciding between different
1969     * behaviors based on the information found here.  Such uses are
1970     * <em>not</em> supported, and will likely break in the future.  For
1971     * example, if multiple applications can be actively running at the
1972     * same time, assumptions made about the meaning of the data here for
1973     * purposes of control flow will be incorrect.</p>
1974     *
1975     * @deprecated As of {@link android.os.Build.VERSION_CODES#LOLLIPOP}, this method
1976     * is no longer available to third party
1977     * applications: the introduction of document-centric recents means
1978     * it can leak person information to the caller.  For backwards compatibility,
1979     * it will still return a small subset of its data: at least the caller's
1980     * own tasks, and possibly some other tasks
1981     * such as home that are known to not be sensitive.
1982     *
1983     * @param maxNum The maximum number of entries to return in the list.  The
1984     * actual number returned may be smaller, depending on how many tasks the
1985     * user has started.
1986     *
1987     * @return Returns a list of RunningTaskInfo records describing each of
1988     * the running tasks.
1989     */
1990    @Deprecated
1991    public List<RunningTaskInfo> getRunningTasks(int maxNum)
1992            throws SecurityException {
1993        try {
1994            return getService().getTasks(maxNum);
1995        } catch (RemoteException e) {
1996            throw e.rethrowFromSystemServer();
1997        }
1998    }
1999
2000    /**
2001     * Sets the windowing mode for a specific task. Only works on tasks of type
2002     * {@link WindowConfiguration#ACTIVITY_TYPE_STANDARD}
2003     * @param taskId The id of the task to set the windowing mode for.
2004     * @param windowingMode The windowing mode to set for the task.
2005     * @param toTop If the task should be moved to the top once the windowing mode changes.
2006     * @hide
2007     */
2008    @TestApi
2009    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2010    public void setTaskWindowingMode(int taskId, int windowingMode, boolean toTop)
2011            throws SecurityException {
2012        try {
2013            getService().setTaskWindowingMode(taskId, windowingMode, toTop);
2014        } catch (RemoteException e) {
2015            throw e.rethrowFromSystemServer();
2016        }
2017    }
2018
2019    /**
2020     * Moves the input task to the primary-split-screen stack.
2021     * @param taskId Id of task to move.
2022     * @param createMode The mode the primary split screen stack should be created in if it doesn't
2023     *                  exist already. See
2024     *                   {@link android.app.ActivityManager#SPLIT_SCREEN_CREATE_MODE_TOP_OR_LEFT}
2025     *                   and
2026     *                   {@link android.app.ActivityManager
2027     *                        #SPLIT_SCREEN_CREATE_MODE_BOTTOM_OR_RIGHT}
2028     * @param toTop If the task and stack should be moved to the top.
2029     * @param animate Whether we should play an animation for the moving the task
2030     * @param initialBounds If the primary stack gets created, it will use these bounds for the
2031     *                      docked stack. Pass {@code null} to use default bounds.
2032     * @param showRecents If the recents activity should be shown on the other side of the task
2033     *                    going into split-screen mode.
2034     * @hide
2035     */
2036    @TestApi
2037    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2038    public void setTaskWindowingModeSplitScreenPrimary(int taskId, int createMode, boolean toTop,
2039            boolean animate, Rect initialBounds, boolean showRecents) throws SecurityException {
2040        try {
2041            getService().setTaskWindowingModeSplitScreenPrimary(taskId, createMode, toTop, animate,
2042                    initialBounds, showRecents);
2043        } catch (RemoteException e) {
2044            throw e.rethrowFromSystemServer();
2045        }
2046    }
2047
2048    /**
2049     * Resizes the input stack id to the given bounds.
2050     * @param stackId Id of the stack to resize.
2051     * @param bounds Bounds to resize the stack to or {@code null} for fullscreen.
2052     * @hide
2053     */
2054    @TestApi
2055    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2056    public void resizeStack(int stackId, Rect bounds) throws SecurityException {
2057        try {
2058            getService().resizeStack(stackId, bounds, false /* allowResizeInDockedMode */,
2059                    false /* preserveWindows */, false /* animate */, -1 /* animationDuration */);
2060        } catch (RemoteException e) {
2061            throw e.rethrowFromSystemServer();
2062        }
2063    }
2064
2065    /**
2066     * Removes stacks in the windowing modes from the system if they are of activity type
2067     * ACTIVITY_TYPE_STANDARD or ACTIVITY_TYPE_UNDEFINED
2068     *
2069     * @hide
2070     */
2071    @TestApi
2072    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2073    public void removeStacksInWindowingModes(int[] windowingModes) throws SecurityException {
2074        try {
2075            getService().removeStacksInWindowingModes(windowingModes);
2076        } catch (RemoteException e) {
2077            throw e.rethrowFromSystemServer();
2078        }
2079    }
2080
2081    /**
2082     * Removes stack of the activity types from the system.
2083     *
2084     * @hide
2085     */
2086    @TestApi
2087    @RequiresPermission(android.Manifest.permission.MANAGE_ACTIVITY_STACKS)
2088    public void removeStacksWithActivityTypes(int[] activityTypes) throws SecurityException {
2089        try {
2090            getService().removeStacksWithActivityTypes(activityTypes);
2091        } catch (RemoteException e) {
2092            throw e.rethrowFromSystemServer();
2093        }
2094    }
2095
2096    /**
2097     * Represents a task snapshot.
2098     * @hide
2099     */
2100    public static class TaskSnapshot implements Parcelable {
2101
2102        private final GraphicBuffer mSnapshot;
2103        private final int mOrientation;
2104        private final Rect mContentInsets;
2105        private final boolean mReducedResolution;
2106        private final boolean mIsRealSnapshot;
2107        private final float mScale;
2108
2109        public TaskSnapshot(GraphicBuffer snapshot, int orientation, Rect contentInsets,
2110                boolean reducedResolution, float scale, boolean isRealSnapshot) {
2111            mSnapshot = snapshot;
2112            mOrientation = orientation;
2113            mContentInsets = new Rect(contentInsets);
2114            mReducedResolution = reducedResolution;
2115            mScale = scale;
2116            mIsRealSnapshot = isRealSnapshot;
2117        }
2118
2119        private TaskSnapshot(Parcel source) {
2120            mSnapshot = source.readParcelable(null /* classLoader */);
2121            mOrientation = source.readInt();
2122            mContentInsets = source.readParcelable(null /* classLoader */);
2123            mReducedResolution = source.readBoolean();
2124            mScale = source.readFloat();
2125            mIsRealSnapshot = source.readBoolean();
2126        }
2127
2128        /**
2129         * @return The graphic buffer representing the screenshot.
2130         */
2131        public GraphicBuffer getSnapshot() {
2132            return mSnapshot;
2133        }
2134
2135        /**
2136         * @return The screen orientation the screenshot was taken in.
2137         */
2138        public int getOrientation() {
2139            return mOrientation;
2140        }
2141
2142        /**
2143         * @return The system/content insets on the snapshot. These can be clipped off in order to
2144         *         remove any areas behind system bars in the snapshot.
2145         */
2146        public Rect getContentInsets() {
2147            return mContentInsets;
2148        }
2149
2150        /**
2151         * @return Whether this snapshot is a down-sampled version of the full resolution.
2152         */
2153        public boolean isReducedResolution() {
2154            return mReducedResolution;
2155        }
2156
2157        /**
2158         * @return Whether or not the snapshot is a real snapshot or an app-theme generated snapshot
2159         * due to the task having a secure window or having previews disabled.
2160         */
2161        public boolean isRealSnapshot() {
2162            return mIsRealSnapshot;
2163        }
2164
2165        /**
2166         * @return The scale this snapshot was taken in.
2167         */
2168        public float getScale() {
2169            return mScale;
2170        }
2171
2172        @Override
2173        public int describeContents() {
2174            return 0;
2175        }
2176
2177        @Override
2178        public void writeToParcel(Parcel dest, int flags) {
2179            dest.writeParcelable(mSnapshot, 0);
2180            dest.writeInt(mOrientation);
2181            dest.writeParcelable(mContentInsets, 0);
2182            dest.writeBoolean(mReducedResolution);
2183            dest.writeFloat(mScale);
2184            dest.writeBoolean(mIsRealSnapshot);
2185        }
2186
2187        @Override
2188        public String toString() {
2189            return "TaskSnapshot{mSnapshot=" + mSnapshot + " mOrientation=" + mOrientation
2190                    + " mContentInsets=" + mContentInsets.toShortString()
2191                    + " mReducedResolution=" + mReducedResolution + " mScale=" + mScale
2192                    + " mIsRealSnapshot=" + mIsRealSnapshot;
2193        }
2194
2195        public static final Creator<TaskSnapshot> CREATOR = new Creator<TaskSnapshot>() {
2196            public TaskSnapshot createFromParcel(Parcel source) {
2197                return new TaskSnapshot(source);
2198            }
2199            public TaskSnapshot[] newArray(int size) {
2200                return new TaskSnapshot[size];
2201            }
2202        };
2203    }
2204
2205    /** @hide */
2206    @IntDef(flag = true, prefix = { "MOVE_TASK_" }, value = {
2207            MOVE_TASK_WITH_HOME,
2208            MOVE_TASK_NO_USER_ACTION,
2209    })
2210    @Retention(RetentionPolicy.SOURCE)
2211    public @interface MoveTaskFlags {}
2212
2213    /**
2214     * Flag for {@link #moveTaskToFront(int, int)}: also move the "home"
2215     * activity along with the task, so it is positioned immediately behind
2216     * the task.
2217     */
2218    public static final int MOVE_TASK_WITH_HOME = 0x00000001;
2219
2220    /**
2221     * Flag for {@link #moveTaskToFront(int, int)}: don't count this as a
2222     * user-instigated action, so the current activity will not receive a
2223     * hint that the user is leaving.
2224     */
2225    public static final int MOVE_TASK_NO_USER_ACTION = 0x00000002;
2226
2227    /**
2228     * Equivalent to calling {@link #moveTaskToFront(int, int, Bundle)}
2229     * with a null options argument.
2230     *
2231     * @param taskId The identifier of the task to be moved, as found in
2232     * {@link RunningTaskInfo} or {@link RecentTaskInfo}.
2233     * @param flags Additional operational flags.
2234     */
2235    @RequiresPermission(android.Manifest.permission.REORDER_TASKS)
2236    public void moveTaskToFront(int taskId, @MoveTaskFlags int flags) {
2237        moveTaskToFront(taskId, flags, null);
2238    }
2239
2240    /**
2241     * Ask that the task associated with a given task ID be moved to the
2242     * front of the stack, so it is now visible to the user.
2243     *
2244     * @param taskId The identifier of the task to be moved, as found in
2245     * {@link RunningTaskInfo} or {@link RecentTaskInfo}.
2246     * @param flags Additional operational flags.
2247     * @param options Additional options for the operation, either null or
2248     * as per {@link Context#startActivity(Intent, android.os.Bundle)
2249     * Context.startActivity(Intent, Bundle)}.
2250     */
2251    @RequiresPermission(android.Manifest.permission.REORDER_TASKS)
2252    public void moveTaskToFront(int taskId, @MoveTaskFlags int flags, Bundle options) {
2253        try {
2254            getService().moveTaskToFront(taskId, flags, options);
2255        } catch (RemoteException e) {
2256            throw e.rethrowFromSystemServer();
2257        }
2258    }
2259
2260    /**
2261     * Information you can retrieve about a particular Service that is
2262     * currently running in the system.
2263     */
2264    public static class RunningServiceInfo implements Parcelable {
2265        /**
2266         * The service component.
2267         */
2268        public ComponentName service;
2269
2270        /**
2271         * If non-zero, this is the process the service is running in.
2272         */
2273        public int pid;
2274
2275        /**
2276         * The UID that owns this service.
2277         */
2278        public int uid;
2279
2280        /**
2281         * The name of the process this service runs in.
2282         */
2283        public String process;
2284
2285        /**
2286         * Set to true if the service has asked to run as a foreground process.
2287         */
2288        public boolean foreground;
2289
2290        /**
2291         * The time when the service was first made active, either by someone
2292         * starting or binding to it.  This
2293         * is in units of {@link android.os.SystemClock#elapsedRealtime()}.
2294         */
2295        public long activeSince;
2296
2297        /**
2298         * Set to true if this service has been explicitly started.
2299         */
2300        public boolean started;
2301
2302        /**
2303         * Number of clients connected to the service.
2304         */
2305        public int clientCount;
2306
2307        /**
2308         * Number of times the service's process has crashed while the service
2309         * is running.
2310         */
2311        public int crashCount;
2312
2313        /**
2314         * The time when there was last activity in the service (either
2315         * explicit requests to start it or clients binding to it).  This
2316         * is in units of {@link android.os.SystemClock#uptimeMillis()}.
2317         */
2318        public long lastActivityTime;
2319
2320        /**
2321         * If non-zero, this service is not currently running, but scheduled to
2322         * restart at the given time.
2323         */
2324        public long restarting;
2325
2326        /**
2327         * Bit for {@link #flags}: set if this service has been
2328         * explicitly started.
2329         */
2330        public static final int FLAG_STARTED = 1<<0;
2331
2332        /**
2333         * Bit for {@link #flags}: set if the service has asked to
2334         * run as a foreground process.
2335         */
2336        public static final int FLAG_FOREGROUND = 1<<1;
2337
2338        /**
2339         * Bit for {@link #flags}: set if the service is running in a
2340         * core system process.
2341         */
2342        public static final int FLAG_SYSTEM_PROCESS = 1<<2;
2343
2344        /**
2345         * Bit for {@link #flags}: set if the service is running in a
2346         * persistent process.
2347         */
2348        public static final int FLAG_PERSISTENT_PROCESS = 1<<3;
2349
2350        /**
2351         * Running flags.
2352         */
2353        public int flags;
2354
2355        /**
2356         * For special services that are bound to by system code, this is
2357         * the package that holds the binding.
2358         */
2359        public String clientPackage;
2360
2361        /**
2362         * For special services that are bound to by system code, this is
2363         * a string resource providing a user-visible label for who the
2364         * client is.
2365         */
2366        public int clientLabel;
2367
2368        public RunningServiceInfo() {
2369        }
2370
2371        public int describeContents() {
2372            return 0;
2373        }
2374
2375        public void writeToParcel(Parcel dest, int flags) {
2376            ComponentName.writeToParcel(service, dest);
2377            dest.writeInt(pid);
2378            dest.writeInt(uid);
2379            dest.writeString(process);
2380            dest.writeInt(foreground ? 1 : 0);
2381            dest.writeLong(activeSince);
2382            dest.writeInt(started ? 1 : 0);
2383            dest.writeInt(clientCount);
2384            dest.writeInt(crashCount);
2385            dest.writeLong(lastActivityTime);
2386            dest.writeLong(restarting);
2387            dest.writeInt(this.flags);
2388            dest.writeString(clientPackage);
2389            dest.writeInt(clientLabel);
2390        }
2391
2392        public void readFromParcel(Parcel source) {
2393            service = ComponentName.readFromParcel(source);
2394            pid = source.readInt();
2395            uid = source.readInt();
2396            process = source.readString();
2397            foreground = source.readInt() != 0;
2398            activeSince = source.readLong();
2399            started = source.readInt() != 0;
2400            clientCount = source.readInt();
2401            crashCount = source.readInt();
2402            lastActivityTime = source.readLong();
2403            restarting = source.readLong();
2404            flags = source.readInt();
2405            clientPackage = source.readString();
2406            clientLabel = source.readInt();
2407        }
2408
2409        public static final Creator<RunningServiceInfo> CREATOR = new Creator<RunningServiceInfo>() {
2410            public RunningServiceInfo createFromParcel(Parcel source) {
2411                return new RunningServiceInfo(source);
2412            }
2413            public RunningServiceInfo[] newArray(int size) {
2414                return new RunningServiceInfo[size];
2415            }
2416        };
2417
2418        private RunningServiceInfo(Parcel source) {
2419            readFromParcel(source);
2420        }
2421    }
2422
2423    /**
2424     * Return a list of the services that are currently running.
2425     *
2426     * <p><b>Note: this method is only intended for debugging or implementing
2427     * service management type user interfaces.</b></p>
2428     *
2429     * @deprecated As of {@link android.os.Build.VERSION_CODES#O}, this method
2430     * is no longer available to third party applications.  For backwards compatibility,
2431     * it will still return the caller's own services.
2432     *
2433     * @param maxNum The maximum number of entries to return in the list.  The
2434     * actual number returned may be smaller, depending on how many services
2435     * are running.
2436     *
2437     * @return Returns a list of RunningServiceInfo records describing each of
2438     * the running tasks.
2439     */
2440    @Deprecated
2441    public List<RunningServiceInfo> getRunningServices(int maxNum)
2442            throws SecurityException {
2443        try {
2444            return getService()
2445                    .getServices(maxNum, 0);
2446        } catch (RemoteException e) {
2447            throw e.rethrowFromSystemServer();
2448        }
2449    }
2450
2451    /**
2452     * Returns a PendingIntent you can start to show a control panel for the
2453     * given running service.  If the service does not have a control panel,
2454     * null is returned.
2455     */
2456    public PendingIntent getRunningServiceControlPanel(ComponentName service)
2457            throws SecurityException {
2458        try {
2459            return getService()
2460                    .getRunningServiceControlPanel(service);
2461        } catch (RemoteException e) {
2462            throw e.rethrowFromSystemServer();
2463        }
2464    }
2465
2466    /**
2467     * Information you can retrieve about the available memory through
2468     * {@link ActivityManager#getMemoryInfo}.
2469     */
2470    public static class MemoryInfo implements Parcelable {
2471        /**
2472         * The available memory on the system.  This number should not
2473         * be considered absolute: due to the nature of the kernel, a significant
2474         * portion of this memory is actually in use and needed for the overall
2475         * system to run well.
2476         */
2477        public long availMem;
2478
2479        /**
2480         * The total memory accessible by the kernel.  This is basically the
2481         * RAM size of the device, not including below-kernel fixed allocations
2482         * like DMA buffers, RAM for the baseband CPU, etc.
2483         */
2484        public long totalMem;
2485
2486        /**
2487         * The threshold of {@link #availMem} at which we consider memory to be
2488         * low and start killing background services and other non-extraneous
2489         * processes.
2490         */
2491        public long threshold;
2492
2493        /**
2494         * Set to true if the system considers itself to currently be in a low
2495         * memory situation.
2496         */
2497        public boolean lowMemory;
2498
2499        /** @hide */
2500        public long hiddenAppThreshold;
2501        /** @hide */
2502        public long secondaryServerThreshold;
2503        /** @hide */
2504        public long visibleAppThreshold;
2505        /** @hide */
2506        public long foregroundAppThreshold;
2507
2508        public MemoryInfo() {
2509        }
2510
2511        public int describeContents() {
2512            return 0;
2513        }
2514
2515        public void writeToParcel(Parcel dest, int flags) {
2516            dest.writeLong(availMem);
2517            dest.writeLong(totalMem);
2518            dest.writeLong(threshold);
2519            dest.writeInt(lowMemory ? 1 : 0);
2520            dest.writeLong(hiddenAppThreshold);
2521            dest.writeLong(secondaryServerThreshold);
2522            dest.writeLong(visibleAppThreshold);
2523            dest.writeLong(foregroundAppThreshold);
2524        }
2525
2526        public void readFromParcel(Parcel source) {
2527            availMem = source.readLong();
2528            totalMem = source.readLong();
2529            threshold = source.readLong();
2530            lowMemory = source.readInt() != 0;
2531            hiddenAppThreshold = source.readLong();
2532            secondaryServerThreshold = source.readLong();
2533            visibleAppThreshold = source.readLong();
2534            foregroundAppThreshold = source.readLong();
2535        }
2536
2537        public static final Creator<MemoryInfo> CREATOR
2538                = new Creator<MemoryInfo>() {
2539            public MemoryInfo createFromParcel(Parcel source) {
2540                return new MemoryInfo(source);
2541            }
2542            public MemoryInfo[] newArray(int size) {
2543                return new MemoryInfo[size];
2544            }
2545        };
2546
2547        private MemoryInfo(Parcel source) {
2548            readFromParcel(source);
2549        }
2550    }
2551
2552    /**
2553     * Return general information about the memory state of the system.  This
2554     * can be used to help decide how to manage your own memory, though note
2555     * that polling is not recommended and
2556     * {@link android.content.ComponentCallbacks2#onTrimMemory(int)
2557     * ComponentCallbacks2.onTrimMemory(int)} is the preferred way to do this.
2558     * Also see {@link #getMyMemoryState} for how to retrieve the current trim
2559     * level of your process as needed, which gives a better hint for how to
2560     * manage its memory.
2561     */
2562    public void getMemoryInfo(MemoryInfo outInfo) {
2563        try {
2564            getService().getMemoryInfo(outInfo);
2565        } catch (RemoteException e) {
2566            throw e.rethrowFromSystemServer();
2567        }
2568    }
2569
2570    /**
2571     * Information you can retrieve about an ActivityStack in the system.
2572     * @hide
2573     */
2574    public static class StackInfo implements Parcelable {
2575        public int stackId;
2576        public Rect bounds = new Rect();
2577        public int[] taskIds;
2578        public String[] taskNames;
2579        public Rect[] taskBounds;
2580        public int[] taskUserIds;
2581        public ComponentName topActivity;
2582        public int displayId;
2583        public int userId;
2584        public boolean visible;
2585        // Index of the stack in the display's stack list, can be used for comparison of stack order
2586        public int position;
2587        /**
2588         * The full configuration the stack is currently running in.
2589         * @hide
2590         */
2591        final public Configuration configuration = new Configuration();
2592
2593        @Override
2594        public int describeContents() {
2595            return 0;
2596        }
2597
2598        @Override
2599        public void writeToParcel(Parcel dest, int flags) {
2600            dest.writeInt(stackId);
2601            dest.writeInt(bounds.left);
2602            dest.writeInt(bounds.top);
2603            dest.writeInt(bounds.right);
2604            dest.writeInt(bounds.bottom);
2605            dest.writeIntArray(taskIds);
2606            dest.writeStringArray(taskNames);
2607            final int boundsCount = taskBounds == null ? 0 : taskBounds.length;
2608            dest.writeInt(boundsCount);
2609            for (int i = 0; i < boundsCount; i++) {
2610                dest.writeInt(taskBounds[i].left);
2611                dest.writeInt(taskBounds[i].top);
2612                dest.writeInt(taskBounds[i].right);
2613                dest.writeInt(taskBounds[i].bottom);
2614            }
2615            dest.writeIntArray(taskUserIds);
2616            dest.writeInt(displayId);
2617            dest.writeInt(userId);
2618            dest.writeInt(visible ? 1 : 0);
2619            dest.writeInt(position);
2620            if (topActivity != null) {
2621                dest.writeInt(1);
2622                topActivity.writeToParcel(dest, 0);
2623            } else {
2624                dest.writeInt(0);
2625            }
2626            configuration.writeToParcel(dest, flags);
2627        }
2628
2629        public void readFromParcel(Parcel source) {
2630            stackId = source.readInt();
2631            bounds = new Rect(
2632                    source.readInt(), source.readInt(), source.readInt(), source.readInt());
2633            taskIds = source.createIntArray();
2634            taskNames = source.createStringArray();
2635            final int boundsCount = source.readInt();
2636            if (boundsCount > 0) {
2637                taskBounds = new Rect[boundsCount];
2638                for (int i = 0; i < boundsCount; i++) {
2639                    taskBounds[i] = new Rect();
2640                    taskBounds[i].set(
2641                            source.readInt(), source.readInt(), source.readInt(), source.readInt());
2642                }
2643            } else {
2644                taskBounds = null;
2645            }
2646            taskUserIds = source.createIntArray();
2647            displayId = source.readInt();
2648            userId = source.readInt();
2649            visible = source.readInt() > 0;
2650            position = source.readInt();
2651            if (source.readInt() > 0) {
2652                topActivity = ComponentName.readFromParcel(source);
2653            }
2654            configuration.readFromParcel(source);
2655        }
2656
2657        public static final Creator<StackInfo> CREATOR = new Creator<StackInfo>() {
2658            @Override
2659            public StackInfo createFromParcel(Parcel source) {
2660                return new StackInfo(source);
2661            }
2662            @Override
2663            public StackInfo[] newArray(int size) {
2664                return new StackInfo[size];
2665            }
2666        };
2667
2668        public StackInfo() {
2669        }
2670
2671        private StackInfo(Parcel source) {
2672            readFromParcel(source);
2673        }
2674
2675        public String toString(String prefix) {
2676            StringBuilder sb = new StringBuilder(256);
2677            sb.append(prefix); sb.append("Stack id="); sb.append(stackId);
2678                    sb.append(" bounds="); sb.append(bounds.toShortString());
2679                    sb.append(" displayId="); sb.append(displayId);
2680                    sb.append(" userId="); sb.append(userId);
2681                    sb.append("\n");
2682                    sb.append(" configuration="); sb.append(configuration);
2683                    sb.append("\n");
2684            prefix = prefix + "  ";
2685            for (int i = 0; i < taskIds.length; ++i) {
2686                sb.append(prefix); sb.append("taskId="); sb.append(taskIds[i]);
2687                        sb.append(": "); sb.append(taskNames[i]);
2688                        if (taskBounds != null) {
2689                            sb.append(" bounds="); sb.append(taskBounds[i].toShortString());
2690                        }
2691                        sb.append(" userId=").append(taskUserIds[i]);
2692                        sb.append(" visible=").append(visible);
2693                        if (topActivity != null) {
2694                            sb.append(" topActivity=").append(topActivity);
2695                        }
2696                        sb.append("\n");
2697            }
2698            return sb.toString();
2699        }
2700
2701        @Override
2702        public String toString() {
2703            return toString("");
2704        }
2705    }
2706
2707    /**
2708     * @hide
2709     */
2710    @RequiresPermission(anyOf={Manifest.permission.CLEAR_APP_USER_DATA,
2711            Manifest.permission.ACCESS_INSTANT_APPS})
2712    public boolean clearApplicationUserData(String packageName, IPackageDataObserver observer) {
2713        try {
2714            return getService().clearApplicationUserData(packageName, false,
2715                    observer, mContext.getUserId());
2716        } catch (RemoteException e) {
2717            throw e.rethrowFromSystemServer();
2718        }
2719    }
2720
2721    /**
2722     * Permits an application to erase its own data from disk.  This is equivalent to
2723     * the user choosing to clear the app's data from within the device settings UI.  It
2724     * erases all dynamic data associated with the app -- its private data and data in its
2725     * private area on external storage -- but does not remove the installed application
2726     * itself, nor any OBB files. It also revokes all runtime permissions that the app has acquired,
2727     * clears all notifications and removes all Uri grants related to this application.
2728     *
2729     * @return {@code true} if the application successfully requested that the application's
2730     *     data be erased; {@code false} otherwise.
2731     */
2732    public boolean clearApplicationUserData() {
2733        return clearApplicationUserData(mContext.getPackageName(), null);
2734    }
2735
2736
2737    /**
2738     * Permits an application to get the persistent URI permissions granted to another.
2739     *
2740     * <p>Typically called by Settings or DocumentsUI, requires
2741     * {@code GET_APP_GRANTED_URI_PERMISSIONS}.
2742     *
2743     * @param packageName application to look for the granted permissions, or {@code null} to get
2744     * granted permissions for all applications
2745     * @return list of granted URI permissions
2746     *
2747     * @hide
2748     */
2749    public ParceledListSlice<GrantedUriPermission> getGrantedUriPermissions(
2750            @Nullable String packageName) {
2751        try {
2752            @SuppressWarnings("unchecked")
2753            final ParceledListSlice<GrantedUriPermission> castedList = getService()
2754                    .getGrantedUriPermissions(packageName, mContext.getUserId());
2755            return castedList;
2756        } catch (RemoteException e) {
2757            throw e.rethrowFromSystemServer();
2758        }
2759    }
2760
2761    /**
2762     * Permits an application to clear the persistent URI permissions granted to another.
2763     *
2764     * <p>Typically called by Settings, requires {@code CLEAR_APP_GRANTED_URI_PERMISSIONS}.
2765     *
2766     * @param packageName application to clear its granted permissions
2767     *
2768     * @hide
2769     */
2770    public void clearGrantedUriPermissions(String packageName) {
2771        try {
2772            getService().clearGrantedUriPermissions(packageName,
2773                    mContext.getUserId());
2774        } catch (RemoteException e) {
2775            throw e.rethrowFromSystemServer();
2776        }
2777    }
2778
2779    /**
2780     * Information you can retrieve about any processes that are in an error condition.
2781     */
2782    public static class ProcessErrorStateInfo implements Parcelable {
2783        /**
2784         * Condition codes
2785         */
2786        public static final int NO_ERROR = 0;
2787        public static final int CRASHED = 1;
2788        public static final int NOT_RESPONDING = 2;
2789
2790        /**
2791         * The condition that the process is in.
2792         */
2793        public int condition;
2794
2795        /**
2796         * The process name in which the crash or error occurred.
2797         */
2798        public String processName;
2799
2800        /**
2801         * The pid of this process; 0 if none
2802         */
2803        public int pid;
2804
2805        /**
2806         * The kernel user-ID that has been assigned to this process;
2807         * currently this is not a unique ID (multiple applications can have
2808         * the same uid).
2809         */
2810        public int uid;
2811
2812        /**
2813         * The activity name associated with the error, if known.  May be null.
2814         */
2815        public String tag;
2816
2817        /**
2818         * A short message describing the error condition.
2819         */
2820        public String shortMsg;
2821
2822        /**
2823         * A long message describing the error condition.
2824         */
2825        public String longMsg;
2826
2827        /**
2828         * The stack trace where the error originated.  May be null.
2829         */
2830        public String stackTrace;
2831
2832        /**
2833         * to be deprecated: This value will always be null.
2834         */
2835        public byte[] crashData = null;
2836
2837        public ProcessErrorStateInfo() {
2838        }
2839
2840        @Override
2841        public int describeContents() {
2842            return 0;
2843        }
2844
2845        @Override
2846        public void writeToParcel(Parcel dest, int flags) {
2847            dest.writeInt(condition);
2848            dest.writeString(processName);
2849            dest.writeInt(pid);
2850            dest.writeInt(uid);
2851            dest.writeString(tag);
2852            dest.writeString(shortMsg);
2853            dest.writeString(longMsg);
2854            dest.writeString(stackTrace);
2855        }
2856
2857        public void readFromParcel(Parcel source) {
2858            condition = source.readInt();
2859            processName = source.readString();
2860            pid = source.readInt();
2861            uid = source.readInt();
2862            tag = source.readString();
2863            shortMsg = source.readString();
2864            longMsg = source.readString();
2865            stackTrace = source.readString();
2866        }
2867
2868        public static final Creator<ProcessErrorStateInfo> CREATOR =
2869                new Creator<ProcessErrorStateInfo>() {
2870            public ProcessErrorStateInfo createFromParcel(Parcel source) {
2871                return new ProcessErrorStateInfo(source);
2872            }
2873            public ProcessErrorStateInfo[] newArray(int size) {
2874                return new ProcessErrorStateInfo[size];
2875            }
2876        };
2877
2878        private ProcessErrorStateInfo(Parcel source) {
2879            readFromParcel(source);
2880        }
2881    }
2882
2883    /**
2884     * Returns a list of any processes that are currently in an error condition.  The result
2885     * will be null if all processes are running properly at this time.
2886     *
2887     * @return Returns a list of ProcessErrorStateInfo records, or null if there are no
2888     * current error conditions (it will not return an empty list).  This list ordering is not
2889     * specified.
2890     */
2891    public List<ProcessErrorStateInfo> getProcessesInErrorState() {
2892        try {
2893            return getService().getProcessesInErrorState();
2894        } catch (RemoteException e) {
2895            throw e.rethrowFromSystemServer();
2896        }
2897    }
2898
2899    /**
2900     * Information you can retrieve about a running process.
2901     */
2902    public static class RunningAppProcessInfo implements Parcelable {
2903        /**
2904         * The name of the process that this object is associated with
2905         */
2906        public String processName;
2907
2908        /**
2909         * The pid of this process; 0 if none
2910         */
2911        public int pid;
2912
2913        /**
2914         * The user id of this process.
2915         */
2916        public int uid;
2917
2918        /**
2919         * All packages that have been loaded into the process.
2920         */
2921        public String pkgList[];
2922
2923        /**
2924         * Constant for {@link #flags}: this is an app that is unable to
2925         * correctly save its state when going to the background,
2926         * so it can not be killed while in the background.
2927         * @hide
2928         */
2929        public static final int FLAG_CANT_SAVE_STATE = 1<<0;
2930
2931        /**
2932         * Constant for {@link #flags}: this process is associated with a
2933         * persistent system app.
2934         * @hide
2935         */
2936        public static final int FLAG_PERSISTENT = 1<<1;
2937
2938        /**
2939         * Constant for {@link #flags}: this process is associated with a
2940         * persistent system app.
2941         * @hide
2942         */
2943        public static final int FLAG_HAS_ACTIVITIES = 1<<2;
2944
2945        /**
2946         * Flags of information.  May be any of
2947         * {@link #FLAG_CANT_SAVE_STATE}.
2948         * @hide
2949         */
2950        public int flags;
2951
2952        /**
2953         * Last memory trim level reported to the process: corresponds to
2954         * the values supplied to {@link android.content.ComponentCallbacks2#onTrimMemory(int)
2955         * ComponentCallbacks2.onTrimMemory(int)}.
2956         */
2957        public int lastTrimLevel;
2958
2959        /** @hide */
2960        @IntDef(prefix = { "IMPORTANCE_" }, value = {
2961                IMPORTANCE_FOREGROUND,
2962                IMPORTANCE_FOREGROUND_SERVICE,
2963                IMPORTANCE_TOP_SLEEPING,
2964                IMPORTANCE_VISIBLE,
2965                IMPORTANCE_PERCEPTIBLE,
2966                IMPORTANCE_CANT_SAVE_STATE,
2967                IMPORTANCE_SERVICE,
2968                IMPORTANCE_CACHED,
2969                IMPORTANCE_GONE,
2970        })
2971        @Retention(RetentionPolicy.SOURCE)
2972        public @interface Importance {}
2973
2974        /**
2975         * Constant for {@link #importance}: This process is running the
2976         * foreground UI; that is, it is the thing currently at the top of the screen
2977         * that the user is interacting with.
2978         */
2979        public static final int IMPORTANCE_FOREGROUND = 100;
2980
2981        /**
2982         * Constant for {@link #importance}: This process is running a foreground
2983         * service, for example to perform music playback even while the user is
2984         * not immediately in the app.  This generally indicates that the process
2985         * is doing something the user actively cares about.
2986         */
2987        public static final int IMPORTANCE_FOREGROUND_SERVICE = 125;
2988
2989        /**
2990         * @deprecated Pre-{@link android.os.Build.VERSION_CODES#P} version of
2991         * {@link #IMPORTANCE_TOP_SLEEPING}.  As of Android
2992         * {@link android.os.Build.VERSION_CODES#P}, this is considered much less
2993         * important since we want to reduce what apps can do when the screen is off.
2994         */
2995        @Deprecated
2996        public static final int IMPORTANCE_TOP_SLEEPING_PRE_28 = 150;
2997
2998        /**
2999         * Constant for {@link #importance}: This process is running something
3000         * that is actively visible to the user, though not in the immediate
3001         * foreground.  This may be running a window that is behind the current
3002         * foreground (so paused and with its state saved, not interacting with
3003         * the user, but visible to them to some degree); it may also be running
3004         * other services under the system's control that it inconsiders important.
3005         */
3006        public static final int IMPORTANCE_VISIBLE = 200;
3007
3008        /**
3009         * Constant for {@link #importance}: {@link #IMPORTANCE_PERCEPTIBLE} had this wrong value
3010         * before {@link Build.VERSION_CODES#O}.  Since the {@link Build.VERSION_CODES#O} SDK,
3011         * the value of {@link #IMPORTANCE_PERCEPTIBLE} has been fixed.
3012         *
3013         * <p>The system will return this value instead of {@link #IMPORTANCE_PERCEPTIBLE}
3014         * on Android versions below {@link Build.VERSION_CODES#O}.
3015         *
3016         * <p>On Android version {@link Build.VERSION_CODES#O} and later, this value will still be
3017         * returned for apps with the target API level below {@link Build.VERSION_CODES#O}.
3018         * For apps targeting version {@link Build.VERSION_CODES#O} and later,
3019         * the correct value {@link #IMPORTANCE_PERCEPTIBLE} will be returned.
3020         */
3021        public static final int IMPORTANCE_PERCEPTIBLE_PRE_26 = 130;
3022
3023        /**
3024         * Constant for {@link #importance}: This process is not something the user
3025         * is directly aware of, but is otherwise perceptible to them to some degree.
3026         */
3027        public static final int IMPORTANCE_PERCEPTIBLE = 230;
3028
3029        /**
3030         * Constant for {@link #importance}: {@link #IMPORTANCE_CANT_SAVE_STATE} had
3031         * this wrong value
3032         * before {@link Build.VERSION_CODES#O}.  Since the {@link Build.VERSION_CODES#O} SDK,
3033         * the value of {@link #IMPORTANCE_CANT_SAVE_STATE} has been fixed.
3034         *
3035         * <p>The system will return this value instead of {@link #IMPORTANCE_CANT_SAVE_STATE}
3036         * on Android versions below {@link Build.VERSION_CODES#O}.
3037         *
3038         * <p>On Android version {@link Build.VERSION_CODES#O} after, this value will still be
3039         * returned for apps with the target API level below {@link Build.VERSION_CODES#O}.
3040         * For apps targeting version {@link Build.VERSION_CODES#O} and later,
3041         * the correct value {@link #IMPORTANCE_CANT_SAVE_STATE} will be returned.
3042         *
3043         * @hide
3044         */
3045        public static final int IMPORTANCE_CANT_SAVE_STATE_PRE_26 = 170;
3046
3047        /**
3048         * Constant for {@link #importance}: This process is contains services
3049         * that should remain running.  These are background services apps have
3050         * started, not something the user is aware of, so they may be killed by
3051         * the system relatively freely (though it is generally desired that they
3052         * stay running as long as they want to).
3053         */
3054        public static final int IMPORTANCE_SERVICE = 300;
3055
3056        /**
3057         * Constant for {@link #importance}: This process is running the foreground
3058         * UI, but the device is asleep so it is not visible to the user.  Though the
3059         * system will try hard to keep its process from being killed, in all other
3060         * ways we consider it a kind of cached process, with the limitations that go
3061         * along with that state: network access, running background services, etc.
3062         */
3063        public static final int IMPORTANCE_TOP_SLEEPING = 325;
3064
3065        /**
3066         * Constant for {@link #importance}: This process is running an
3067         * application that can not save its state, and thus can't be killed
3068         * while in the background.  This will be used with apps that have
3069         * {@link android.R.attr#cantSaveState} set on their application tag.
3070         */
3071        public static final int IMPORTANCE_CANT_SAVE_STATE = 350;
3072
3073        /**
3074         * Constant for {@link #importance}: This process process contains
3075         * cached code that is expendable, not actively running any app components
3076         * we care about.
3077         */
3078        public static final int IMPORTANCE_CACHED = 400;
3079
3080        /**
3081         * @deprecated Renamed to {@link #IMPORTANCE_CACHED}.
3082         */
3083        public static final int IMPORTANCE_BACKGROUND = IMPORTANCE_CACHED;
3084
3085        /**
3086         * Constant for {@link #importance}: This process is empty of any
3087         * actively running code.
3088         * @deprecated This value is no longer reported, use {@link #IMPORTANCE_CACHED} instead.
3089         */
3090        @Deprecated
3091        public static final int IMPORTANCE_EMPTY = 500;
3092
3093        /**
3094         * Constant for {@link #importance}: This process does not exist.
3095         */
3096        public static final int IMPORTANCE_GONE = 1000;
3097
3098        /**
3099         * Convert a proc state to the correspondent IMPORTANCE_* constant.  If the return value
3100         * will be passed to a client, use {@link #procStateToImportanceForClient}.
3101         * @hide
3102         */
3103        public static @Importance int procStateToImportance(int procState) {
3104            if (procState == PROCESS_STATE_NONEXISTENT) {
3105                return IMPORTANCE_GONE;
3106            } else if (procState >= PROCESS_STATE_HOME) {
3107                return IMPORTANCE_CACHED;
3108            } else if (procState == PROCESS_STATE_HEAVY_WEIGHT) {
3109                return IMPORTANCE_CANT_SAVE_STATE;
3110            } else if (procState >= PROCESS_STATE_TOP_SLEEPING) {
3111                return IMPORTANCE_TOP_SLEEPING;
3112            } else if (procState >= PROCESS_STATE_SERVICE) {
3113                return IMPORTANCE_SERVICE;
3114            } else if (procState >= PROCESS_STATE_TRANSIENT_BACKGROUND) {
3115                return IMPORTANCE_PERCEPTIBLE;
3116            } else if (procState >= PROCESS_STATE_IMPORTANT_FOREGROUND) {
3117                return IMPORTANCE_VISIBLE;
3118            } else if (procState >= PROCESS_STATE_FOREGROUND_SERVICE) {
3119                return IMPORTANCE_FOREGROUND_SERVICE;
3120            } else {
3121                return IMPORTANCE_FOREGROUND;
3122            }
3123        }
3124
3125        /**
3126         * Convert a proc state to the correspondent IMPORTANCE_* constant for a client represented
3127         * by a given {@link Context}, with converting {@link #IMPORTANCE_PERCEPTIBLE}
3128         * and {@link #IMPORTANCE_CANT_SAVE_STATE} to the corresponding "wrong" value if the
3129         * client's target SDK < {@link VERSION_CODES#O}.
3130         * @hide
3131         */
3132        public static @Importance int procStateToImportanceForClient(int procState,
3133                Context clientContext) {
3134            return procStateToImportanceForTargetSdk(procState,
3135                    clientContext.getApplicationInfo().targetSdkVersion);
3136        }
3137
3138        /**
3139         * See {@link #procStateToImportanceForClient}.
3140         * @hide
3141         */
3142        public static @Importance int procStateToImportanceForTargetSdk(int procState,
3143                int targetSdkVersion) {
3144            final int importance = procStateToImportance(procState);
3145
3146            // For pre O apps, convert to the old, wrong values.
3147            if (targetSdkVersion < VERSION_CODES.O) {
3148                switch (importance) {
3149                    case IMPORTANCE_PERCEPTIBLE:
3150                        return IMPORTANCE_PERCEPTIBLE_PRE_26;
3151                    case IMPORTANCE_TOP_SLEEPING:
3152                        return IMPORTANCE_TOP_SLEEPING_PRE_28;
3153                    case IMPORTANCE_CANT_SAVE_STATE:
3154                        return IMPORTANCE_CANT_SAVE_STATE_PRE_26;
3155                }
3156            }
3157            return importance;
3158        }
3159
3160        /** @hide */
3161        public static int importanceToProcState(@Importance int importance) {
3162            if (importance == IMPORTANCE_GONE) {
3163                return PROCESS_STATE_NONEXISTENT;
3164            } else if (importance >= IMPORTANCE_CACHED) {
3165                return PROCESS_STATE_HOME;
3166            } else if (importance >= IMPORTANCE_CANT_SAVE_STATE) {
3167                return PROCESS_STATE_HEAVY_WEIGHT;
3168            } else if (importance >= IMPORTANCE_TOP_SLEEPING) {
3169                return PROCESS_STATE_TOP_SLEEPING;
3170            } else if (importance >= IMPORTANCE_SERVICE) {
3171                return PROCESS_STATE_SERVICE;
3172            } else if (importance >= IMPORTANCE_PERCEPTIBLE) {
3173                return PROCESS_STATE_TRANSIENT_BACKGROUND;
3174            } else if (importance >= IMPORTANCE_VISIBLE) {
3175                return PROCESS_STATE_IMPORTANT_FOREGROUND;
3176            } else if (importance >= IMPORTANCE_TOP_SLEEPING_PRE_28) {
3177                return PROCESS_STATE_IMPORTANT_FOREGROUND;
3178            } else if (importance >= IMPORTANCE_FOREGROUND_SERVICE) {
3179                return PROCESS_STATE_FOREGROUND_SERVICE;
3180            } else {
3181                return PROCESS_STATE_TOP;
3182            }
3183        }
3184
3185        /**
3186         * The relative importance level that the system places on this process.
3187         * These constants are numbered so that "more important" values are
3188         * always smaller than "less important" values.
3189         */
3190        public @Importance int importance;
3191
3192        /**
3193         * An additional ordering within a particular {@link #importance}
3194         * category, providing finer-grained information about the relative
3195         * utility of processes within a category.  This number means nothing
3196         * except that a smaller values are more recently used (and thus
3197         * more important).  Currently an LRU value is only maintained for
3198         * the {@link #IMPORTANCE_CACHED} category, though others may
3199         * be maintained in the future.
3200         */
3201        public int lru;
3202
3203        /**
3204         * Constant for {@link #importanceReasonCode}: nothing special has
3205         * been specified for the reason for this level.
3206         */
3207        public static final int REASON_UNKNOWN = 0;
3208
3209        /**
3210         * Constant for {@link #importanceReasonCode}: one of the application's
3211         * content providers is being used by another process.  The pid of
3212         * the client process is in {@link #importanceReasonPid} and the
3213         * target provider in this process is in
3214         * {@link #importanceReasonComponent}.
3215         */
3216        public static final int REASON_PROVIDER_IN_USE = 1;
3217
3218        /**
3219         * Constant for {@link #importanceReasonCode}: one of the application's
3220         * content providers is being used by another process.  The pid of
3221         * the client process is in {@link #importanceReasonPid} and the
3222         * target provider in this process is in
3223         * {@link #importanceReasonComponent}.
3224         */
3225        public static final int REASON_SERVICE_IN_USE = 2;
3226
3227        /**
3228         * The reason for {@link #importance}, if any.
3229         */
3230        public int importanceReasonCode;
3231
3232        /**
3233         * For the specified values of {@link #importanceReasonCode}, this
3234         * is the process ID of the other process that is a client of this
3235         * process.  This will be 0 if no other process is using this one.
3236         */
3237        public int importanceReasonPid;
3238
3239        /**
3240         * For the specified values of {@link #importanceReasonCode}, this
3241         * is the name of the component that is being used in this process.
3242         */
3243        public ComponentName importanceReasonComponent;
3244
3245        /**
3246         * When {@link #importanceReasonPid} is non-0, this is the importance
3247         * of the other pid. @hide
3248         */
3249        public int importanceReasonImportance;
3250
3251        /**
3252         * Current process state, as per PROCESS_STATE_* constants.
3253         * @hide
3254         */
3255        public int processState;
3256
3257        public RunningAppProcessInfo() {
3258            importance = IMPORTANCE_FOREGROUND;
3259            importanceReasonCode = REASON_UNKNOWN;
3260            processState = PROCESS_STATE_IMPORTANT_FOREGROUND;
3261        }
3262
3263        public RunningAppProcessInfo(String pProcessName, int pPid, String pArr[]) {
3264            processName = pProcessName;
3265            pid = pPid;
3266            pkgList = pArr;
3267        }
3268
3269        public int describeContents() {
3270            return 0;
3271        }
3272
3273        public void writeToParcel(Parcel dest, int flags) {
3274            dest.writeString(processName);
3275            dest.writeInt(pid);
3276            dest.writeInt(uid);
3277            dest.writeStringArray(pkgList);
3278            dest.writeInt(this.flags);
3279            dest.writeInt(lastTrimLevel);
3280            dest.writeInt(importance);
3281            dest.writeInt(lru);
3282            dest.writeInt(importanceReasonCode);
3283            dest.writeInt(importanceReasonPid);
3284            ComponentName.writeToParcel(importanceReasonComponent, dest);
3285            dest.writeInt(importanceReasonImportance);
3286            dest.writeInt(processState);
3287        }
3288
3289        public void readFromParcel(Parcel source) {
3290            processName = source.readString();
3291            pid = source.readInt();
3292            uid = source.readInt();
3293            pkgList = source.readStringArray();
3294            flags = source.readInt();
3295            lastTrimLevel = source.readInt();
3296            importance = source.readInt();
3297            lru = source.readInt();
3298            importanceReasonCode = source.readInt();
3299            importanceReasonPid = source.readInt();
3300            importanceReasonComponent = ComponentName.readFromParcel(source);
3301            importanceReasonImportance = source.readInt();
3302            processState = source.readInt();
3303        }
3304
3305        public static final Creator<RunningAppProcessInfo> CREATOR =
3306            new Creator<RunningAppProcessInfo>() {
3307            public RunningAppProcessInfo createFromParcel(Parcel source) {
3308                return new RunningAppProcessInfo(source);
3309            }
3310            public RunningAppProcessInfo[] newArray(int size) {
3311                return new RunningAppProcessInfo[size];
3312            }
3313        };
3314
3315        private RunningAppProcessInfo(Parcel source) {
3316            readFromParcel(source);
3317        }
3318    }
3319
3320    /**
3321     * Returns a list of application processes installed on external media
3322     * that are running on the device.
3323     *
3324     * <p><b>Note: this method is only intended for debugging or building
3325     * a user-facing process management UI.</b></p>
3326     *
3327     * @return Returns a list of ApplicationInfo records, or null if none
3328     * This list ordering is not specified.
3329     * @hide
3330     */
3331    public List<ApplicationInfo> getRunningExternalApplications() {
3332        try {
3333            return getService().getRunningExternalApplications();
3334        } catch (RemoteException e) {
3335            throw e.rethrowFromSystemServer();
3336        }
3337    }
3338
3339    /**
3340     * Query whether the user has enabled background restrictions for this app.
3341     *
3342     * <p> The user may chose to do this, if they see that an app is consuming an unreasonable
3343     * amount of battery while in the background. </p>
3344     *
3345     * <p> If true, any work that the app tries to do will be aggressively restricted while it is in
3346     * the background. At a minimum, jobs and alarms will not execute and foreground services
3347     * cannot be started unless an app activity is in the foreground. </p>
3348     *
3349     * <p><b> Note that these restrictions stay in effect even when the device is charging.</b></p>
3350     *
3351     * @return true if user has enforced background restrictions for this app, false otherwise.
3352     */
3353    public boolean isBackgroundRestricted() {
3354        try {
3355            return getService().isBackgroundRestricted(mContext.getOpPackageName());
3356        } catch (RemoteException e) {
3357            throw e.rethrowFromSystemServer();
3358        }
3359    }
3360
3361    /**
3362     * Sets the memory trim mode for a process and schedules a memory trim operation.
3363     *
3364     * <p><b>Note: this method is only intended for testing framework.</b></p>
3365     *
3366     * @return Returns true if successful.
3367     * @hide
3368     */
3369    public boolean setProcessMemoryTrimLevel(String process, int userId, int level) {
3370        try {
3371            return getService().setProcessMemoryTrimLevel(process, userId,
3372                    level);
3373        } catch (RemoteException e) {
3374            throw e.rethrowFromSystemServer();
3375        }
3376    }
3377
3378    /**
3379     * Returns a list of application processes that are running on the device.
3380     *
3381     * <p><b>Note: this method is only intended for debugging or building
3382     * a user-facing process management UI.</b></p>
3383     *
3384     * @return Returns a list of RunningAppProcessInfo records, or null if there are no
3385     * running processes (it will not return an empty list).  This list ordering is not
3386     * specified.
3387     */
3388    public List<RunningAppProcessInfo> getRunningAppProcesses() {
3389        try {
3390            return getService().getRunningAppProcesses();
3391        } catch (RemoteException e) {
3392            throw e.rethrowFromSystemServer();
3393        }
3394    }
3395
3396    /**
3397     * Return the importance of a given package name, based on the processes that are
3398     * currently running.  The return value is one of the importance constants defined
3399     * in {@link RunningAppProcessInfo}, giving you the highest importance of all the
3400     * processes that this package has code running inside of.  If there are no processes
3401     * running its code, {@link RunningAppProcessInfo#IMPORTANCE_GONE} is returned.
3402     * @hide
3403     */
3404    @SystemApi @TestApi
3405    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3406    public @RunningAppProcessInfo.Importance int getPackageImportance(String packageName) {
3407        try {
3408            int procState = getService().getPackageProcessState(packageName,
3409                    mContext.getOpPackageName());
3410            return RunningAppProcessInfo.procStateToImportanceForClient(procState, mContext);
3411        } catch (RemoteException e) {
3412            throw e.rethrowFromSystemServer();
3413        }
3414    }
3415
3416    /**
3417     * Return the importance of a given uid, based on the processes that are
3418     * currently running.  The return value is one of the importance constants defined
3419     * in {@link RunningAppProcessInfo}, giving you the highest importance of all the
3420     * processes that this uid has running.  If there are no processes
3421     * running its code, {@link RunningAppProcessInfo#IMPORTANCE_GONE} is returned.
3422     * @hide
3423     */
3424    @SystemApi @TestApi
3425    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3426    public @RunningAppProcessInfo.Importance int getUidImportance(int uid) {
3427        try {
3428            int procState = getService().getUidProcessState(uid,
3429                    mContext.getOpPackageName());
3430            return RunningAppProcessInfo.procStateToImportanceForClient(procState, mContext);
3431        } catch (RemoteException e) {
3432            throw e.rethrowFromSystemServer();
3433        }
3434    }
3435
3436    /**
3437     * Callback to get reports about changes to the importance of a uid.  Use with
3438     * {@link #addOnUidImportanceListener}.
3439     * @hide
3440     */
3441    @SystemApi @TestApi
3442    public interface OnUidImportanceListener {
3443        /**
3444         * The importance if a given uid has changed.  Will be one of the importance
3445         * values in {@link RunningAppProcessInfo};
3446         * {@link RunningAppProcessInfo#IMPORTANCE_GONE IMPORTANCE_GONE} will be reported
3447         * when the uid is no longer running at all.  This callback will happen on a thread
3448         * from a thread pool, not the main UI thread.
3449         * @param uid The uid whose importance has changed.
3450         * @param importance The new importance value as per {@link RunningAppProcessInfo}.
3451         */
3452        void onUidImportance(int uid, @RunningAppProcessInfo.Importance int importance);
3453    }
3454
3455    /**
3456     * Start monitoring changes to the imoportance of uids running in the system.
3457     * @param listener The listener callback that will receive change reports.
3458     * @param importanceCutpoint The level of importance in which the caller is interested
3459     * in differences.  For example, if {@link RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE}
3460     * is used here, you will receive a call each time a uids importance transitions between
3461     * being <= {@link RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE} and
3462     * > {@link RunningAppProcessInfo#IMPORTANCE_PERCEPTIBLE}.
3463     *
3464     * <p>The caller must hold the {@link android.Manifest.permission#PACKAGE_USAGE_STATS}
3465     * permission to use this feature.</p>
3466     *
3467     * @throws IllegalArgumentException If the listener is already registered.
3468     * @throws SecurityException If the caller does not hold
3469     * {@link android.Manifest.permission#PACKAGE_USAGE_STATS}.
3470     * @hide
3471     */
3472    @SystemApi @TestApi
3473    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3474    public void addOnUidImportanceListener(OnUidImportanceListener listener,
3475            @RunningAppProcessInfo.Importance int importanceCutpoint) {
3476        synchronized (this) {
3477            if (mImportanceListeners.containsKey(listener)) {
3478                throw new IllegalArgumentException("Listener already registered: " + listener);
3479            }
3480            // TODO: implement the cut point in the system process to avoid IPCs.
3481            UidObserver observer = new UidObserver(listener, mContext);
3482            try {
3483                getService().registerUidObserver(observer,
3484                        UID_OBSERVER_PROCSTATE | UID_OBSERVER_GONE,
3485                        RunningAppProcessInfo.importanceToProcState(importanceCutpoint),
3486                        mContext.getOpPackageName());
3487            } catch (RemoteException e) {
3488                throw e.rethrowFromSystemServer();
3489            }
3490            mImportanceListeners.put(listener, observer);
3491        }
3492    }
3493
3494    /**
3495     * Remove an importance listener that was previously registered with
3496     * {@link #addOnUidImportanceListener}.
3497     *
3498     * @throws IllegalArgumentException If the listener is not registered.
3499     * @hide
3500     */
3501    @SystemApi @TestApi
3502    @RequiresPermission(Manifest.permission.PACKAGE_USAGE_STATS)
3503    public void removeOnUidImportanceListener(OnUidImportanceListener listener) {
3504        synchronized (this) {
3505            UidObserver observer = mImportanceListeners.remove(listener);
3506            if (observer == null) {
3507                throw new IllegalArgumentException("Listener not registered: " + listener);
3508            }
3509            try {
3510                getService().unregisterUidObserver(observer);
3511            } catch (RemoteException e) {
3512                throw e.rethrowFromSystemServer();
3513            }
3514        }
3515    }
3516
3517    /**
3518     * Return global memory state information for the calling process.  This
3519     * does not fill in all fields of the {@link RunningAppProcessInfo}.  The
3520     * only fields that will be filled in are
3521     * {@link RunningAppProcessInfo#pid},
3522     * {@link RunningAppProcessInfo#uid},
3523     * {@link RunningAppProcessInfo#lastTrimLevel},
3524     * {@link RunningAppProcessInfo#importance},
3525     * {@link RunningAppProcessInfo#lru}, and
3526     * {@link RunningAppProcessInfo#importanceReasonCode}.
3527     */
3528    static public void getMyMemoryState(RunningAppProcessInfo outState) {
3529        try {
3530            getService().getMyMemoryState(outState);
3531        } catch (RemoteException e) {
3532            throw e.rethrowFromSystemServer();
3533        }
3534    }
3535
3536    /**
3537     * Return information about the memory usage of one or more processes.
3538     *
3539     * <p><b>Note: this method is only intended for debugging or building
3540     * a user-facing process management UI.</b></p>
3541     *
3542     * @param pids The pids of the processes whose memory usage is to be
3543     * retrieved.
3544     * @return Returns an array of memory information, one for each
3545     * requested pid.
3546     */
3547    public Debug.MemoryInfo[] getProcessMemoryInfo(int[] pids) {
3548        try {
3549            return getService().getProcessMemoryInfo(pids);
3550        } catch (RemoteException e) {
3551            throw e.rethrowFromSystemServer();
3552        }
3553    }
3554
3555    /**
3556     * @deprecated This is now just a wrapper for
3557     * {@link #killBackgroundProcesses(String)}; the previous behavior here
3558     * is no longer available to applications because it allows them to
3559     * break other applications by removing their alarms, stopping their
3560     * services, etc.
3561     */
3562    @Deprecated
3563    public void restartPackage(String packageName) {
3564        killBackgroundProcesses(packageName);
3565    }
3566
3567    /**
3568     * Have the system immediately kill all background processes associated
3569     * with the given package.  This is the same as the kernel killing those
3570     * processes to reclaim memory; the system will take care of restarting
3571     * these processes in the future as needed.
3572     *
3573     * @param packageName The name of the package whose processes are to
3574     * be killed.
3575     */
3576    @RequiresPermission(Manifest.permission.KILL_BACKGROUND_PROCESSES)
3577    public void killBackgroundProcesses(String packageName) {
3578        try {
3579            getService().killBackgroundProcesses(packageName,
3580                    mContext.getUserId());
3581        } catch (RemoteException e) {
3582            throw e.rethrowFromSystemServer();
3583        }
3584    }
3585
3586    /**
3587     * Kills the specified UID.
3588     * @param uid The UID to kill.
3589     * @param reason The reason for the kill.
3590     *
3591     * @hide
3592     */
3593    @SystemApi
3594    @RequiresPermission(Manifest.permission.KILL_UID)
3595    public void killUid(int uid, String reason) {
3596        try {
3597            getService().killUid(UserHandle.getAppId(uid),
3598                    UserHandle.getUserId(uid), reason);
3599        } catch (RemoteException e) {
3600            throw e.rethrowFromSystemServer();
3601        }
3602    }
3603
3604    /**
3605     * Have the system perform a force stop of everything associated with
3606     * the given application package.  All processes that share its uid
3607     * will be killed, all services it has running stopped, all activities
3608     * removed, etc.  In addition, a {@link Intent#ACTION_PACKAGE_RESTARTED}
3609     * broadcast will be sent, so that any of its registered alarms can
3610     * be stopped, notifications removed, etc.
3611     *
3612     * <p>You must hold the permission
3613     * {@link android.Manifest.permission#FORCE_STOP_PACKAGES} to be able to
3614     * call this method.
3615     *
3616     * @param packageName The name of the package to be stopped.
3617     * @param userId The user for which the running package is to be stopped.
3618     *
3619     * @hide This is not available to third party applications due to
3620     * it allowing them to break other applications by stopping their
3621     * services, removing their alarms, etc.
3622     */
3623    public void forceStopPackageAsUser(String packageName, int userId) {
3624        try {
3625            getService().forceStopPackage(packageName, userId);
3626        } catch (RemoteException e) {
3627            throw e.rethrowFromSystemServer();
3628        }
3629    }
3630
3631    /**
3632     * @see #forceStopPackageAsUser(String, int)
3633     * @hide
3634     */
3635    @SystemApi
3636    @RequiresPermission(Manifest.permission.FORCE_STOP_PACKAGES)
3637    public void forceStopPackage(String packageName) {
3638        forceStopPackageAsUser(packageName, mContext.getUserId());
3639    }
3640
3641    /**
3642     * Get the device configuration attributes.
3643     */
3644    public ConfigurationInfo getDeviceConfigurationInfo() {
3645        try {
3646            return getService().getDeviceConfigurationInfo();
3647        } catch (RemoteException e) {
3648            throw e.rethrowFromSystemServer();
3649        }
3650    }
3651
3652    /**
3653     * Get the preferred density of icons for the launcher. This is used when
3654     * custom drawables are created (e.g., for shortcuts).
3655     *
3656     * @return density in terms of DPI
3657     */
3658    public int getLauncherLargeIconDensity() {
3659        final Resources res = mContext.getResources();
3660        final int density = res.getDisplayMetrics().densityDpi;
3661        final int sw = res.getConfiguration().smallestScreenWidthDp;
3662
3663        if (sw < 600) {
3664            // Smaller than approx 7" tablets, use the regular icon size.
3665            return density;
3666        }
3667
3668        switch (density) {
3669            case DisplayMetrics.DENSITY_LOW:
3670                return DisplayMetrics.DENSITY_MEDIUM;
3671            case DisplayMetrics.DENSITY_MEDIUM:
3672                return DisplayMetrics.DENSITY_HIGH;
3673            case DisplayMetrics.DENSITY_TV:
3674                return DisplayMetrics.DENSITY_XHIGH;
3675            case DisplayMetrics.DENSITY_HIGH:
3676                return DisplayMetrics.DENSITY_XHIGH;
3677            case DisplayMetrics.DENSITY_XHIGH:
3678                return DisplayMetrics.DENSITY_XXHIGH;
3679            case DisplayMetrics.DENSITY_XXHIGH:
3680                return DisplayMetrics.DENSITY_XHIGH * 2;
3681            default:
3682                // The density is some abnormal value.  Return some other
3683                // abnormal value that is a reasonable scaling of it.
3684                return (int)((density*1.5f)+.5f);
3685        }
3686    }
3687
3688    /**
3689     * Get the preferred launcher icon size. This is used when custom drawables
3690     * are created (e.g., for shortcuts).
3691     *
3692     * @return dimensions of square icons in terms of pixels
3693     */
3694    public int getLauncherLargeIconSize() {
3695        return getLauncherLargeIconSizeInner(mContext);
3696    }
3697
3698    static int getLauncherLargeIconSizeInner(Context context) {
3699        final Resources res = context.getResources();
3700        final int size = res.getDimensionPixelSize(android.R.dimen.app_icon_size);
3701        final int sw = res.getConfiguration().smallestScreenWidthDp;
3702
3703        if (sw < 600) {
3704            // Smaller than approx 7" tablets, use the regular icon size.
3705            return size;
3706        }
3707
3708        final int density = res.getDisplayMetrics().densityDpi;
3709
3710        switch (density) {
3711            case DisplayMetrics.DENSITY_LOW:
3712                return (size * DisplayMetrics.DENSITY_MEDIUM) / DisplayMetrics.DENSITY_LOW;
3713            case DisplayMetrics.DENSITY_MEDIUM:
3714                return (size * DisplayMetrics.DENSITY_HIGH) / DisplayMetrics.DENSITY_MEDIUM;
3715            case DisplayMetrics.DENSITY_TV:
3716                return (size * DisplayMetrics.DENSITY_XHIGH) / DisplayMetrics.DENSITY_HIGH;
3717            case DisplayMetrics.DENSITY_HIGH:
3718                return (size * DisplayMetrics.DENSITY_XHIGH) / DisplayMetrics.DENSITY_HIGH;
3719            case DisplayMetrics.DENSITY_XHIGH:
3720                return (size * DisplayMetrics.DENSITY_XXHIGH) / DisplayMetrics.DENSITY_XHIGH;
3721            case DisplayMetrics.DENSITY_XXHIGH:
3722                return (size * DisplayMetrics.DENSITY_XHIGH*2) / DisplayMetrics.DENSITY_XXHIGH;
3723            default:
3724                // The density is some abnormal value.  Return some other
3725                // abnormal value that is a reasonable scaling of it.
3726                return (int)((size*1.5f) + .5f);
3727        }
3728    }
3729
3730    /**
3731     * Returns "true" if the user interface is currently being messed with
3732     * by a monkey.
3733     */
3734    public static boolean isUserAMonkey() {
3735        try {
3736            return getService().isUserAMonkey();
3737        } catch (RemoteException e) {
3738            throw e.rethrowFromSystemServer();
3739        }
3740    }
3741
3742    /**
3743     * Returns "true" if device is running in a test harness.
3744     */
3745    public static boolean isRunningInTestHarness() {
3746        return SystemProperties.getBoolean("ro.test_harness", false);
3747    }
3748
3749    /**
3750     * Unsupported compiled sdk warning should always be shown for the intput activity
3751     * even in cases where the system would normally not show the warning. E.g. when running in a
3752     * test harness.
3753     *
3754     * @param activity The component name of the activity to always show the warning for.
3755     *
3756     * @hide
3757     */
3758    @TestApi
3759    public void alwaysShowUnsupportedCompileSdkWarning(ComponentName activity) {
3760        try {
3761            getService().alwaysShowUnsupportedCompileSdkWarning(activity);
3762        } catch (RemoteException e) {
3763            throw e.rethrowFromSystemServer();
3764        }
3765    }
3766
3767    /**
3768     * Returns the launch count of each installed package.
3769     *
3770     * @hide
3771     */
3772    /*public Map<String, Integer> getAllPackageLaunchCounts() {
3773        try {
3774            IUsageStats usageStatsService = IUsageStats.Stub.asInterface(
3775                    ServiceManager.getService("usagestats"));
3776            if (usageStatsService == null) {
3777                return new HashMap<String, Integer>();
3778            }
3779
3780            UsageStats.PackageStats[] allPkgUsageStats = usageStatsService.getAllPkgUsageStats(
3781                    ActivityThread.currentPackageName());
3782            if (allPkgUsageStats == null) {
3783                return new HashMap<String, Integer>();
3784            }
3785
3786            Map<String, Integer> launchCounts = new HashMap<String, Integer>();
3787            for (UsageStats.PackageStats pkgUsageStats : allPkgUsageStats) {
3788                launchCounts.put(pkgUsageStats.getPackageName(), pkgUsageStats.getLaunchCount());
3789            }
3790
3791            return launchCounts;
3792        } catch (RemoteException e) {
3793            Log.w(TAG, "Could not query launch counts", e);
3794            return new HashMap<String, Integer>();
3795        }
3796    }*/
3797
3798    /** @hide */
3799    public static int checkComponentPermission(String permission, int uid,
3800            int owningUid, boolean exported) {
3801        // Root, system server get to do everything.
3802        final int appId = UserHandle.getAppId(uid);
3803        if (appId == Process.ROOT_UID || appId == Process.SYSTEM_UID) {
3804            return PackageManager.PERMISSION_GRANTED;
3805        }
3806        // Isolated processes don't get any permissions.
3807        if (UserHandle.isIsolated(uid)) {
3808            return PackageManager.PERMISSION_DENIED;
3809        }
3810        // If there is a uid that owns whatever is being accessed, it has
3811        // blanket access to it regardless of the permissions it requires.
3812        if (owningUid >= 0 && UserHandle.isSameApp(uid, owningUid)) {
3813            return PackageManager.PERMISSION_GRANTED;
3814        }
3815        // If the target is not exported, then nobody else can get to it.
3816        if (!exported) {
3817            /*
3818            RuntimeException here = new RuntimeException("here");
3819            here.fillInStackTrace();
3820            Slog.w(TAG, "Permission denied: checkComponentPermission() owningUid=" + owningUid,
3821                    here);
3822            */
3823            return PackageManager.PERMISSION_DENIED;
3824        }
3825        if (permission == null) {
3826            return PackageManager.PERMISSION_GRANTED;
3827        }
3828        try {
3829            return AppGlobals.getPackageManager()
3830                    .checkUidPermission(permission, uid);
3831        } catch (RemoteException e) {
3832            throw e.rethrowFromSystemServer();
3833        }
3834    }
3835
3836    /** @hide */
3837    public static int checkUidPermission(String permission, int uid) {
3838        try {
3839            return AppGlobals.getPackageManager()
3840                    .checkUidPermission(permission, uid);
3841        } catch (RemoteException e) {
3842            throw e.rethrowFromSystemServer();
3843        }
3844    }
3845
3846    /**
3847     * @hide
3848     * Helper for dealing with incoming user arguments to system service calls.
3849     * Takes care of checking permissions and converting USER_CURRENT to the
3850     * actual current user.
3851     *
3852     * @param callingPid The pid of the incoming call, as per Binder.getCallingPid().
3853     * @param callingUid The uid of the incoming call, as per Binder.getCallingUid().
3854     * @param userId The user id argument supplied by the caller -- this is the user
3855     * they want to run as.
3856     * @param allowAll If true, we will allow USER_ALL.  This means you must be prepared
3857     * to get a USER_ALL returned and deal with it correctly.  If false,
3858     * an exception will be thrown if USER_ALL is supplied.
3859     * @param requireFull If true, the caller must hold
3860     * {@link android.Manifest.permission#INTERACT_ACROSS_USERS_FULL} to be able to run as a
3861     * different user than their current process; otherwise they must hold
3862     * {@link android.Manifest.permission#INTERACT_ACROSS_USERS}.
3863     * @param name Optional textual name of the incoming call; only for generating error messages.
3864     * @param callerPackage Optional package name of caller; only for error messages.
3865     *
3866     * @return Returns the user ID that the call should run as.  Will always be a concrete
3867     * user number, unless <var>allowAll</var> is true in which case it could also be
3868     * USER_ALL.
3869     */
3870    public static int handleIncomingUser(int callingPid, int callingUid, int userId,
3871            boolean allowAll, boolean requireFull, String name, String callerPackage) {
3872        if (UserHandle.getUserId(callingUid) == userId) {
3873            return userId;
3874        }
3875        try {
3876            return getService().handleIncomingUser(callingPid,
3877                    callingUid, userId, allowAll, requireFull, name, callerPackage);
3878        } catch (RemoteException e) {
3879            throw e.rethrowFromSystemServer();
3880        }
3881    }
3882
3883    /**
3884     * Gets the userId of the current foreground user. Requires system permissions.
3885     * @hide
3886     */
3887    @SystemApi
3888    @RequiresPermission(anyOf = {
3889            "android.permission.INTERACT_ACROSS_USERS",
3890            "android.permission.INTERACT_ACROSS_USERS_FULL"
3891    })
3892    public static int getCurrentUser() {
3893        UserInfo ui;
3894        try {
3895            ui = getService().getCurrentUser();
3896            return ui != null ? ui.id : 0;
3897        } catch (RemoteException e) {
3898            throw e.rethrowFromSystemServer();
3899        }
3900    }
3901
3902    /**
3903     * @param userid the user's id. Zero indicates the default user.
3904     * @hide
3905     */
3906    public boolean switchUser(int userid) {
3907        try {
3908            return getService().switchUser(userid);
3909        } catch (RemoteException e) {
3910            throw e.rethrowFromSystemServer();
3911        }
3912    }
3913
3914    /**
3915     * Logs out current current foreground user by switching to the system user and stopping the
3916     * user being switched from.
3917     * @hide
3918     */
3919    public static void logoutCurrentUser() {
3920        int currentUser = ActivityManager.getCurrentUser();
3921        if (currentUser != UserHandle.USER_SYSTEM) {
3922            try {
3923                getService().switchUser(UserHandle.USER_SYSTEM);
3924                getService().stopUser(currentUser, /* force= */ false, null);
3925            } catch (RemoteException e) {
3926                e.rethrowFromSystemServer();
3927            }
3928        }
3929    }
3930
3931    /** {@hide} */
3932    public static final int FLAG_OR_STOPPED = 1 << 0;
3933    /** {@hide} */
3934    public static final int FLAG_AND_LOCKED = 1 << 1;
3935    /** {@hide} */
3936    public static final int FLAG_AND_UNLOCKED = 1 << 2;
3937    /** {@hide} */
3938    public static final int FLAG_AND_UNLOCKING_OR_UNLOCKED = 1 << 3;
3939
3940    /**
3941     * Return whether the given user is actively running.  This means that
3942     * the user is in the "started" state, not "stopped" -- it is currently
3943     * allowed to run code through scheduled alarms, receiving broadcasts,
3944     * etc.  A started user may be either the current foreground user or a
3945     * background user; the result here does not distinguish between the two.
3946     * @param userId the user's id. Zero indicates the default user.
3947     * @hide
3948     */
3949    public boolean isUserRunning(int userId) {
3950        try {
3951            return getService().isUserRunning(userId, 0);
3952        } catch (RemoteException e) {
3953            throw e.rethrowFromSystemServer();
3954        }
3955    }
3956
3957    /** {@hide} */
3958    public boolean isVrModePackageEnabled(ComponentName component) {
3959        try {
3960            return getService().isVrModePackageEnabled(component);
3961        } catch (RemoteException e) {
3962            throw e.rethrowFromSystemServer();
3963        }
3964    }
3965
3966    /**
3967     * Perform a system dump of various state associated with the given application
3968     * package name.  This call blocks while the dump is being performed, so should
3969     * not be done on a UI thread.  The data will be written to the given file
3970     * descriptor as text.
3971     * @param fd The file descriptor that the dump should be written to.  The file
3972     * descriptor is <em>not</em> closed by this function; the caller continues to
3973     * own it.
3974     * @param packageName The name of the package that is to be dumped.
3975     */
3976    @RequiresPermission(Manifest.permission.DUMP)
3977    public void dumpPackageState(FileDescriptor fd, String packageName) {
3978        dumpPackageStateStatic(fd, packageName);
3979    }
3980
3981    /**
3982     * @hide
3983     */
3984    public static void dumpPackageStateStatic(FileDescriptor fd, String packageName) {
3985        FileOutputStream fout = new FileOutputStream(fd);
3986        PrintWriter pw = new FastPrintWriter(fout);
3987        dumpService(pw, fd, "package", new String[] { packageName });
3988        pw.println();
3989        dumpService(pw, fd, Context.ACTIVITY_SERVICE, new String[] {
3990                "-a", "package", packageName });
3991        pw.println();
3992        dumpService(pw, fd, "meminfo", new String[] { "--local", "--package", packageName });
3993        pw.println();
3994        dumpService(pw, fd, ProcessStats.SERVICE_NAME, new String[] { packageName });
3995        pw.println();
3996        dumpService(pw, fd, "usagestats", new String[] { packageName });
3997        pw.println();
3998        dumpService(pw, fd, BatteryStats.SERVICE_NAME, new String[] { packageName });
3999        pw.flush();
4000    }
4001
4002    /**
4003     * @hide
4004     */
4005    public static boolean isSystemReady() {
4006        if (!sSystemReady) {
4007            if (ActivityThread.isSystem()) {
4008                sSystemReady =
4009                        LocalServices.getService(ActivityManagerInternal.class).isSystemReady();
4010            } else {
4011                // Since this is being called from outside system server, system should be
4012                // ready by now.
4013                sSystemReady = true;
4014            }
4015        }
4016        return sSystemReady;
4017    }
4018
4019    /**
4020     * @hide
4021     */
4022    public static void broadcastStickyIntent(Intent intent, int userId) {
4023        broadcastStickyIntent(intent, AppOpsManager.OP_NONE, userId);
4024    }
4025
4026    /**
4027     * Convenience for sending a sticky broadcast.  For internal use only.
4028     *
4029     * @hide
4030     */
4031    public static void broadcastStickyIntent(Intent intent, int appOp, int userId) {
4032        try {
4033            getService().broadcastIntent(
4034                    null, intent, null, null, Activity.RESULT_OK, null, null,
4035                    null /*permission*/, appOp, null, false, true, userId);
4036        } catch (RemoteException ex) {
4037        }
4038    }
4039
4040    /**
4041     * @hide
4042     */
4043    public static void noteWakeupAlarm(PendingIntent ps, WorkSource workSource, int sourceUid,
4044            String sourcePkg, String tag) {
4045        try {
4046            getService().noteWakeupAlarm((ps != null) ? ps.getTarget() : null, workSource,
4047                    sourceUid, sourcePkg, tag);
4048        } catch (RemoteException ex) {
4049        }
4050    }
4051
4052    /**
4053     * @hide
4054     */
4055    public static void noteAlarmStart(PendingIntent ps, WorkSource workSource, int sourceUid,
4056            String tag) {
4057        try {
4058            getService().noteAlarmStart((ps != null) ? ps.getTarget() : null, workSource,
4059                    sourceUid, tag);
4060        } catch (RemoteException ex) {
4061        }
4062    }
4063
4064
4065    /**
4066     * @hide
4067     */
4068    public static void noteAlarmFinish(PendingIntent ps, WorkSource workSource, int sourceUid,
4069            String tag) {
4070        try {
4071            getService().noteAlarmFinish((ps != null) ? ps.getTarget() : null, workSource,
4072                    sourceUid, tag);
4073        } catch (RemoteException ex) {
4074        }
4075    }
4076
4077    /**
4078     * @hide
4079     */
4080    public static IActivityManager getService() {
4081        return IActivityManagerSingleton.get();
4082    }
4083
4084    private static final Singleton<IActivityManager> IActivityManagerSingleton =
4085            new Singleton<IActivityManager>() {
4086                @Override
4087                protected IActivityManager create() {
4088                    final IBinder b = ServiceManager.getService(Context.ACTIVITY_SERVICE);
4089                    final IActivityManager am = IActivityManager.Stub.asInterface(b);
4090                    return am;
4091                }
4092            };
4093
4094    private static void dumpService(PrintWriter pw, FileDescriptor fd, String name, String[] args) {
4095        pw.print("DUMP OF SERVICE "); pw.print(name); pw.println(":");
4096        IBinder service = ServiceManager.checkService(name);
4097        if (service == null) {
4098            pw.println("  (Service not found)");
4099            pw.flush();
4100            return;
4101        }
4102        pw.flush();
4103        if (service instanceof Binder) {
4104            // If this is a local object, it doesn't make sense to do an async dump with it,
4105            // just directly dump.
4106            try {
4107                service.dump(fd, args);
4108            } catch (Throwable e) {
4109                pw.println("Failure dumping service:");
4110                e.printStackTrace(pw);
4111                pw.flush();
4112            }
4113        } else {
4114            // Otherwise, it is remote, do the dump asynchronously to avoid blocking.
4115            TransferPipe tp = null;
4116            try {
4117                pw.flush();
4118                tp = new TransferPipe();
4119                tp.setBufferPrefix("  ");
4120                service.dumpAsync(tp.getWriteFd().getFileDescriptor(), args);
4121                tp.go(fd, 10000);
4122            } catch (Throwable e) {
4123                if (tp != null) {
4124                    tp.kill();
4125                }
4126                pw.println("Failure dumping service:");
4127                e.printStackTrace(pw);
4128            }
4129        }
4130    }
4131
4132    /**
4133     * Request that the system start watching for the calling process to exceed a pss
4134     * size as given here.  Once called, the system will look for any occasions where it
4135     * sees the associated process with a larger pss size and, when this happens, automatically
4136     * pull a heap dump from it and allow the user to share the data.  Note that this request
4137     * continues running even if the process is killed and restarted.  To remove the watch,
4138     * use {@link #clearWatchHeapLimit()}.
4139     *
4140     * <p>This API only work if the calling process has been marked as
4141     * {@link ApplicationInfo#FLAG_DEBUGGABLE} or this is running on a debuggable
4142     * (userdebug or eng) build.</p>
4143     *
4144     * <p>Callers can optionally implement {@link #ACTION_REPORT_HEAP_LIMIT} to directly
4145     * handle heap limit reports themselves.</p>
4146     *
4147     * @param pssSize The size in bytes to set the limit at.
4148     */
4149    public void setWatchHeapLimit(long pssSize) {
4150        try {
4151            getService().setDumpHeapDebugLimit(null, 0, pssSize,
4152                    mContext.getPackageName());
4153        } catch (RemoteException e) {
4154            throw e.rethrowFromSystemServer();
4155        }
4156    }
4157
4158    /**
4159     * Action an app can implement to handle reports from {@link #setWatchHeapLimit(long)}.
4160     * If your package has an activity handling this action, it will be launched with the
4161     * heap data provided to it the same way as {@link Intent#ACTION_SEND}.  Note that to
4162     * match the activty must support this action and a MIME type of "*&#47;*".
4163     */
4164    public static final String ACTION_REPORT_HEAP_LIMIT = "android.app.action.REPORT_HEAP_LIMIT";
4165
4166    /**
4167     * Clear a heap watch limit previously set by {@link #setWatchHeapLimit(long)}.
4168     */
4169    public void clearWatchHeapLimit() {
4170        try {
4171            getService().setDumpHeapDebugLimit(null, 0, 0, null);
4172        } catch (RemoteException e) {
4173            throw e.rethrowFromSystemServer();
4174        }
4175    }
4176
4177    /**
4178     * Return whether currently in lock task mode.  When in this mode
4179     * no new tasks can be created or switched to.
4180     *
4181     * @see Activity#startLockTask()
4182     *
4183     * @deprecated Use {@link #getLockTaskModeState} instead.
4184     */
4185    @Deprecated
4186    public boolean isInLockTaskMode() {
4187        return getLockTaskModeState() != LOCK_TASK_MODE_NONE;
4188    }
4189
4190    /**
4191     * Return the current state of task locking. The three possible outcomes
4192     * are {@link #LOCK_TASK_MODE_NONE}, {@link #LOCK_TASK_MODE_LOCKED}
4193     * and {@link #LOCK_TASK_MODE_PINNED}.
4194     *
4195     * @see Activity#startLockTask()
4196     */
4197    public int getLockTaskModeState() {
4198        try {
4199            return getService().getLockTaskModeState();
4200        } catch (RemoteException e) {
4201            throw e.rethrowFromSystemServer();
4202        }
4203    }
4204
4205    /**
4206     * Enable more aggressive scheduling for latency-sensitive low-runtime VR threads. Only one
4207     * thread can be a VR thread in a process at a time, and that thread may be subject to
4208     * restrictions on the amount of time it can run.
4209     *
4210     * If persistent VR mode is set, whatever thread has been granted aggressive scheduling via this
4211     * method will return to normal operation, and calling this method will do nothing while
4212     * persistent VR mode is enabled.
4213     *
4214     * To reset the VR thread for an application, a tid of 0 can be passed.
4215     *
4216     * @see android.os.Process#myTid()
4217     * @param tid tid of the VR thread
4218     */
4219    public static void setVrThread(int tid) {
4220        try {
4221            getService().setVrThread(tid);
4222        } catch (RemoteException e) {
4223            // pass
4224        }
4225    }
4226
4227    /**
4228     * Enable more aggressive scheduling for latency-sensitive low-runtime VR threads that persist
4229     * beyond a single process. Only one thread can be a
4230     * persistent VR thread at a time, and that thread may be subject to restrictions on the amount
4231     * of time it can run. Calling this method will disable aggressive scheduling for non-persistent
4232     * VR threads set via {@link #setVrThread}. If persistent VR mode is disabled then the
4233     * persistent VR thread loses its new scheduling priority; this method must be called again to
4234     * set the persistent thread.
4235     *
4236     * To reset the persistent VR thread, a tid of 0 can be passed.
4237     *
4238     * @see android.os.Process#myTid()
4239     * @param tid tid of the VR thread
4240     * @hide
4241     */
4242    @RequiresPermission(Manifest.permission.RESTRICTED_VR_ACCESS)
4243    public static void setPersistentVrThread(int tid) {
4244        try {
4245            getService().setPersistentVrThread(tid);
4246        } catch (RemoteException e) {
4247            // pass
4248        }
4249    }
4250
4251    /**
4252     * The AppTask allows you to manage your own application's tasks.
4253     * See {@link android.app.ActivityManager#getAppTasks()}
4254     */
4255    public static class AppTask {
4256        private IAppTask mAppTaskImpl;
4257
4258        /** @hide */
4259        public AppTask(IAppTask task) {
4260            mAppTaskImpl = task;
4261        }
4262
4263        /**
4264         * Finishes all activities in this task and removes it from the recent tasks list.
4265         */
4266        public void finishAndRemoveTask() {
4267            try {
4268                mAppTaskImpl.finishAndRemoveTask();
4269            } catch (RemoteException e) {
4270                throw e.rethrowFromSystemServer();
4271            }
4272        }
4273
4274        /**
4275         * Get the RecentTaskInfo associated with this task.
4276         *
4277         * @return The RecentTaskInfo for this task, or null if the task no longer exists.
4278         */
4279        public RecentTaskInfo getTaskInfo() {
4280            try {
4281                return mAppTaskImpl.getTaskInfo();
4282            } catch (RemoteException e) {
4283                throw e.rethrowFromSystemServer();
4284            }
4285        }
4286
4287        /**
4288         * Bring this task to the foreground.  If it contains activities, they will be
4289         * brought to the foreground with it and their instances re-created if needed.
4290         * If it doesn't contain activities, the root activity of the task will be
4291         * re-launched.
4292         */
4293        public void moveToFront() {
4294            try {
4295                mAppTaskImpl.moveToFront();
4296            } catch (RemoteException e) {
4297                throw e.rethrowFromSystemServer();
4298            }
4299        }
4300
4301        /**
4302         * Start an activity in this task.  Brings the task to the foreground.  If this task
4303         * is not currently active (that is, its id < 0), then a new activity for the given
4304         * Intent will be launched as the root of the task and the task brought to the
4305         * foreground.  Otherwise, if this task is currently active and the Intent does not specify
4306         * an activity to launch in a new task, then a new activity for the given Intent will
4307         * be launched on top of the task and the task brought to the foreground.  If this
4308         * task is currently active and the Intent specifies {@link Intent#FLAG_ACTIVITY_NEW_TASK}
4309         * or would otherwise be launched in to a new task, then the activity not launched but
4310         * this task be brought to the foreground and a new intent delivered to the top
4311         * activity if appropriate.
4312         *
4313         * <p>In other words, you generally want to use an Intent here that does not specify
4314         * {@link Intent#FLAG_ACTIVITY_NEW_TASK} or {@link Intent#FLAG_ACTIVITY_NEW_DOCUMENT},
4315         * and let the system do the right thing.</p>
4316         *
4317         * @param intent The Intent describing the new activity to be launched on the task.
4318         * @param options Optional launch options.
4319         *
4320         * @see Activity#startActivity(android.content.Intent, android.os.Bundle)
4321         */
4322        public void startActivity(Context context, Intent intent, Bundle options) {
4323            ActivityThread thread = ActivityThread.currentActivityThread();
4324            thread.getInstrumentation().execStartActivityFromAppTask(context,
4325                    thread.getApplicationThread(), mAppTaskImpl, intent, options);
4326        }
4327
4328        /**
4329         * Modify the {@link Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} flag in the root
4330         * Intent of this AppTask.
4331         *
4332         * @param exclude If true, {@link Intent#FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS} will
4333         * be set; otherwise, it will be cleared.
4334         */
4335        public void setExcludeFromRecents(boolean exclude) {
4336            try {
4337                mAppTaskImpl.setExcludeFromRecents(exclude);
4338            } catch (RemoteException e) {
4339                throw e.rethrowFromSystemServer();
4340            }
4341        }
4342    }
4343}
4344