mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-15 09:01:02 -08:00
57 lines
1.8 KiB
Java
57 lines
1.8 KiB
Java
package com.topjohnwu.magisk.container;
|
|
|
|
import android.content.ContentValues;
|
|
import android.database.Cursor;
|
|
|
|
import com.topjohnwu.magisk.MagiskManager;
|
|
|
|
import java.text.DateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.Date;
|
|
|
|
public class SuLogEntry {
|
|
|
|
public int fromUid, toUid, fromPid;
|
|
public String packageName, appName, command;
|
|
public boolean action;
|
|
public Date date;
|
|
|
|
public SuLogEntry(Policy policy) {
|
|
fromUid = policy.uid;
|
|
packageName = policy.packageName;
|
|
appName = policy.appName;
|
|
}
|
|
|
|
public SuLogEntry(Cursor c) {
|
|
fromUid = c.getInt(c.getColumnIndex("from_uid"));
|
|
fromPid = c.getInt(c.getColumnIndex("from_pid"));
|
|
toUid = c.getInt(c.getColumnIndex("to_uid"));
|
|
packageName = c.getString(c.getColumnIndex("package_name"));
|
|
appName = c.getString(c.getColumnIndex("app_name"));
|
|
command = c.getString(c.getColumnIndex("command"));
|
|
action = c.getInt(c.getColumnIndex("action")) != 0;
|
|
date = new Date(c.getLong(c.getColumnIndex("time")));
|
|
}
|
|
|
|
public ContentValues getContentValues() {
|
|
ContentValues values = new ContentValues();
|
|
values.put("from_uid", fromUid);
|
|
values.put("package_name", packageName);
|
|
values.put("app_name", appName);
|
|
values.put("from_pid", fromPid);
|
|
values.put("command", command);
|
|
values.put("to_uid", toUid);
|
|
values.put("action", action ? 1 : 0);
|
|
values.put("time", date.getTime());
|
|
return values;
|
|
}
|
|
|
|
public String getDateString() {
|
|
return DateFormat.getDateInstance(DateFormat.MEDIUM, MagiskManager.locale).format(date);
|
|
}
|
|
|
|
public String getTimeString() {
|
|
return new SimpleDateFormat("h:mm a", MagiskManager.locale).format(date);
|
|
}
|
|
}
|