Merge changes I10ab56a8,I7e437c3d,I0413c52f
* changes: profcollectd: trigger trace records processing during system idle profcollectd: Rename config env to persist.* Introduce ProfcollectForwardingService
This commit is contained in:
@@ -5465,6 +5465,10 @@
|
||||
android:permission="android.permission.BIND_JOB_SERVICE" >
|
||||
</service>
|
||||
|
||||
<service android:name="com.android.server.profcollect.ProfcollectForwardingService$ProfcollectBGJobService"
|
||||
android:permission="android.permission.BIND_JOB_SERVICE" >
|
||||
</service>
|
||||
|
||||
<service
|
||||
android:name="com.android.server.autofill.AutofillCompatAccessibilityService"
|
||||
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE"
|
||||
|
||||
@@ -30,6 +30,7 @@ filegroup {
|
||||
":services.midi-sources",
|
||||
":services.net-sources",
|
||||
":services.print-sources",
|
||||
":services.profcollect-sources",
|
||||
":services.restrictions-sources",
|
||||
":services.startop.iorap-sources",
|
||||
":services.systemcaptions-sources",
|
||||
@@ -73,6 +74,7 @@ java_library {
|
||||
"services.net",
|
||||
"services.people",
|
||||
"services.print",
|
||||
"services.profcollect",
|
||||
"services.restrictions",
|
||||
"services.startop",
|
||||
"services.systemcaptions",
|
||||
|
||||
@@ -152,6 +152,7 @@ import com.android.server.policy.role.LegacyRoleResolutionPolicy;
|
||||
import com.android.server.power.PowerManagerService;
|
||||
import com.android.server.power.ShutdownThread;
|
||||
import com.android.server.power.ThermalManagerService;
|
||||
import com.android.server.profcollect.ProfcollectForwardingService;
|
||||
import com.android.server.recoverysystem.RecoverySystemService;
|
||||
import com.android.server.restrictions.RestrictionsManagerService;
|
||||
import com.android.server.role.RoleManagerService;
|
||||
@@ -1219,6 +1220,12 @@ public final class SystemServer {
|
||||
mSystemServiceManager.startService(IorapForwardingService.class);
|
||||
t.traceEnd();
|
||||
|
||||
if (Build.IS_DEBUGGABLE) {
|
||||
t.traceBegin("ProfcollectForwardingService");
|
||||
mSystemServiceManager.startService(ProfcollectForwardingService.class);
|
||||
t.traceEnd();
|
||||
}
|
||||
|
||||
t.traceBegin("SignedConfigService");
|
||||
SignedConfigService.registerUpdateReceiver(mSystemContext);
|
||||
t.traceEnd();
|
||||
|
||||
35
services/profcollect/Android.bp
Normal file
35
services/profcollect/Android.bp
Normal file
@@ -0,0 +1,35 @@
|
||||
// Copyright (C) 2020 The Android Open Source Project
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
filegroup {
|
||||
name: "services.profcollect-javasources",
|
||||
srcs: ["src/**/*.java"],
|
||||
path: "src",
|
||||
visibility: ["//frameworks/base/services"],
|
||||
}
|
||||
|
||||
filegroup {
|
||||
name: "services.profcollect-sources",
|
||||
srcs: [
|
||||
":services.profcollect-javasources",
|
||||
":profcollectd_aidl",
|
||||
],
|
||||
visibility: ["//frameworks/base/services:__subpackages__"],
|
||||
}
|
||||
|
||||
java_library_static {
|
||||
name: "services.profcollect",
|
||||
srcs: [":services.profcollect-sources"],
|
||||
libs: ["services.core"],
|
||||
}
|
||||
3
services/profcollect/OWNERS
Normal file
3
services/profcollect/OWNERS
Normal file
@@ -0,0 +1,3 @@
|
||||
srhines@google.com
|
||||
yabinc@google.com
|
||||
yikong@google.com
|
||||
@@ -0,0 +1,264 @@
|
||||
/**
|
||||
* Copyright (C) 2020 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package com.android.server.profcollect;
|
||||
|
||||
import android.app.job.JobInfo;
|
||||
import android.app.job.JobParameters;
|
||||
import android.app.job.JobScheduler;
|
||||
import android.app.job.JobService;
|
||||
import android.content.ComponentName;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.os.Handler;
|
||||
import android.os.IBinder.DeathRecipient;
|
||||
import android.os.Looper;
|
||||
import android.os.RemoteException;
|
||||
import android.os.ServiceManager;
|
||||
import android.os.SystemProperties;
|
||||
import android.util.Log;
|
||||
|
||||
import com.android.server.IoThread;
|
||||
import com.android.server.LocalServices;
|
||||
import com.android.server.SystemService;
|
||||
import com.android.server.wm.ActivityMetricsLaunchObserver;
|
||||
import com.android.server.wm.ActivityMetricsLaunchObserverRegistry;
|
||||
import com.android.server.wm.ActivityTaskManagerInternal;
|
||||
|
||||
import java.util.concurrent.ThreadLocalRandom;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
/**
|
||||
* System-server-local proxy into the {@code IProfcollectd} native service.
|
||||
*/
|
||||
public final class ProfcollectForwardingService extends SystemService {
|
||||
public static final String LOG_TAG = "ProfcollectForwardingService";
|
||||
|
||||
private static final boolean DEBUG = Log.isLoggable(LOG_TAG, Log.DEBUG);
|
||||
|
||||
private static final long BG_PROCESS_PERIOD = DEBUG
|
||||
? TimeUnit.MINUTES.toMillis(1)
|
||||
: TimeUnit.DAYS.toMillis(1);
|
||||
|
||||
private IProfCollectd mIProfcollect;
|
||||
private static ProfcollectForwardingService sSelfService;
|
||||
private final Handler mHandler = new ProfcollectdHandler(IoThread.getHandler().getLooper());
|
||||
|
||||
public ProfcollectForwardingService(Context context) {
|
||||
super(context);
|
||||
|
||||
if (sSelfService != null) {
|
||||
throw new AssertionError("only one service instance allowed");
|
||||
}
|
||||
sSelfService = this;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onStart() {
|
||||
if (DEBUG) {
|
||||
Log.d(LOG_TAG, "Profcollect forwarding service start");
|
||||
}
|
||||
connectNativeService();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBootPhase(int phase) {
|
||||
if (phase == PHASE_BOOT_COMPLETED) {
|
||||
if (mIProfcollect == null) {
|
||||
return;
|
||||
}
|
||||
if (serviceHasSupportedTraceProvider()) {
|
||||
registerObservers();
|
||||
}
|
||||
ProfcollectBGJobService.schedule(getContext());
|
||||
}
|
||||
}
|
||||
|
||||
private boolean serviceHasSupportedTraceProvider() {
|
||||
if (mIProfcollect == null) {
|
||||
return false;
|
||||
}
|
||||
try {
|
||||
return !mIProfcollect.GetSupportedProvider().isEmpty();
|
||||
} catch (RemoteException e) {
|
||||
Log.e(LOG_TAG, e.getMessage());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private boolean tryConnectNativeService() {
|
||||
if (connectNativeService()) {
|
||||
return true;
|
||||
}
|
||||
// Cannot connect to the native service at this time, retry after a short delay.
|
||||
mHandler.sendEmptyMessageDelayed(ProfcollectdHandler.MESSAGE_BINDER_CONNECT, 5000);
|
||||
return false;
|
||||
}
|
||||
|
||||
private boolean connectNativeService() {
|
||||
try {
|
||||
IProfCollectd profcollectd =
|
||||
IProfCollectd.Stub.asInterface(
|
||||
ServiceManager.getServiceOrThrow("profcollectd"));
|
||||
profcollectd.asBinder().linkToDeath(new ProfcollectdDeathRecipient(), /*flags*/0);
|
||||
mIProfcollect = profcollectd;
|
||||
return true;
|
||||
} catch (ServiceManager.ServiceNotFoundException | RemoteException e) {
|
||||
Log.w(LOG_TAG, "Failed to connect profcollectd binder service.");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private class ProfcollectdHandler extends Handler {
|
||||
public ProfcollectdHandler(Looper looper) {
|
||||
super(looper);
|
||||
}
|
||||
|
||||
public static final int MESSAGE_BINDER_CONNECT = 0;
|
||||
|
||||
@Override
|
||||
public void handleMessage(android.os.Message message) {
|
||||
switch (message.what) {
|
||||
case MESSAGE_BINDER_CONNECT:
|
||||
connectNativeService();
|
||||
break;
|
||||
default:
|
||||
throw new AssertionError("Unknown message: " + message.toString());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private class ProfcollectdDeathRecipient implements DeathRecipient {
|
||||
@Override
|
||||
public void binderDied() {
|
||||
Log.w(LOG_TAG, "profcollectd has died");
|
||||
|
||||
mIProfcollect = null;
|
||||
tryConnectNativeService();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Background trace process service.
|
||||
*/
|
||||
public static class ProfcollectBGJobService extends JobService {
|
||||
// Unique ID in system service
|
||||
private static final int JOB_IDLE_PROCESS = 260817;
|
||||
private static final ComponentName JOB_SERVICE_NAME = new ComponentName(
|
||||
"android",
|
||||
ProfcollectBGJobService.class.getName());
|
||||
|
||||
/**
|
||||
* Attach the service to the system job scheduler.
|
||||
*/
|
||||
public static void schedule(Context context) {
|
||||
JobScheduler js = context.getSystemService(JobScheduler.class);
|
||||
|
||||
js.schedule(new JobInfo.Builder(JOB_IDLE_PROCESS, JOB_SERVICE_NAME)
|
||||
.setRequiresDeviceIdle(true)
|
||||
.setRequiresCharging(true)
|
||||
.setPeriodic(BG_PROCESS_PERIOD)
|
||||
.build());
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onStartJob(JobParameters params) {
|
||||
if (DEBUG) {
|
||||
Log.d(LOG_TAG, "Starting background process job");
|
||||
}
|
||||
|
||||
try {
|
||||
sSelfService.mIProfcollect.ProcessProfile();
|
||||
} catch (RemoteException e) {
|
||||
Log.e(LOG_TAG, e.getMessage());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean onStopJob(JobParameters params) {
|
||||
// TODO: Handle this?
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Event observers
|
||||
private void registerObservers() {
|
||||
registerAppLaunchObserver();
|
||||
}
|
||||
|
||||
private final AppLaunchObserver mAppLaunchObserver = new AppLaunchObserver();
|
||||
private void registerAppLaunchObserver() {
|
||||
ActivityTaskManagerInternal atmInternal =
|
||||
LocalServices.getService(ActivityTaskManagerInternal.class);
|
||||
ActivityMetricsLaunchObserverRegistry launchObserverRegistry =
|
||||
atmInternal.getLaunchObserverRegistry();
|
||||
launchObserverRegistry.registerLaunchObserver(mAppLaunchObserver);
|
||||
}
|
||||
|
||||
private void traceOnAppStart(String packageName) {
|
||||
if (mIProfcollect == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Sample for a fraction of app launches.
|
||||
int traceFrequency =
|
||||
SystemProperties.getInt("persist.profcollectd.applaunch_trace_freq", 2);
|
||||
int randomNum = ThreadLocalRandom.current().nextInt(100);
|
||||
if (randomNum < traceFrequency) {
|
||||
try {
|
||||
if (DEBUG) {
|
||||
Log.d(LOG_TAG, "Tracing on app launch event: " + packageName);
|
||||
}
|
||||
mIProfcollect.TraceOnce("applaunch");
|
||||
} catch (RemoteException e) {
|
||||
Log.e(LOG_TAG, e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private class AppLaunchObserver implements ActivityMetricsLaunchObserver {
|
||||
@Override
|
||||
public void onIntentStarted(Intent intent, long timestampNanos) {
|
||||
traceOnAppStart(intent.getPackage());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onIntentFailed() {
|
||||
// Ignored
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityLaunched(byte[] activity, int temperature) {
|
||||
// Ignored
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityLaunchCancelled(byte[] abortingActivity) {
|
||||
// Ignored
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onActivityLaunchFinished(byte[] finalActivity, long timestampNanos) {
|
||||
// Ignored
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onReportFullyDrawn(byte[] activity, long timestampNanos) {
|
||||
// Ignored
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user