diff options
author | Eric Holk <eholk@google.com> | 2019-09-10 14:38:07 -0700 |
---|---|---|
committer | Eric Holk <eholk@google.com> | 2019-09-10 15:20:35 -0700 |
commit | c2d4071b2a5d113e8f5d3edf94944947c2246e4f (patch) | |
tree | 156de7a183464ead9925810b3c244a367b67d1d5 /startop | |
parent | 4777ee062110421089b8eb8bd64b383937cf1739 (diff) |
Add more system_server benchmarks
This CL adds:
* getLaunchIntentForPackage
* getPackagesForUid
* getPackageUid
* checkPermission
* checkSignatures
* queryBroadcastReceivers
* hasSystemFeature
* resolveService
* getRunningAppProcesses
Bug: 140743821
Change-Id: I61118f29ee4b4113b6d0f9b95458de3798bc4ce7
Diffstat (limited to 'startop')
-rw-r--r-- | startop/apps/test/src/SystemServerBenchmarkActivity.java | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/startop/apps/test/src/SystemServerBenchmarkActivity.java b/startop/apps/test/src/SystemServerBenchmarkActivity.java index 61d43226c41e..ed3cbe9e3e30 100644 --- a/startop/apps/test/src/SystemServerBenchmarkActivity.java +++ b/startop/apps/test/src/SystemServerBenchmarkActivity.java @@ -17,8 +17,10 @@ package com.android.startop.test; import android.app.Activity; +import android.app.ActivityManager; import android.content.ComponentName; import android.content.Context; +import android.content.Intent; import android.content.pm.ApplicationInfo; import android.content.pm.PackageManager; import android.content.pm.PackageManager.NameNotFoundException; @@ -139,6 +141,10 @@ public class SystemServerBenchmarkActivity extends Activity { throw new RuntimeException(e); } }); + + new Benchmark(benchmarkList, "getPackagesForUid", () -> { + pm.getPackagesForUid(app.uid); + }); } catch (NameNotFoundException e) { throw new RuntimeException(e); } @@ -152,5 +158,45 @@ public class SystemServerBenchmarkActivity extends Activity { } }); + new Benchmark(benchmarkList, "getLaunchIntentForPackage", () -> { + pm.getLaunchIntentForPackage("com.android.startop.test"); + }); + + new Benchmark(benchmarkList, "getPackageUid", () -> { + try { + pm.getPackageUid("com.android.startop.test", 0); + } catch (NameNotFoundException e) { + throw new RuntimeException(e); + } + }); + + new Benchmark(benchmarkList, "checkPermission", () -> { + // Check for the first permission I could find. + pm.checkPermission("android.permission.SEND_SMS", "com.android.startop.test"); + }); + + new Benchmark(benchmarkList, "checkSignatures", () -> { + // Compare with settings, since settings is on both AOSP and Master builds + pm.checkSignatures("com.android.settings", "com.android.startop.test"); + }); + + Intent intent = new Intent(Intent.ACTION_BOOT_COMPLETED); + new Benchmark(benchmarkList, "queryBroadcastReceivers", () -> { + pm.queryBroadcastReceivers(intent, 0); + }); + + new Benchmark(benchmarkList, "hasSystemFeature", () -> { + pm.hasSystemFeature(PackageManager.FEATURE_CAMERA); + }); + + new Benchmark(benchmarkList, "resolveService", () -> { + pm.resolveService(intent, 0); + }); + + ActivityManager am = (ActivityManager)getSystemService(Context.ACTIVITY_SERVICE); + new Benchmark(benchmarkList, "getRunningAppProcesses", () -> { + am.getRunningAppProcesses(); + }); + } } |