blob: 0c51a39f0b8814c66bff8521c1e306a6259d2742 [file] [log] [blame]
Filip Gruszczynski77d94482015-12-11 13:59:52 -08001package com.android.server.am;
2
Jorim Jaggi3878ca32017-02-02 17:13:05 -08003import static android.app.ActivityManager.START_SUCCESS;
4import static android.app.ActivityManager.START_TASK_TO_FRONT;
Michal Karpinski201bc0c2018-07-20 15:32:00 +01005import static android.app.ActivityManager.processStateAmToProto;
Bryce Lee6c605092017-10-12 11:14:49 -07006import static android.app.WindowConfiguration.WINDOWING_MODE_FREEFORM;
Wale Ogunwale3382ab12017-07-27 08:55:03 -07007import static android.app.WindowConfiguration.WINDOWING_MODE_FULLSCREEN;
8import static android.app.WindowConfiguration.WINDOWING_MODE_PINNED;
Vishnu Nair132ee832018-09-28 15:00:05 -07009import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_PRIMARY;
Wale Ogunwale926aade2017-08-29 11:24:37 -070010import static android.app.WindowConfiguration.WINDOWING_MODE_SPLIT_SCREEN_SECONDARY;
11import static android.app.WindowConfiguration.WINDOWING_MODE_UNDEFINED;
Vishnu Nair132ee832018-09-28 15:00:05 -070012
Michal Karpinski201bc0c2018-07-20 15:32:00 +010013import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.ACTION_ACTIVITY_START;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080014import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION;
Jorim Jaggi515dd682017-05-05 15:05:07 +020015import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_BIND_APPLICATION_DELAY_MS;
Todd Kennedy50d946c12017-03-17 13:55:38 -070016import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_CALLING_PACKAGE_NAME;
Jorim Jaggi172e99f2017-10-20 14:33:18 +020017import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_CANCELLED;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080018import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_DELAY_MS;
19import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_DEVICE_UPTIME_SECONDS;
Todd Kennedy50d946c12017-03-17 13:55:38 -070020import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_IS_EPHEMERAL;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020021import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_PROCESS_RUNNING;
22import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_REPORTED_DRAWN;
23import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_REPORTED_DRAWN_MS;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080024import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_STARTING_WINDOW_DELAY_MS;
25import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010026import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_FLAGS;
27import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_IS_FULLSCREEN;
28import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY;
29import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_IS_VISIBLE;
30import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD;
Vishnu Nair132ee832018-09-28 15:00:05 -070031import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_LAUNCH_MODE;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010032import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH;
33import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010034import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_PROCESS_NAME;
35import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_REAL_ACTIVITY;
36import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME;
37import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME;
38import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME;
39import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY;
40import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_CALLING_PACKAGE_NAME;
41import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_CALLING_UID;
42import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW;
43import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_CALLING_UID_PROC_STATE;
Jorim Jaggicdfc04e2017-04-28 19:06:24 +020044import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_CLASS_NAME;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010045import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_COMING_FROM_PENDING_INTENT;
Todd Kennedy50d946c12017-03-17 13:55:38 -070046import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_INSTANT_APP_LAUNCH_TOKEN;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010047import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_INTENT_ACTION;
48import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_CUR_PROC_STATE;
49import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES;
50import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES;
51import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES;
52import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_HAS_OVERLAY_UI;
53import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_HAS_TOP_UI;
54import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION;
55import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT;
56import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT;
57import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_PENDING_UI_CLEAN;
58import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_PROCESS_RECORD_PROCESS_NAME;
59import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_REAL_CALLING_UID;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010060import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW;
Vishnu Nair132ee832018-09-28 15:00:05 -070061import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_REAL_CALLING_UID_PROC_STATE;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010062import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_TARGET_PACKAGE_NAME;
63import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_TARGET_SHORT_COMPONENT_NAME;
64import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_TARGET_UID;
65import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW;
66import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_TARGET_UID_PROC_STATE;
67import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.FIELD_TARGET_WHITELIST_TAG;
Calin Juravle759fbda2018-02-20 19:52:30 +000068import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.PACKAGE_OPTIMIZATION_COMPILATION_FILTER;
Vishnu Nair132ee832018-09-28 15:00:05 -070069import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.PACKAGE_OPTIMIZATION_COMPILATION_REASON;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080070import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.TYPE_TRANSITION_COLD_LAUNCH;
71import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.TYPE_TRANSITION_HOT_LAUNCH;
Jorim Jaggi4d27b842017-08-17 17:22:26 +020072import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE;
73import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080074import static com.android.internal.logging.nano.MetricsProto.MetricsEvent.TYPE_TRANSITION_WARM_LAUNCH;
Jorim Jaggi172e99f2017-10-20 14:33:18 +020075import static com.android.server.am.ActivityManagerDebugConfig.DEBUG_METRICS;
Jorim Jaggif9704102016-05-05 19:14:22 -070076import static com.android.server.am.ActivityManagerDebugConfig.TAG_AM;
77import static com.android.server.am.ActivityManagerDebugConfig.TAG_WITH_CLASS_NAME;
Vishnu Nair132ee832018-09-28 15:00:05 -070078import static com.android.server.am.EventLogTags.AM_ACTIVITY_LAUNCH_TIME;
Ng Zhi Anbbefdec2018-01-30 17:12:39 -080079import static com.android.server.am.MemoryStatUtil.MemoryStat;
Rajeev Kumarbfcd9202018-03-02 22:42:13 +000080import static com.android.server.am.MemoryStatUtil.readMemoryStatFromFilesystem;
Vishnu Nair132ee832018-09-28 15:00:05 -070081import static com.android.server.wm.ActivityTaskManagerInternal.APP_TRANSITION_TIMEOUT;
Filip Gruszczynski77d94482015-12-11 13:59:52 -080082
Filip Gruszczynski77d94482015-12-11 13:59:52 -080083import android.content.Context;
Michal Karpinski201bc0c2018-07-20 15:32:00 +010084import android.content.Intent;
Calin Juravle759fbda2018-02-20 19:52:30 +000085import android.content.pm.ApplicationInfo;
86import android.content.pm.dex.ArtManagerInternal;
87import android.content.pm.dex.PackageOptimizationInfo;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080088import android.metrics.LogMaker;
Jorim Jaggi172e99f2017-10-20 14:33:18 +020089import android.os.Handler;
90import android.os.Looper;
91import android.os.Message;
Filip Gruszczynski77d94482015-12-11 13:59:52 -080092import android.os.SystemClock;
Vishnu Nair132ee832018-09-28 15:00:05 -070093import android.os.Trace;
94import android.util.EventLog;
95import android.util.Log;
Jorim Jaggi172e99f2017-10-20 14:33:18 +020096import android.util.Slog;
Jorim Jaggi3878ca32017-02-02 17:13:05 -080097import android.util.SparseArray;
98import android.util.SparseIntArray;
Olivier Gaillardaed7f122017-12-12 14:26:22 +000099import android.util.StatsLog;
Vishnu Nair132ee832018-09-28 15:00:05 -0700100import android.util.TimeUtils;
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800101
102import com.android.internal.logging.MetricsLogger;
Ng Zhi An83473542018-02-20 09:02:14 -0800103import com.android.internal.os.BackgroundThread;
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200104import com.android.internal.os.SomeArgs;
Calin Juravle759fbda2018-02-20 19:52:30 +0000105import com.android.server.LocalServices;
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800106
107/**
Vishnu Nair132ee832018-09-28 15:00:05 -0700108 * Listens to activity launches, transitions, visibility changes and window drawn callbacks to
109 * determine app launch times and draw delays. Source of truth for activity metrics and provides
110 * data for Tron, logcat, event logs and {@link android.app.WaitResult}.
111 *
112 * Tests:
113 * atest SystemMetricsFunctionalTests
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800114 */
115class ActivityMetricsLogger {
Jorim Jaggif9704102016-05-05 19:14:22 -0700116
117 private static final String TAG = TAG_WITH_CLASS_NAME ? "ActivityMetricsLogger" : TAG_AM;
118
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800119 // Window modes we are interested in logging. If we ever introduce a new type, we need to add
120 // a value here and increase the {@link #TRON_WINDOW_STATE_VARZ_STRINGS} array.
121 private static final int WINDOW_STATE_STANDARD = 0;
122 private static final int WINDOW_STATE_SIDE_BY_SIDE = 1;
123 private static final int WINDOW_STATE_FREEFORM = 2;
Winson Chung83471632016-12-13 11:02:12 -0800124 private static final int WINDOW_STATE_ASSISTANT = 3;
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800125 private static final int WINDOW_STATE_INVALID = -1;
126
Jorim Jaggi275561a2016-02-23 10:11:02 -0500127 private static final long INVALID_START_TIME = -1;
Vishnu Nair132ee832018-09-28 15:00:05 -0700128 private static final int INVALID_DELAY = -1;
129 private static final int INVALID_TRANSITION_TYPE = -1;
Jorim Jaggi275561a2016-02-23 10:11:02 -0500130
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200131 private static final int MSG_CHECK_VISIBILITY = 0;
132
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800133 // Preallocated strings we are sending to tron, so we don't have to allocate a new one every
134 // time we log.
135 private static final String[] TRON_WINDOW_STATE_VARZ_STRINGS = {
Winson Chung83471632016-12-13 11:02:12 -0800136 "window_time_0", "window_time_1", "window_time_2", "window_time_3"};
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800137
138 private int mWindowState = WINDOW_STATE_STANDARD;
139 private long mLastLogTimeSecs;
140 private final ActivityStackSupervisor mSupervisor;
141 private final Context mContext;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800142 private final MetricsLogger mMetricsLogger = new MetricsLogger();
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800143
Jorim Jaggi275561a2016-02-23 10:11:02 -0500144 private long mCurrentTransitionStartTime = INVALID_START_TIME;
Jorim Jaggi4d27b842017-08-17 17:22:26 +0200145 private long mLastTransitionStartTime = INVALID_START_TIME;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800146
147 private int mCurrentTransitionDeviceUptime;
148 private int mCurrentTransitionDelayMs;
Jorim Jaggi275561a2016-02-23 10:11:02 -0500149 private boolean mLoggedTransitionStarting;
150
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100151 private final SparseArray<WindowingModeTransitionInfo> mWindowingModeTransitionInfo =
152 new SparseArray<>();
153 private final SparseArray<WindowingModeTransitionInfo> mLastWindowingModeTransitionInfo =
154 new SparseArray<>();
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200155 private final H mHandler;
Calin Juravle759fbda2018-02-20 19:52:30 +0000156
157 private ArtManagerInternal mArtManagerInternal;
Vishnu Nair132ee832018-09-28 15:00:05 -0700158 private final StringBuilder mStringBuilder = new StringBuilder();
Calin Juravle759fbda2018-02-20 19:52:30 +0000159
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200160 private final class H extends Handler {
161
162 public H(Looper looper) {
163 super(looper);
164 }
165
166 @Override
167 public void handleMessage(Message msg) {
168 switch (msg.what) {
169 case MSG_CHECK_VISIBILITY:
170 final SomeArgs args = (SomeArgs) msg.obj;
171 checkVisibility((TaskRecord) args.arg1, (ActivityRecord) args.arg2);
172 break;
173 }
174 }
Calin Juravle759fbda2018-02-20 19:52:30 +0000175 }
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800176
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100177 private final class WindowingModeTransitionInfo {
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800178 private ActivityRecord launchedActivity;
179 private int startResult;
180 private boolean currentTransitionProcessRunning;
Vishnu Nair132ee832018-09-28 15:00:05 -0700181 /** Elapsed time from when we launch an activity to when its windows are drawn. */
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800182 private int windowsDrawnDelayMs;
Vishnu Nair132ee832018-09-28 15:00:05 -0700183 private int startingWindowDelayMs = INVALID_DELAY;
184 private int bindApplicationDelayMs = INVALID_DELAY;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800185 private int reason = APP_TRANSITION_TIMEOUT;
186 private boolean loggedWindowsDrawn;
187 private boolean loggedStartingWindowDrawn;
Vishnu Nair132ee832018-09-28 15:00:05 -0700188 private boolean launchTraceActive;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800189 }
190
Vishnu Nair132ee832018-09-28 15:00:05 -0700191 final class WindowingModeTransitionInfoSnapshot {
Calin Juravle759fbda2018-02-20 19:52:30 +0000192 final private ApplicationInfo applicationInfo;
Wale Ogunwalef6733932018-06-27 05:14:34 -0700193 final private WindowProcessController processRecord;
Vishnu Nair132ee832018-09-28 15:00:05 -0700194 final String packageName;
195 final String launchedActivityName;
Calin Juravle759fbda2018-02-20 19:52:30 +0000196 final private String launchedActivityLaunchedFromPackage;
197 final private String launchedActivityLaunchToken;
198 final private String launchedActivityAppRecordRequiredAbi;
Vishnu Nair132ee832018-09-28 15:00:05 -0700199 final String launchedActivityShortComponentName;
Ng Zhi An83473542018-02-20 09:02:14 -0800200 final private String processName;
Calin Juravle759fbda2018-02-20 19:52:30 +0000201 final private int reason;
202 final private int startingWindowDelayMs;
203 final private int bindApplicationDelayMs;
Vishnu Nair132ee832018-09-28 15:00:05 -0700204 final int windowsDrawnDelayMs;
205 final int type;
206 final int userId;
207 /**
208 * Elapsed time from when we launch an activity to when the app reported it was
209 * fully drawn. If this is not reported then the value is set to INVALID_DELAY.
210 */
211 final int windowsFullyDrawnDelayMs;
212 final int activityRecordIdHashCode;
Calin Juravle759fbda2018-02-20 19:52:30 +0000213
214 private WindowingModeTransitionInfoSnapshot(WindowingModeTransitionInfo info) {
Vishnu Nair132ee832018-09-28 15:00:05 -0700215 this(info, info.launchedActivity);
216 }
217
218 private WindowingModeTransitionInfoSnapshot(WindowingModeTransitionInfo info,
219 ActivityRecord launchedActivity) {
220 this(info, launchedActivity, INVALID_DELAY);
221 }
222
223 private WindowingModeTransitionInfoSnapshot(WindowingModeTransitionInfo info,
224 ActivityRecord launchedActivity, int windowsFullyDrawnDelayMs) {
225 applicationInfo = launchedActivity.appInfo;
226 packageName = launchedActivity.packageName;
227 launchedActivityName = launchedActivity.info.name;
228 launchedActivityLaunchedFromPackage = launchedActivity.launchedFromPackage;
229 launchedActivityLaunchToken = launchedActivity.info.launchToken;
230 launchedActivityAppRecordRequiredAbi = launchedActivity.app == null
Calin Juravle759fbda2018-02-20 19:52:30 +0000231 ? null
Wale Ogunwale9e4f3e02018-05-17 09:35:39 -0700232 : info.launchedActivity.app.getRequiredAbi();
Calin Juravle759fbda2018-02-20 19:52:30 +0000233 reason = info.reason;
234 startingWindowDelayMs = info.startingWindowDelayMs;
235 bindApplicationDelayMs = info.bindApplicationDelayMs;
236 windowsDrawnDelayMs = info.windowsDrawnDelayMs;
237 type = getTransitionType(info);
Ng Zhi An83473542018-02-20 09:02:14 -0800238 processRecord = findProcessForActivity(info.launchedActivity);
239 processName = info.launchedActivity.processName;
Vishnu Nair132ee832018-09-28 15:00:05 -0700240 userId = launchedActivity.userId;
241 launchedActivityShortComponentName = launchedActivity.shortComponentName;
242 activityRecordIdHashCode = System.identityHashCode(launchedActivity);
243 this.windowsFullyDrawnDelayMs = windowsFullyDrawnDelayMs;
Calin Juravle759fbda2018-02-20 19:52:30 +0000244 }
245 }
246
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200247 ActivityMetricsLogger(ActivityStackSupervisor supervisor, Context context, Looper looper) {
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800248 mLastLogTimeSecs = SystemClock.elapsedRealtime() / 1000;
249 mSupervisor = supervisor;
250 mContext = context;
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200251 mHandler = new H(looper);
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800252 }
253
254 void logWindowState() {
255 final long now = SystemClock.elapsedRealtime() / 1000;
256 if (mWindowState != WINDOW_STATE_INVALID) {
257 // We log even if the window state hasn't changed, because the user might remain in
258 // home/fullscreen move forever and we would like to track this kind of behavior
259 // too.
260 MetricsLogger.count(mContext, TRON_WINDOW_STATE_VARZ_STRINGS[mWindowState],
261 (int) (now - mLastLogTimeSecs));
262 }
263 mLastLogTimeSecs = now;
264
Wale Ogunwale926aade2017-08-29 11:24:37 -0700265 mWindowState = WINDOW_STATE_INVALID;
Andrii Kulian5f750bc2018-07-17 08:57:23 -0700266 ActivityStack stack = mSupervisor.getTopDisplayFocusedStack();
lumarkf6c4a982018-06-15 15:43:12 +0800267 if (stack == null) {
268 return;
269 }
270
Wale Ogunwale926aade2017-08-29 11:24:37 -0700271 if (stack.isActivityTypeAssistant()) {
272 mWindowState = WINDOW_STATE_ASSISTANT;
Filip Gruszczynskicaae14e2015-12-16 14:40:04 -0800273 return;
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800274 }
Wale Ogunwale926aade2017-08-29 11:24:37 -0700275
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700276 int windowingMode = stack.getWindowingMode();
277 if (windowingMode == WINDOWING_MODE_PINNED) {
Filip Gruszczynskicaae14e2015-12-16 14:40:04 -0800278 stack = mSupervisor.findStackBehind(stack);
Wale Ogunwale3382ab12017-07-27 08:55:03 -0700279 windowingMode = stack.getWindowingMode();
Filip Gruszczynskicaae14e2015-12-16 14:40:04 -0800280 }
Wale Ogunwale926aade2017-08-29 11:24:37 -0700281 switch (windowingMode) {
282 case WINDOWING_MODE_FULLSCREEN:
283 mWindowState = WINDOW_STATE_STANDARD;
284 break;
285 case WINDOWING_MODE_SPLIT_SCREEN_PRIMARY:
286 case WINDOWING_MODE_SPLIT_SCREEN_SECONDARY:
287 mWindowState = WINDOW_STATE_SIDE_BY_SIDE;
288 break;
Bryce Lee6c605092017-10-12 11:14:49 -0700289 case WINDOWING_MODE_FREEFORM:
Wale Ogunwale926aade2017-08-29 11:24:37 -0700290 mWindowState = WINDOW_STATE_FREEFORM;
291 break;
292 default:
293 if (windowingMode != WINDOWING_MODE_UNDEFINED) {
294 throw new IllegalStateException("Unknown windowing mode for stack=" + stack
295 + " windowingMode=" + windowingMode);
296 }
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800297 }
298 }
Jorim Jaggi275561a2016-02-23 10:11:02 -0500299
300 /**
301 * Notifies the tracker at the earliest possible point when we are starting to launch an
302 * activity.
303 */
304 void notifyActivityLaunching() {
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800305 if (!isAnyTransitionActive()) {
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200306 if (DEBUG_METRICS) Slog.i(TAG, "notifyActivityLaunching");
Alison Cichowlasb7f67ab2017-04-25 18:04:40 -0400307 mCurrentTransitionStartTime = SystemClock.uptimeMillis();
Jorim Jaggi4d27b842017-08-17 17:22:26 +0200308 mLastTransitionStartTime = mCurrentTransitionStartTime;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800309 }
Jorim Jaggi275561a2016-02-23 10:11:02 -0500310 }
311
312 /**
Jorim Jaggi1e630c02016-05-16 12:13:13 -0700313 * Notifies the tracker that the activity is actually launching.
314 *
315 * @param resultCode one of the ActivityManager.START_* flags, indicating the result of the
316 * launch
317 * @param launchedActivity the activity that is being launched
318 */
319 void notifyActivityLaunched(int resultCode, ActivityRecord launchedActivity) {
Wale Ogunwalef6733932018-06-27 05:14:34 -0700320 final WindowProcessController processRecord = findProcessForActivity(launchedActivity);
Jorim Jaggi1e630c02016-05-16 12:13:13 -0700321 final boolean processRunning = processRecord != null;
Jorim Jaggi1e630c02016-05-16 12:13:13 -0700322
323 // We consider this a "process switch" if the process of the activity that gets launched
324 // didn't have an activity that was in started state. In this case, we assume that lot
325 // of caches might be purged so the time until it produces the first frame is very
326 // interesting.
327 final boolean processSwitch = processRecord == null
Wale Ogunwalef6733932018-06-27 05:14:34 -0700328 || !processRecord.hasStartedActivity(launchedActivity);
Jorim Jaggi1e630c02016-05-16 12:13:13 -0700329
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800330 notifyActivityLaunched(resultCode, launchedActivity, processRunning, processSwitch);
Jorim Jaggi1e630c02016-05-16 12:13:13 -0700331 }
332
Jorim Jaggi1e630c02016-05-16 12:13:13 -0700333 /**
Jorim Jaggi275561a2016-02-23 10:11:02 -0500334 * Notifies the tracker the the activity is actually launching.
335 *
336 * @param resultCode one of the ActivityManager.START_* flags, indicating the result of the
337 * launch
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800338 * @param launchedActivity the activity being launched
Jorim Jaggi275561a2016-02-23 10:11:02 -0500339 * @param processRunning whether the process that will contains the activity is already running
Jorim Jaggibe67c902016-04-12 00:53:16 -0700340 * @param processSwitch whether the process that will contain the activity didn't have any
341 * activity that was stopped, i.e. the started activity is "switching"
342 * processes
Jorim Jaggi275561a2016-02-23 10:11:02 -0500343 */
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800344 private void notifyActivityLaunched(int resultCode, ActivityRecord launchedActivity,
Jorim Jaggibe67c902016-04-12 00:53:16 -0700345 boolean processRunning, boolean processSwitch) {
Jorim Jaggi275561a2016-02-23 10:11:02 -0500346
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200347 if (DEBUG_METRICS) Slog.i(TAG, "notifyActivityLaunched"
348 + " resultCode=" + resultCode
349 + " launchedActivity=" + launchedActivity
350 + " processRunning=" + processRunning
351 + " processSwitch=" + processSwitch);
352
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800353 // If we are already in an existing transition, only update the activity name, but not the
354 // other attributes.
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100355 final int windowingMode = launchedActivity != null
356 ? launchedActivity.getWindowingMode()
357 : WINDOWING_MODE_UNDEFINED;
Jorim Jaggicdfc04e2017-04-28 19:06:24 +0200358
359 if (mCurrentTransitionStartTime == INVALID_START_TIME) {
360 return;
361 }
362
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100363 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.get(windowingMode);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800364 if (launchedActivity != null && info != null) {
365 info.launchedActivity = launchedActivity;
Jorim Jaggi275561a2016-02-23 10:11:02 -0500366 return;
367 }
368
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100369 final boolean otherWindowModesLaunching =
370 mWindowingModeTransitionInfo.size() > 0 && info == null;
Jorim Jaggi54cff642018-03-15 15:51:32 +0100371 if ((!isLoggableResultCode(resultCode) || launchedActivity == null || !processSwitch
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100372 || windowingMode == WINDOWING_MODE_UNDEFINED) && !otherWindowModesLaunching) {
Alison Cichowlas803054d2016-12-13 14:38:01 -0500373
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800374 // Failed to launch or it was not a process switch, so we don't care about the timing.
Vishnu Nair132ee832018-09-28 15:00:05 -0700375 reset(true /* abort */, info);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800376 return;
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100377 } else if (otherWindowModesLaunching) {
378 // Don't log this windowing mode but continue with the other windowing modes.
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800379 return;
380 }
381
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200382 if (DEBUG_METRICS) Slog.i(TAG, "notifyActivityLaunched successful");
383
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100384 final WindowingModeTransitionInfo newInfo = new WindowingModeTransitionInfo();
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800385 newInfo.launchedActivity = launchedActivity;
386 newInfo.currentTransitionProcessRunning = processRunning;
387 newInfo.startResult = resultCode;
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100388 mWindowingModeTransitionInfo.put(windowingMode, newInfo);
389 mLastWindowingModeTransitionInfo.put(windowingMode, newInfo);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800390 mCurrentTransitionDeviceUptime = (int) (SystemClock.uptimeMillis() / 1000);
Vishnu Nair132ee832018-09-28 15:00:05 -0700391 startTraces(newInfo);
Jorim Jaggi275561a2016-02-23 10:11:02 -0500392 }
393
394 /**
Jorim Jaggi54cff642018-03-15 15:51:32 +0100395 * @return True if we should start logging an event for an activity start that returned
396 * {@code resultCode} and that we'll indeed get a windows drawn event.
397 */
398 private boolean isLoggableResultCode(int resultCode) {
399 return resultCode == START_SUCCESS || resultCode == START_TASK_TO_FRONT;
400 }
401
402 /**
Jorim Jaggi275561a2016-02-23 10:11:02 -0500403 * Notifies the tracker that all windows of the app have been drawn.
404 */
Vishnu Nair132ee832018-09-28 15:00:05 -0700405 WindowingModeTransitionInfoSnapshot notifyWindowsDrawn(int windowingMode, long timestamp) {
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100406 if (DEBUG_METRICS) Slog.i(TAG, "notifyWindowsDrawn windowingMode=" + windowingMode);
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200407
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100408 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.get(windowingMode);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800409 if (info == null || info.loggedWindowsDrawn) {
Vishnu Nair132ee832018-09-28 15:00:05 -0700410 return null;
Jorim Jaggi275561a2016-02-23 10:11:02 -0500411 }
Sudheer Shankac766db02017-06-12 10:37:29 -0700412 info.windowsDrawnDelayMs = calculateDelay(timestamp);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800413 info.loggedWindowsDrawn = true;
Vishnu Nair132ee832018-09-28 15:00:05 -0700414 final WindowingModeTransitionInfoSnapshot infoSnapshot =
415 new WindowingModeTransitionInfoSnapshot(info);
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100416 if (allWindowsDrawn() && mLoggedTransitionStarting) {
Vishnu Nair132ee832018-09-28 15:00:05 -0700417 reset(false /* abort */, info);
Jorim Jaggi275561a2016-02-23 10:11:02 -0500418 }
Vishnu Nair132ee832018-09-28 15:00:05 -0700419 return infoSnapshot;
Jorim Jaggi275561a2016-02-23 10:11:02 -0500420 }
421
422 /**
423 * Notifies the tracker that the starting window was drawn.
424 */
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100425 void notifyStartingWindowDrawn(int windowingMode, long timestamp) {
426 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.get(windowingMode);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800427 if (info == null || info.loggedStartingWindowDrawn) {
Jorim Jaggi275561a2016-02-23 10:11:02 -0500428 return;
429 }
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800430 info.loggedStartingWindowDrawn = true;
Sudheer Shankac766db02017-06-12 10:37:29 -0700431 info.startingWindowDelayMs = calculateDelay(timestamp);
Jorim Jaggi275561a2016-02-23 10:11:02 -0500432 }
433
434 /**
435 * Notifies the tracker that the app transition is starting.
436 *
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100437 * @param windowingModeToReason A map from windowing mode to a reason integer, which must be on
Vishnu Nair132ee832018-09-28 15:00:05 -0700438 * of ActivityTaskManagerInternal.APP_TRANSITION_* reasons.
Jorim Jaggi275561a2016-02-23 10:11:02 -0500439 */
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100440 void notifyTransitionStarting(SparseIntArray windowingModeToReason, long timestamp) {
Jorim Jaggid8a57772017-04-14 16:50:42 -0700441 if (!isAnyTransitionActive() || mLoggedTransitionStarting) {
Jorim Jaggi275561a2016-02-23 10:11:02 -0500442 return;
443 }
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200444 if (DEBUG_METRICS) Slog.i(TAG, "notifyTransitionStarting");
Sudheer Shankac766db02017-06-12 10:37:29 -0700445 mCurrentTransitionDelayMs = calculateDelay(timestamp);
Jorim Jaggi275561a2016-02-23 10:11:02 -0500446 mLoggedTransitionStarting = true;
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100447 for (int index = windowingModeToReason.size() - 1; index >= 0; index--) {
448 final int windowingMode = windowingModeToReason.keyAt(index);
449 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.get(
450 windowingMode);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800451 if (info == null) {
452 continue;
453 }
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100454 info.reason = windowingModeToReason.valueAt(index);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800455 }
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100456 if (allWindowsDrawn()) {
Vishnu Nair132ee832018-09-28 15:00:05 -0700457 reset(false /* abort */, null /* WindowingModeTransitionInfo */);
Jorim Jaggi275561a2016-02-23 10:11:02 -0500458 }
459 }
460
Jorim Jaggicdfc04e2017-04-28 19:06:24 +0200461 /**
462 * Notifies the tracker that the visibility of an app is changing.
463 *
464 * @param activityRecord the app that is changing its visibility
Jorim Jaggicdfc04e2017-04-28 19:06:24 +0200465 */
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200466 void notifyVisibilityChanged(ActivityRecord activityRecord) {
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100467 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.get(
468 activityRecord.getWindowingMode());
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200469 if (info == null) {
470 return;
471 }
472 if (info.launchedActivity != activityRecord) {
473 return;
474 }
475 final TaskRecord t = activityRecord.getTask();
476 final SomeArgs args = SomeArgs.obtain();
477 args.arg1 = t;
478 args.arg2 = activityRecord;
479 mHandler.obtainMessage(MSG_CHECK_VISIBILITY, args).sendToTarget();
480 }
Jorim Jaggicdfc04e2017-04-28 19:06:24 +0200481
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200482 private void checkVisibility(TaskRecord t, ActivityRecord r) {
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700483 synchronized (mSupervisor.mService.mGlobalLock) {
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200484
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100485 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.get(
486 r.getWindowingMode());
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200487
488 // If we have an active transition that's waiting on a certain activity that will be
489 // invisible now, we'll never get onWindowsDrawn, so abort the transition if necessary.
490 if (info != null && !t.isVisible()) {
491 if (DEBUG_METRICS) Slog.i(TAG, "notifyVisibilityChanged to invisible"
492 + " activity=" + r);
493 logAppTransitionCancel(info);
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100494 mWindowingModeTransitionInfo.remove(r.getWindowingMode());
495 if (mWindowingModeTransitionInfo.size() == 0) {
Vishnu Nair132ee832018-09-28 15:00:05 -0700496 reset(true /* abort */, info);
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200497 }
Jorim Jaggicdfc04e2017-04-28 19:06:24 +0200498 }
499 }
500 }
501
Jorim Jaggi515dd682017-05-05 15:05:07 +0200502 /**
503 * Notifies the tracker that we called immediately before we call bindApplication on the client.
504 *
505 * @param app The client into which we'll call bindApplication.
506 */
507 void notifyBindApplication(ProcessRecord app) {
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100508 for (int i = mWindowingModeTransitionInfo.size() - 1; i >= 0; i--) {
509 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.valueAt(i);
Jorim Jaggi515dd682017-05-05 15:05:07 +0200510
511 // App isn't attached to record yet, so match with info.
512 if (info.launchedActivity.appInfo == app.info) {
513 info.bindApplicationDelayMs = calculateCurrentDelay();
514 }
515 }
516 }
517
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100518 private boolean allWindowsDrawn() {
519 for (int index = mWindowingModeTransitionInfo.size() - 1; index >= 0; index--) {
520 if (!mWindowingModeTransitionInfo.valueAt(index).loggedWindowsDrawn) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800521 return false;
522 }
523 }
524 return true;
Jorim Jaggi275561a2016-02-23 10:11:02 -0500525 }
526
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800527 private boolean isAnyTransitionActive() {
528 return mCurrentTransitionStartTime != INVALID_START_TIME
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100529 && mWindowingModeTransitionInfo.size() > 0;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800530 }
531
Vishnu Nair132ee832018-09-28 15:00:05 -0700532 private void reset(boolean abort, WindowingModeTransitionInfo info) {
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200533 if (DEBUG_METRICS) Slog.i(TAG, "reset abort=" + abort);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800534 if (!abort && isAnyTransitionActive()) {
535 logAppTransitionMultiEvents();
536 }
Vishnu Nair132ee832018-09-28 15:00:05 -0700537 stopLaunchTrace(info);
Jorim Jaggi275561a2016-02-23 10:11:02 -0500538 mCurrentTransitionStartTime = INVALID_START_TIME;
Vishnu Nair132ee832018-09-28 15:00:05 -0700539 mCurrentTransitionDelayMs = INVALID_DELAY;
Jorim Jaggi275561a2016-02-23 10:11:02 -0500540 mLoggedTransitionStarting = false;
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100541 mWindowingModeTransitionInfo.clear();
Jorim Jaggi275561a2016-02-23 10:11:02 -0500542 }
543
544 private int calculateCurrentDelay() {
Jorim Jaggi275561a2016-02-23 10:11:02 -0500545 // Shouldn't take more than 25 days to launch an app, so int is fine here.
Alison Cichowlasb7f67ab2017-04-25 18:04:40 -0400546 return (int) (SystemClock.uptimeMillis() - mCurrentTransitionStartTime);
Jorim Jaggi275561a2016-02-23 10:11:02 -0500547 }
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800548
Sudheer Shankac766db02017-06-12 10:37:29 -0700549 private int calculateDelay(long timestamp) {
550 // Shouldn't take more than 25 days to launch an app, so int is fine here.
551 return (int) (timestamp - mCurrentTransitionStartTime);
552 }
553
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100554 private void logAppTransitionCancel(WindowingModeTransitionInfo info) {
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200555 final int type = getTransitionType(info);
Vishnu Nair132ee832018-09-28 15:00:05 -0700556 if (type == INVALID_TRANSITION_TYPE) {
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200557 return;
558 }
559 final LogMaker builder = new LogMaker(APP_TRANSITION_CANCELLED);
560 builder.setPackageName(info.launchedActivity.packageName);
561 builder.setType(type);
562 builder.addTaggedData(FIELD_CLASS_NAME, info.launchedActivity.info.name);
563 mMetricsLogger.write(builder);
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000564 StatsLog.write(
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800565 StatsLog.APP_START_CANCELED,
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000566 info.launchedActivity.appInfo.uid,
567 info.launchedActivity.packageName,
568 convertAppStartTransitionType(type),
569 info.launchedActivity.info.name);
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200570 }
571
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800572 private void logAppTransitionMultiEvents() {
Jorim Jaggi172e99f2017-10-20 14:33:18 +0200573 if (DEBUG_METRICS) Slog.i(TAG, "logging transition events");
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100574 for (int index = mWindowingModeTransitionInfo.size() - 1; index >= 0; index--) {
575 final WindowingModeTransitionInfo info = mWindowingModeTransitionInfo.valueAt(index);
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800576 final int type = getTransitionType(info);
Vishnu Nair132ee832018-09-28 15:00:05 -0700577 if (type == INVALID_TRANSITION_TYPE) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800578 return;
579 }
Calin Juravle759fbda2018-02-20 19:52:30 +0000580
581 // Take a snapshot of the transition info before sending it to the handler for logging.
582 // This will avoid any races with other operations that modify the ActivityRecord.
583 final WindowingModeTransitionInfoSnapshot infoSnapshot =
584 new WindowingModeTransitionInfoSnapshot(info);
Ng Zhi An83473542018-02-20 09:02:14 -0800585 final int currentTransitionDeviceUptime = mCurrentTransitionDeviceUptime;
586 final int currentTransitionDelayMs = mCurrentTransitionDelayMs;
587 BackgroundThread.getHandler().post(() -> logAppTransition(
588 currentTransitionDeviceUptime, currentTransitionDelayMs, infoSnapshot));
Vishnu Nair132ee832018-09-28 15:00:05 -0700589 BackgroundThread.getHandler().post(() -> logAppDisplayed(infoSnapshot));
Calin Juravle759fbda2018-02-20 19:52:30 +0000590
591 info.launchedActivity.info.launchToken = null;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800592 }
593 }
594
Ng Zhi An83473542018-02-20 09:02:14 -0800595 // This gets called on a background thread without holding the activity manager lock.
Calin Juravle759fbda2018-02-20 19:52:30 +0000596 private void logAppTransition(int currentTransitionDeviceUptime, int currentTransitionDelayMs,
597 WindowingModeTransitionInfoSnapshot info) {
598 final LogMaker builder = new LogMaker(APP_TRANSITION);
599 builder.setPackageName(info.packageName);
600 builder.setType(info.type);
601 builder.addTaggedData(FIELD_CLASS_NAME, info.launchedActivityName);
602 final boolean isInstantApp = info.applicationInfo.isInstantApp();
603 if (info.launchedActivityLaunchedFromPackage != null) {
604 builder.addTaggedData(APP_TRANSITION_CALLING_PACKAGE_NAME,
605 info.launchedActivityLaunchedFromPackage);
606 }
607 String launchToken = info.launchedActivityLaunchToken;
608 if (launchToken != null) {
609 builder.addTaggedData(FIELD_INSTANT_APP_LAUNCH_TOKEN, launchToken);
610 }
611 builder.addTaggedData(APP_TRANSITION_IS_EPHEMERAL, isInstantApp ? 1 : 0);
612 builder.addTaggedData(APP_TRANSITION_DEVICE_UPTIME_SECONDS,
613 currentTransitionDeviceUptime);
614 builder.addTaggedData(APP_TRANSITION_DELAY_MS, currentTransitionDelayMs);
615 builder.setSubtype(info.reason);
Vishnu Nair132ee832018-09-28 15:00:05 -0700616 if (info.startingWindowDelayMs != INVALID_DELAY) {
Calin Juravle759fbda2018-02-20 19:52:30 +0000617 builder.addTaggedData(APP_TRANSITION_STARTING_WINDOW_DELAY_MS,
618 info.startingWindowDelayMs);
619 }
Vishnu Nair132ee832018-09-28 15:00:05 -0700620 if (info.bindApplicationDelayMs != INVALID_DELAY) {
Calin Juravle759fbda2018-02-20 19:52:30 +0000621 builder.addTaggedData(APP_TRANSITION_BIND_APPLICATION_DELAY_MS,
622 info.bindApplicationDelayMs);
623 }
624 builder.addTaggedData(APP_TRANSITION_WINDOWS_DRAWN_DELAY_MS, info.windowsDrawnDelayMs);
625 final ArtManagerInternal artManagerInternal = getArtManagerInternal();
626 final PackageOptimizationInfo packageOptimizationInfo =
627 (artManagerInternal == null) || (info.launchedActivityAppRecordRequiredAbi == null)
628 ? PackageOptimizationInfo.createWithNoInfo()
629 : artManagerInternal.getPackageOptimizationInfo(
630 info.applicationInfo,
631 info.launchedActivityAppRecordRequiredAbi);
632 builder.addTaggedData(PACKAGE_OPTIMIZATION_COMPILATION_REASON,
633 packageOptimizationInfo.getCompilationReason());
634 builder.addTaggedData(PACKAGE_OPTIMIZATION_COMPILATION_FILTER,
635 packageOptimizationInfo.getCompilationFilter());
636 mMetricsLogger.write(builder);
637 StatsLog.write(
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800638 StatsLog.APP_START_OCCURRED,
Calin Juravle759fbda2018-02-20 19:52:30 +0000639 info.applicationInfo.uid,
640 info.packageName,
641 convertAppStartTransitionType(info.type),
642 info.launchedActivityName,
643 info.launchedActivityLaunchedFromPackage,
644 isInstantApp,
645 currentTransitionDeviceUptime * 1000,
646 info.reason,
647 currentTransitionDelayMs,
648 info.startingWindowDelayMs,
649 info.bindApplicationDelayMs,
650 info.windowsDrawnDelayMs,
651 launchToken,
652 packageOptimizationInfo.getCompilationReason(),
653 packageOptimizationInfo.getCompilationFilter());
Ng Zhi An83473542018-02-20 09:02:14 -0800654 logAppStartMemoryStateCapture(info);
Calin Juravle759fbda2018-02-20 19:52:30 +0000655 }
656
Vishnu Nair132ee832018-09-28 15:00:05 -0700657 private void logAppDisplayed(WindowingModeTransitionInfoSnapshot info) {
658 if (info.type != TYPE_TRANSITION_WARM_LAUNCH && info.type != TYPE_TRANSITION_COLD_LAUNCH) {
659 return;
660 }
661
662 EventLog.writeEvent(AM_ACTIVITY_LAUNCH_TIME,
663 info.userId, info.activityRecordIdHashCode, info.launchedActivityShortComponentName,
664 info.windowsDrawnDelayMs);
665
666 StringBuilder sb = mStringBuilder;
667 sb.setLength(0);
668 sb.append("Displayed ");
669 sb.append(info.launchedActivityShortComponentName);
670 sb.append(": ");
671 TimeUtils.formatDuration(info.windowsDrawnDelayMs, sb);
672 Log.i(TAG, sb.toString());
673 }
674
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000675 private int convertAppStartTransitionType(int tronType) {
676 if (tronType == TYPE_TRANSITION_COLD_LAUNCH) {
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800677 return StatsLog.APP_START_OCCURRED__TYPE__COLD;
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000678 }
679 if (tronType == TYPE_TRANSITION_WARM_LAUNCH) {
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800680 return StatsLog.APP_START_OCCURRED__TYPE__WARM;
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000681 }
682 if (tronType == TYPE_TRANSITION_HOT_LAUNCH) {
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800683 return StatsLog.APP_START_OCCURRED__TYPE__HOT;
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000684 }
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800685 return StatsLog.APP_START_OCCURRED__TYPE__UNKNOWN;
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000686 }
687
Vishnu Nair132ee832018-09-28 15:00:05 -0700688 WindowingModeTransitionInfoSnapshot logAppTransitionReportedDrawn(ActivityRecord r,
689 boolean restoredFromBundle) {
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100690 final WindowingModeTransitionInfo info = mLastWindowingModeTransitionInfo.get(
691 r.getWindowingMode());
Jorim Jaggi4d27b842017-08-17 17:22:26 +0200692 if (info == null) {
Vishnu Nair132ee832018-09-28 15:00:05 -0700693 return null;
Jorim Jaggi4d27b842017-08-17 17:22:26 +0200694 }
Chris Wailes35c193c2018-10-09 18:12:00 -0700695
696 // Record the handling of the reportFullyDrawn callback in the trace system. This is not
697 // actually used to trace this function, but instead the logical task that this function
698 // fullfils (handling reportFullyDrawn() callbacks).
699 Trace.traceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER,
700 "ActivityManager:ReportingFullyDrawn " + info.launchedActivity.packageName);
701
Jorim Jaggi4d27b842017-08-17 17:22:26 +0200702 final LogMaker builder = new LogMaker(APP_TRANSITION_REPORTED_DRAWN);
703 builder.setPackageName(r.packageName);
704 builder.addTaggedData(FIELD_CLASS_NAME, r.info.name);
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000705 long startupTimeMs = SystemClock.uptimeMillis() - mLastTransitionStartTime;
706 builder.addTaggedData(APP_TRANSITION_REPORTED_DRAWN_MS, startupTimeMs);
Jorim Jaggi4d27b842017-08-17 17:22:26 +0200707 builder.setType(restoredFromBundle
708 ? TYPE_TRANSITION_REPORTED_DRAWN_WITH_BUNDLE
709 : TYPE_TRANSITION_REPORTED_DRAWN_NO_BUNDLE);
710 builder.addTaggedData(APP_TRANSITION_PROCESS_RUNNING,
711 info.currentTransitionProcessRunning ? 1 : 0);
712 mMetricsLogger.write(builder);
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000713 StatsLog.write(
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800714 StatsLog.APP_START_FULLY_DRAWN,
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000715 info.launchedActivity.appInfo.uid,
716 info.launchedActivity.packageName,
717 restoredFromBundle
Chenjie Yu5caaa9d2018-03-06 15:48:54 -0800718 ? StatsLog.APP_START_FULLY_DRAWN__TYPE__WITH_BUNDLE
719 : StatsLog.APP_START_FULLY_DRAWN__TYPE__WITHOUT_BUNDLE,
Olivier Gaillardaed7f122017-12-12 14:26:22 +0000720 info.launchedActivity.info.name,
721 info.currentTransitionProcessRunning,
722 startupTimeMs);
Chris Wailes35c193c2018-10-09 18:12:00 -0700723
724 // Ends the trace started at the beginning of this function. This is located here to allow
725 // the trace slice to have a noticable duration.
726 Trace.traceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER);
727
Vishnu Nair132ee832018-09-28 15:00:05 -0700728 final WindowingModeTransitionInfoSnapshot infoSnapshot =
729 new WindowingModeTransitionInfoSnapshot(info, r, (int) startupTimeMs);
730 BackgroundThread.getHandler().post(() -> logAppFullyDrawn(infoSnapshot));
731 return infoSnapshot;
732 }
733
734 private void logAppFullyDrawn(WindowingModeTransitionInfoSnapshot info) {
735 if (info.type != TYPE_TRANSITION_WARM_LAUNCH && info.type != TYPE_TRANSITION_COLD_LAUNCH) {
736 return;
737 }
738
739 StringBuilder sb = mStringBuilder;
740 sb.setLength(0);
741 sb.append("Fully drawn ");
742 sb.append(info.launchedActivityShortComponentName);
743 sb.append(": ");
744 TimeUtils.formatDuration(info.windowsFullyDrawnDelayMs, sb);
745 Log.i(TAG, sb.toString());
Jorim Jaggi4d27b842017-08-17 17:22:26 +0200746 }
747
Michal Karpinski201bc0c2018-07-20 15:32:00 +0100748 void logActivityStart(Intent intent, ProcessRecord callerApp, ActivityRecord r,
749 int callingUid, String callingPackage, int callingUidProcState,
750 boolean callingUidHasAnyVisibleWindow,
751 int realCallingUid, int realCallingUidProcState,
752 boolean realCallingUidHasAnyVisibleWindow,
753 int targetUid, String targetPackage, int targetUidProcState,
754 boolean targetUidHasAnyVisibleWindow, String targetWhitelistTag,
755 boolean comingFromPendingIntent) {
756
757 final long nowElapsed = SystemClock.elapsedRealtime();
758 final long nowUptime = SystemClock.uptimeMillis();
759 final LogMaker builder = new LogMaker(ACTION_ACTIVITY_START);
760 builder.setTimestamp(System.currentTimeMillis());
761 builder.addTaggedData(FIELD_CALLING_UID, callingUid);
762 builder.addTaggedData(FIELD_CALLING_PACKAGE_NAME, callingPackage);
763 builder.addTaggedData(FIELD_CALLING_UID_PROC_STATE,
764 processStateAmToProto(callingUidProcState));
765 builder.addTaggedData(FIELD_CALLING_UID_HAS_ANY_VISIBLE_WINDOW,
766 callingUidHasAnyVisibleWindow ? 1 : 0);
767 builder.addTaggedData(FIELD_REAL_CALLING_UID, realCallingUid);
768 builder.addTaggedData(FIELD_REAL_CALLING_UID_PROC_STATE,
769 processStateAmToProto(realCallingUidProcState));
770 builder.addTaggedData(FIELD_REAL_CALLING_UID_HAS_ANY_VISIBLE_WINDOW,
771 realCallingUidHasAnyVisibleWindow ? 1 : 0);
772 builder.addTaggedData(FIELD_TARGET_UID, targetUid);
773 builder.addTaggedData(FIELD_TARGET_PACKAGE_NAME, targetPackage);
774 builder.addTaggedData(FIELD_TARGET_UID_PROC_STATE,
775 processStateAmToProto(targetUidProcState));
776 builder.addTaggedData(FIELD_TARGET_UID_HAS_ANY_VISIBLE_WINDOW,
777 targetUidHasAnyVisibleWindow ? 1 : 0);
778 builder.addTaggedData(FIELD_TARGET_WHITELIST_TAG, targetWhitelistTag);
779 builder.addTaggedData(FIELD_TARGET_SHORT_COMPONENT_NAME, r.shortComponentName);
780 builder.addTaggedData(FIELD_COMING_FROM_PENDING_INTENT, comingFromPendingIntent ? 1 : 0);
781 builder.addTaggedData(FIELD_INTENT_ACTION, intent.getAction());
782 if (callerApp != null) {
783 builder.addTaggedData(FIELD_PROCESS_RECORD_PROCESS_NAME, callerApp.processName);
784 builder.addTaggedData(FIELD_PROCESS_RECORD_CUR_PROC_STATE,
785 processStateAmToProto(callerApp.curProcState));
786 builder.addTaggedData(FIELD_PROCESS_RECORD_HAS_CLIENT_ACTIVITIES,
787 callerApp.hasClientActivities ? 1 : 0);
788 builder.addTaggedData(FIELD_PROCESS_RECORD_HAS_FOREGROUND_SERVICES,
789 callerApp.hasForegroundServices() ? 1 : 0);
790 builder.addTaggedData(FIELD_PROCESS_RECORD_HAS_FOREGROUND_ACTIVITIES,
791 callerApp.foregroundActivities ? 1 : 0);
792 builder.addTaggedData(FIELD_PROCESS_RECORD_HAS_TOP_UI, callerApp.hasTopUi ? 1 : 0);
793 builder.addTaggedData(FIELD_PROCESS_RECORD_HAS_OVERLAY_UI,
794 callerApp.hasOverlayUi ? 1 : 0);
795 builder.addTaggedData(FIELD_PROCESS_RECORD_PENDING_UI_CLEAN,
796 callerApp.pendingUiClean ? 1 : 0);
797 if (callerApp.interactionEventTime != 0) {
798 builder.addTaggedData(FIELD_PROCESS_RECORD_MILLIS_SINCE_LAST_INTERACTION_EVENT,
799 (nowElapsed - callerApp.interactionEventTime));
800 }
801 if (callerApp.fgInteractionTime != 0) {
802 builder.addTaggedData(FIELD_PROCESS_RECORD_MILLIS_SINCE_FG_INTERACTION,
803 (nowElapsed - callerApp.fgInteractionTime));
804 }
805 if (callerApp.whenUnimportant != 0) {
806 builder.addTaggedData(FIELD_PROCESS_RECORD_MILLIS_SINCE_UNIMPORTANT,
807 (nowUptime - callerApp.whenUnimportant));
808 }
809 }
810 builder.addTaggedData(FIELD_ACTIVITY_RECORD_LAUNCH_MODE, r.info.launchMode);
811 builder.addTaggedData(FIELD_ACTIVITY_RECORD_TARGET_ACTIVITY, r.info.targetActivity);
812 builder.addTaggedData(FIELD_ACTIVITY_RECORD_FLAGS, r.info.flags);
813 builder.addTaggedData(FIELD_ACTIVITY_RECORD_REAL_ACTIVITY, r.realActivity.toShortString());
814 builder.addTaggedData(FIELD_ACTIVITY_RECORD_SHORT_COMPONENT_NAME, r.shortComponentName);
815 builder.addTaggedData(FIELD_ACTIVITY_RECORD_PROCESS_NAME, r.processName);
816 builder.addTaggedData(FIELD_ACTIVITY_RECORD_IS_FULLSCREEN, r.fullscreen ? 1 : 0);
817 builder.addTaggedData(FIELD_ACTIVITY_RECORD_IS_NO_DISPLAY, r.noDisplay ? 1 : 0);
818 if (r.lastVisibleTime != 0) {
819 builder.addTaggedData(FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_VISIBLE,
820 (nowUptime - r.lastVisibleTime));
821 }
822 if (r.resultTo != null) {
823 builder.addTaggedData(FIELD_ACTIVITY_RECORD_RESULT_TO_PKG_NAME, r.resultTo.packageName);
824 builder.addTaggedData(FIELD_ACTIVITY_RECORD_RESULT_TO_SHORT_COMPONENT_NAME,
825 r.resultTo.shortComponentName);
826 }
827 builder.addTaggedData(FIELD_ACTIVITY_RECORD_IS_VISIBLE, r.visible ? 1 : 0);
828 builder.addTaggedData(FIELD_ACTIVITY_RECORD_IS_VISIBLE_IGNORING_KEYGUARD,
829 r.visibleIgnoringKeyguard ? 1 : 0);
830 if (r.lastLaunchTime != 0) {
831 builder.addTaggedData(FIELD_ACTIVITY_RECORD_MILLIS_SINCE_LAST_LAUNCH,
832 (nowUptime - r.lastLaunchTime));
833 }
834 mMetricsLogger.write(builder);
835 }
836
Jorim Jaggi9b58f2d2018-02-19 17:48:44 +0100837 private int getTransitionType(WindowingModeTransitionInfo info) {
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800838 if (info.currentTransitionProcessRunning) {
839 if (info.startResult == START_SUCCESS) {
840 return TYPE_TRANSITION_WARM_LAUNCH;
841 } else if (info.startResult == START_TASK_TO_FRONT) {
842 return TYPE_TRANSITION_HOT_LAUNCH;
843 }
844 } else if (info.startResult == START_SUCCESS) {
845 return TYPE_TRANSITION_COLD_LAUNCH;
846 }
Vishnu Nair132ee832018-09-28 15:00:05 -0700847 return INVALID_TRANSITION_TYPE;
Jorim Jaggi3878ca32017-02-02 17:13:05 -0800848 }
Ng Zhi Anbbefdec2018-01-30 17:12:39 -0800849
Ng Zhi An83473542018-02-20 09:02:14 -0800850 private void logAppStartMemoryStateCapture(WindowingModeTransitionInfoSnapshot info) {
851 if (info.processRecord == null) {
Ng Zhi Anbbefdec2018-01-30 17:12:39 -0800852 if (DEBUG_METRICS) Slog.i(TAG, "logAppStartMemoryStateCapture processRecord null");
853 return;
854 }
855
Wale Ogunwalef6733932018-06-27 05:14:34 -0700856 final int pid = info.processRecord.getPid();
Ng Zhi An83473542018-02-20 09:02:14 -0800857 final int uid = info.applicationInfo.uid;
Rajeev Kumarbfcd9202018-03-02 22:42:13 +0000858 final MemoryStat memoryStat = readMemoryStatFromFilesystem(uid, pid);
Ng Zhi Anbbefdec2018-01-30 17:12:39 -0800859 if (memoryStat == null) {
860 if (DEBUG_METRICS) Slog.i(TAG, "logAppStartMemoryStateCapture memoryStat null");
861 return;
862 }
863
864 StatsLog.write(
865 StatsLog.APP_START_MEMORY_STATE_CAPTURED,
866 uid,
Ng Zhi An83473542018-02-20 09:02:14 -0800867 info.processName,
868 info.launchedActivityName,
Ng Zhi Anbbefdec2018-01-30 17:12:39 -0800869 memoryStat.pgfault,
870 memoryStat.pgmajfault,
871 memoryStat.rssInBytes,
872 memoryStat.cacheInBytes,
873 memoryStat.swapInBytes);
874 }
875
Wale Ogunwalef6733932018-06-27 05:14:34 -0700876 private WindowProcessController findProcessForActivity(ActivityRecord launchedActivity) {
Ng Zhi Anbbefdec2018-01-30 17:12:39 -0800877 return launchedActivity != null
Wale Ogunwalef6733932018-06-27 05:14:34 -0700878 ? mSupervisor.mService.mProcessNames.get(
Wale Ogunwalec9e57de2018-05-08 14:28:07 -0700879 launchedActivity.processName, launchedActivity.appInfo.uid)
Ng Zhi Anbbefdec2018-01-30 17:12:39 -0800880 : null;
881 }
Calin Juravle759fbda2018-02-20 19:52:30 +0000882
883 private ArtManagerInternal getArtManagerInternal() {
884 if (mArtManagerInternal == null) {
885 // Note that this may be null.
886 // ArtManagerInternal is registered during PackageManagerService
887 // initialization which happens after ActivityManagerService.
888 mArtManagerInternal = LocalServices.getService(ArtManagerInternal.class);
889 }
890 return mArtManagerInternal;
891 }
Vishnu Nair132ee832018-09-28 15:00:05 -0700892
893 /**
Chris Wailes35c193c2018-10-09 18:12:00 -0700894 * Starts traces for app launch.
Vishnu Nair132ee832018-09-28 15:00:05 -0700895 *
896 * @param info
897 * */
898 private void startTraces(WindowingModeTransitionInfo info) {
899 if (info == null) {
900 return;
901 }
Vishnu Nair132ee832018-09-28 15:00:05 -0700902 int transitionType = getTransitionType(info);
903 if (!info.launchTraceActive && transitionType == TYPE_TRANSITION_WARM_LAUNCH
904 || transitionType == TYPE_TRANSITION_COLD_LAUNCH) {
905 Trace.asyncTraceBegin(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: "
906 + info.launchedActivity.packageName, 0);
Vishnu Nair132ee832018-09-28 15:00:05 -0700907 info.launchTraceActive = true;
908 }
909 }
910
911 private void stopLaunchTrace(WindowingModeTransitionInfo info) {
912 if (info == null) {
913 return;
914 }
915 if (info.launchTraceActive) {
916 Trace.asyncTraceEnd(Trace.TRACE_TAG_ACTIVITY_MANAGER, "launching: "
917 + info.launchedActivity.packageName, 0);
918 info.launchTraceActive = false;
919 }
920 }
Filip Gruszczynski77d94482015-12-11 13:59:52 -0800921}