NetworkScorerAppManagerpublic final class NetworkScorerAppManager extends Object Internal class for managing the primary network scorer application.
TODO: Rename this to something more generic. |
Fields Summary |
---|
private static final String | TAG | private static final android.content.Intent | SCORE_INTENT |
Constructors Summary |
---|
private NetworkScorerAppManager()This class cannot be instantiated.
|
Methods Summary |
---|
public static android.net.NetworkScorerAppManager$NetworkScorerAppData | getActiveScorer(android.content.Context context)Get the application to use for scoring networks.
String scorerPackage = Settings.Global.getString(context.getContentResolver(),
Settings.Global.NETWORK_SCORER_APP);
return getScorer(context, scorerPackage);
| public static java.util.Collection | getAllValidScorers(android.content.Context context)Returns the list of available scorer apps.
A network scorer is any application which:
- Declares the {@link android.Manifest.permission#SCORE_NETWORKS} permission.
- Includes a receiver for {@link NetworkScoreManager#ACTION_SCORE_NETWORKS} guarded by the
{@link android.Manifest.permission#BROADCAST_NETWORK_PRIVILEGED} permission.
List<NetworkScorerAppData> scorers = new ArrayList<>();
PackageManager pm = context.getPackageManager();
// Only apps installed under the primary user of the device can be scorers.
List<ResolveInfo> receivers =
pm.queryBroadcastReceivers(SCORE_INTENT, 0 /* flags */, UserHandle.USER_OWNER);
for (ResolveInfo receiver : receivers) {
// This field is a misnomer, see android.content.pm.ResolveInfo#activityInfo
final ActivityInfo receiverInfo = receiver.activityInfo;
if (receiverInfo == null) {
// Should never happen with queryBroadcastReceivers, but invalid nonetheless.
continue;
}
if (!permission.BROADCAST_NETWORK_PRIVILEGED.equals(receiverInfo.permission)) {
// Receiver doesn't require the BROADCAST_NETWORK_PRIVILEGED permission, which means
// anyone could trigger network scoring and flood the framework with score requests.
continue;
}
if (pm.checkPermission(permission.SCORE_NETWORKS, receiverInfo.packageName) !=
PackageManager.PERMISSION_GRANTED) {
// Application doesn't hold the SCORE_NETWORKS permission, so the user never
// approved it as a network scorer.
continue;
}
// Optionally, this package may specify a configuration activity.
String configurationActivityClassName = null;
Intent intent = new Intent(NetworkScoreManager.ACTION_CUSTOM_ENABLE);
intent.setPackage(receiverInfo.packageName);
List<ResolveInfo> configActivities = pm.queryIntentActivities(intent, 0 /* flags */);
if (!configActivities.isEmpty()) {
ActivityInfo activityInfo = configActivities.get(0).activityInfo;
if (activityInfo != null) {
configurationActivityClassName = activityInfo.name;
}
}
// NOTE: loadLabel will attempt to load the receiver's label and fall back to the app
// label if none is present.
scorers.add(new NetworkScorerAppData(receiverInfo.packageName,
receiverInfo.loadLabel(pm), configurationActivityClassName));
}
return scorers;
| public static android.net.NetworkScorerAppManager$NetworkScorerAppData | getScorer(android.content.Context context, java.lang.String packageName)Returns the {@link NetworkScorerAppData} for the given app, or null if it's not a scorer.
if (TextUtils.isEmpty(packageName)) {
return null;
}
Collection<NetworkScorerAppData> applications = getAllValidScorers(context);
for (NetworkScorerAppData app : applications) {
if (packageName.equals(app.mPackageName)) {
return app;
}
}
return null;
| public static boolean | isCallerActiveScorer(android.content.Context context, int callingUid)Determine whether the application with the given UID is the enabled scorer.
NetworkScorerAppData defaultApp = getActiveScorer(context);
if (defaultApp == null) {
return false;
}
AppOpsManager appOpsMgr = (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);
try {
appOpsMgr.checkPackage(callingUid, defaultApp.mPackageName);
} catch (SecurityException e) {
return false;
}
// To be extra safe, ensure the caller holds the SCORE_NETWORKS permission. It always
// should, since it couldn't become the active scorer otherwise, but this can't hurt.
return context.checkCallingPermission(Manifest.permission.SCORE_NETWORKS) ==
PackageManager.PERMISSION_GRANTED;
| public static boolean | setActiveScorer(android.content.Context context, java.lang.String packageName)Set the specified package as the default scorer application.
The caller must have permission to write to {@link android.provider.Settings.Global}.
String oldPackageName = Settings.Global.getString(context.getContentResolver(),
Settings.Global.NETWORK_SCORER_APP);
if (TextUtils.equals(oldPackageName, packageName)) {
// No change.
return true;
}
Log.i(TAG, "Changing network scorer from " + oldPackageName + " to " + packageName);
if (packageName == null) {
Settings.Global.putString(context.getContentResolver(),
Settings.Global.NETWORK_SCORER_APP, null);
return true;
} else {
// We only make the change if the new package is valid.
if (getScorer(context, packageName) != null) {
Settings.Global.putString(context.getContentResolver(),
Settings.Global.NETWORK_SCORER_APP, packageName);
return true;
} else {
Log.w(TAG, "Requested network scorer is not valid: " + packageName);
return false;
}
}
|
|