mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-03-29 07:12:16 +00:00
67 lines
1.5 KiB
Java
67 lines
1.5 KiB
Java
package com.topjohnwu.magisk.module;
|
|
|
|
import com.topjohnwu.magisk.utils.Logger;
|
|
import com.topjohnwu.magisk.utils.Utils;
|
|
|
|
public class Module extends BaseModule {
|
|
|
|
private String mRemoveFile, mDisableFile, mUpdateFile;
|
|
private boolean mEnable, mRemove, mUpdated;
|
|
|
|
public Module(String path) throws CacheModException {
|
|
|
|
parseProps(Utils.readFile(path + "/module.prop"));
|
|
|
|
mRemoveFile = path + "/remove";
|
|
mDisableFile = path + "/disable";
|
|
mUpdateFile = path + "/update";
|
|
|
|
if (getId() == null) {
|
|
int sep = path.lastIndexOf('/');
|
|
setId(path.substring(sep + 1));
|
|
}
|
|
|
|
if (getName() == null) {
|
|
setName(getId());
|
|
}
|
|
|
|
Logger.dev("Creating Module, id: " + getId());
|
|
|
|
mEnable = !Utils.itemExist(mDisableFile);
|
|
mRemove = Utils.itemExist(mRemoveFile);
|
|
mUpdated = Utils.itemExist(mUpdateFile);
|
|
}
|
|
|
|
public void createDisableFile() {
|
|
mEnable = false;
|
|
Utils.createFile(mDisableFile);
|
|
}
|
|
|
|
public void removeDisableFile() {
|
|
mEnable = true;
|
|
Utils.removeItem(mDisableFile);
|
|
}
|
|
|
|
public boolean isEnabled() {
|
|
return mEnable;
|
|
}
|
|
|
|
public void createRemoveFile() {
|
|
mRemove = true;
|
|
Utils.createFile(mRemoveFile);
|
|
}
|
|
|
|
public void deleteRemoveFile() {
|
|
mRemove = false;
|
|
Utils.removeItem(mRemoveFile);
|
|
}
|
|
|
|
public boolean willBeRemoved() {
|
|
return mRemove;
|
|
}
|
|
|
|
public boolean isUpdated() {
|
|
return mUpdated;
|
|
}
|
|
|
|
} |