58 lines
2.1 KiB
Java
Raw Normal View History

package com.topjohnwu.magisk.superuser;
import android.content.ContentValues;
2017-06-01 00:19:52 +08:00
import android.content.pm.ApplicationInfo;
2017-01-25 01:23:41 +08:00
import android.content.pm.PackageManager;
import android.database.Cursor;
2017-06-01 00:19:52 +08:00
import android.support.annotation.NonNull;
2017-06-01 00:19:52 +08:00
public class Policy implements Comparable<Policy>{
2017-01-26 01:13:23 +08:00
public static final int INTERACTIVE = 0;
public static final int DENY = 1;
public static final int ALLOW = 2;
public int uid, policy = INTERACTIVE;
public long until;
2017-01-30 19:27:00 +08:00
public boolean logging = true, notification = true;
public String packageName, appName;
2017-06-01 00:19:52 +08:00
public ApplicationInfo info;
2017-01-30 19:27:00 +08:00
public Policy(int uid, PackageManager pm) throws PackageManager.NameNotFoundException {
2017-01-25 01:23:41 +08:00
String[] pkgs = pm.getPackagesForUid(uid);
if (pkgs != null && pkgs.length > 0) {
2017-01-31 03:39:24 +08:00
this.uid = uid;
2017-01-25 01:23:41 +08:00
packageName = pkgs[0];
2017-06-01 00:19:52 +08:00
info = pm.getApplicationInfo(packageName, 0);
appName = info.loadLabel(pm).toString();
2017-01-30 19:27:00 +08:00
} else throw new PackageManager.NameNotFoundException();
2017-01-25 01:23:41 +08:00
}
2017-06-01 00:19:52 +08:00
public Policy(Cursor c, PackageManager pm) throws PackageManager.NameNotFoundException {
uid = c.getInt(c.getColumnIndex("uid"));
packageName = c.getString(c.getColumnIndex("package_name"));
policy = c.getInt(c.getColumnIndex("policy"));
until = c.getLong(c.getColumnIndex("until"));
logging = c.getInt(c.getColumnIndex("logging")) != 0;
notification = c.getInt(c.getColumnIndex("notification")) != 0;
2017-06-01 00:19:52 +08:00
info = pm.getApplicationInfo(packageName, 0);
appName = info.loadLabel(pm).toString();
}
public ContentValues getContentValues() {
ContentValues values = new ContentValues();
values.put("uid", uid);
values.put("package_name", packageName);
2017-01-27 01:02:40 +08:00
values.put("policy", policy);
values.put("until", until);
values.put("logging", logging ? 1 : 0);
values.put("notification", notification ? 1 : 0);
return values;
}
2017-06-01 00:19:52 +08:00
@Override
public int compareTo(@NonNull Policy policy) {
return appName.toLowerCase().compareTo(policy.appName.toLowerCase());
}
}