101 lines
2.6 KiB
Java
Raw Normal View History

2016-08-23 05:18:28 +08:00
package com.topjohnwu.magisk.module;
2016-08-17 13:00:55 +02:00
2016-09-29 23:24:31 +08:00
import android.os.AsyncTask;
import com.topjohnwu.magisk.utils.Logger;
2016-08-23 05:18:28 +08:00
import com.topjohnwu.magisk.utils.Utils;
public class Module extends BaseModule {
2016-08-17 13:00:55 +02:00
2016-09-29 03:37:57 +08:00
private String mRemoveFile, mDisableFile, mUpdateFile;
private boolean mEnable, mRemove, mUpdated;
2016-08-29 06:35:07 +08:00
2016-09-27 15:51:38 +08:00
public Module(String path) {
2016-09-02 13:18:37 -05:00
2016-09-21 11:29:43 +08:00
parseProps(Utils.readFile(path + "/module.prop"));
mRemoveFile = path + "/remove";
mDisableFile = path + "/disable";
2016-09-29 03:37:57 +08:00
mUpdateFile = path + "/update";
if (mId == null) {
int sep = path.lastIndexOf('/');
mId = path.substring(sep + 1);
}
if (mName == null)
mName = mId;
2016-09-06 16:54:08 -05:00
2016-09-28 00:33:01 +08:00
Logger.dev("Creating Module, id: " + mId);
2016-09-06 16:54:08 -05:00
try {
mEnable = !Utils.itemExist(mDisableFile);
} catch (Exception e) {
mEnable = false;
}
try {
mRemove = Utils.itemExist(mRemoveFile);
} catch (Exception e) {
mRemove = false;
}
try {
mUpdated = Utils.itemExist(mUpdateFile);
} catch (Exception e) {
mUpdated = false;
}
2016-08-17 13:00:55 +02:00
}
public void createDisableFile() {
2016-09-29 23:24:31 +08:00
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
mEnable = !Utils.createFile(mDisableFile);
return null;
}
}.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
}
2016-08-23 01:44:34 +08:00
public void removeDisableFile() {
2016-09-29 23:24:31 +08:00
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
2016-10-17 10:11:26 +08:00
mEnable = Utils.removeItem(mDisableFile);
2016-09-29 23:24:31 +08:00
return null;
}
}.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
}
public boolean isEnabled() {
return mEnable;
}
public void createRemoveFile() {
2016-09-29 23:24:31 +08:00
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
mRemove = Utils.createFile(mRemoveFile);
return null;
}
}.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
}
2016-08-23 01:44:34 +08:00
public void deleteRemoveFile() {
2016-09-29 23:24:31 +08:00
new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... voids) {
2016-10-17 10:11:26 +08:00
mRemove = !Utils.removeItem(mRemoveFile);
2016-09-29 23:24:31 +08:00
return null;
}
}.executeOnExecutor(AsyncTask.SERIAL_EXECUTOR);
}
public boolean willBeRemoved() {
return mRemove;
}
2016-09-29 03:37:57 +08:00
public boolean isUpdated() {
return mUpdated;
}
2016-08-17 13:00:55 +02:00
}