93 lines
3.2 KiB
Java
Raw Normal View History

2016-08-23 05:18:28 +08:00
package com.topjohnwu.magisk.utils;
2016-08-23 03:50:46 +08:00
import android.app.job.JobInfo;
import android.app.job.JobScheduler;
import android.content.ComponentName;
2016-08-28 03:52:03 +08:00
import android.content.Context;
2017-01-28 06:13:07 +08:00
import android.content.SharedPreferences;
2017-02-15 05:24:02 +08:00
import android.database.Cursor;
2016-08-29 06:35:07 +08:00
import android.net.Uri;
2017-02-15 05:24:02 +08:00
import android.provider.OpenableColumns;
2018-07-31 17:41:54 +08:00
import android.widget.Toast;
2016-08-28 03:52:03 +08:00
2018-07-31 17:42:35 +08:00
import com.topjohnwu.magisk.Const;
2018-07-31 17:41:54 +08:00
import com.topjohnwu.magisk.Data;
2017-02-07 02:01:32 +08:00
import com.topjohnwu.magisk.MagiskManager;
import com.topjohnwu.magisk.services.UpdateCheckService;
2016-08-28 03:52:03 +08:00
2017-07-22 22:14:02 +08:00
import java.util.Locale;
2016-08-20 17:26:49 +02:00
public class Utils {
2017-01-28 06:13:07 +08:00
public static int getPrefsInt(SharedPreferences prefs, String key, int def) {
return Integer.parseInt(prefs.getString(key, String.valueOf(def)));
}
2017-08-29 01:34:42 +08:00
public static int getPrefsInt(SharedPreferences prefs, String key) {
return getPrefsInt(prefs, key, 0);
}
2017-02-15 05:24:02 +08:00
public static String getNameFromUri(Context context, Uri uri) {
String name = null;
try (Cursor c = context.getContentResolver().query(uri, null, null, null, null)) {
if (c != null) {
int nameIndex = c.getColumnIndex(OpenableColumns.DISPLAY_NAME);
if (nameIndex != -1) {
c.moveToFirst();
name = c.getString(nameIndex);
}
}
}
if (name == null) {
int idx = uri.getPath().lastIndexOf('/');
name = uri.getPath().substring(idx + 1);
}
return name;
}
2017-11-20 03:09:08 +08:00
public static int dpInPx(int dp) {
2018-08-01 14:30:59 +08:00
float scale = Data.MM().getResources().getDisplayMetrics().density;
2017-11-20 03:09:08 +08:00
return (int) (dp * scale + 0.5);
}
public static String fmt(String fmt, Object... args) {
return String.format(Locale.US, fmt, args);
}
2018-05-06 02:51:23 +08:00
public static String dos2unix(String s) {
String newString = s.replace("\r\n", "\n");
if(!newString.endsWith("\n")) {
return newString + "\n";
} else {
return newString;
}
}
public static void setupUpdateCheck() {
2018-07-31 17:41:54 +08:00
MagiskManager mm = Data.MM();
JobScheduler scheduler = (JobScheduler) mm.getSystemService(Context.JOB_SCHEDULER_SERVICE);
if (mm.prefs.getBoolean(Const.Key.CHECK_UPDATES, true)) {
if (scheduler.getAllPendingJobs().isEmpty() ||
Const.UPDATE_SERVICE_VER > mm.prefs.getInt(Const.Key.UPDATE_SERVICE_VER, -1)) {
ComponentName service = new ComponentName(mm, UpdateCheckService.class);
JobInfo info = new JobInfo.Builder(Const.ID.UPDATE_SERVICE_ID, service)
.setRequiredNetworkType(JobInfo.NETWORK_TYPE_ANY)
.setPersisted(true)
.setPeriodic(8 * 60 * 60 * 1000)
.build();
scheduler.schedule(info);
}
} else {
scheduler.cancel(Const.UPDATE_SERVICE_VER);
}
}
2018-07-31 17:41:54 +08:00
public static void toast(CharSequence msg, int duration) {
Data.mainHandler.post(() -> Toast.makeText(Data.MM(), msg, duration).show());
}
public static void toast(int resId, int duration) {
Data.mainHandler.post(() -> Toast.makeText(Data.MM(), resId, duration).show());
}
2016-09-21 09:22:36 -05:00
}