2016-08-23 05:18:28 +08:00
|
|
|
package com.topjohnwu.magisk.module;
|
2016-08-17 13:00:55 +02:00
|
|
|
|
2016-08-23 05:18:28 +08:00
|
|
|
import com.topjohnwu.magisk.utils.Utils;
|
2016-08-21 16:08:45 +02:00
|
|
|
|
2016-08-17 13:00:55 +02:00
|
|
|
import java.io.BufferedReader;
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileReader;
|
|
|
|
|
|
|
|
public class Module {
|
|
|
|
|
|
|
|
private final boolean isValid;
|
2016-08-21 16:08:45 +02:00
|
|
|
|
|
|
|
private File mRemoveFile;
|
|
|
|
private File mDisableFile;
|
|
|
|
|
2016-08-17 13:00:55 +02:00
|
|
|
private File mPropFile;
|
|
|
|
|
|
|
|
private String mName;
|
|
|
|
private String mVersion;
|
|
|
|
private String mDescription;
|
|
|
|
|
|
|
|
public Module(File file) {
|
|
|
|
this.isValid = new File(file + "/module.prop").exists();
|
|
|
|
|
2016-08-21 16:08:45 +02:00
|
|
|
if (!isValid) return;
|
|
|
|
|
|
|
|
mPropFile = new File(file + "/module.prop");
|
|
|
|
mRemoveFile = new File(file + "/remove");
|
|
|
|
mDisableFile = new File(file + "/disable");
|
2016-08-17 13:00:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isValid() {
|
|
|
|
return isValid && mPropFile != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return mName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getVersion() {
|
|
|
|
return mVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
|
|
return mDescription;
|
|
|
|
}
|
|
|
|
|
2016-08-22 12:30:13 +02:00
|
|
|
public void createDisableFile() {
|
2016-08-23 01:44:34 +08:00
|
|
|
Utils.su("touch " + mDisableFile.getPath());
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
2016-08-23 01:44:34 +08:00
|
|
|
public void removeDisableFile() {
|
|
|
|
Utils.su("rm -f " + mDisableFile.getPath());
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isEnabled() {
|
2016-08-23 01:44:34 +08:00
|
|
|
return ! mDisableFile.exists();
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
2016-08-21 16:08:45 +02:00
|
|
|
public void createRemoveFile() {
|
2016-08-23 01:44:34 +08:00
|
|
|
Utils.su("touch " + mRemoveFile.getPath());
|
2016-08-21 16:08:45 +02:00
|
|
|
}
|
|
|
|
|
2016-08-23 01:44:34 +08:00
|
|
|
public void deleteRemoveFile() {
|
|
|
|
Utils.su("rm -f " + mRemoveFile.getPath());
|
2016-08-22 12:30:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean willBeRemoved() {
|
|
|
|
return mRemoveFile.exists();
|
2016-08-21 16:08:45 +02:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:00:55 +02:00
|
|
|
public void parse() throws Exception {
|
|
|
|
BufferedReader reader = new BufferedReader(new FileReader(mPropFile));
|
|
|
|
String line;
|
|
|
|
while ((line = reader.readLine()) != null) {
|
|
|
|
String[] parts = line.split("=", 2);
|
|
|
|
if (parts.length != 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
String key = parts[0].trim();
|
|
|
|
if (key.charAt(0) == '#') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
String value = parts[1].trim();
|
|
|
|
switch (key) {
|
|
|
|
case "name":
|
|
|
|
mName = value;
|
|
|
|
break;
|
|
|
|
case "version":
|
|
|
|
mVersion = value;
|
|
|
|
break;
|
|
|
|
case "description":
|
|
|
|
mDescription = value;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
reader.close();
|
|
|
|
}
|
|
|
|
}
|