package com.topjohnwu.magisk.module; import android.util.Log; import com.topjohnwu.magisk.utils.Utils; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; public class Module { private String mRemoveFile; private String mDisableFile; private String mName; private String mVersion; private String mDescription; private boolean mEnable; private boolean mRemove; public Module(String path) { mRemoveFile = path + "/remove"; mDisableFile = path + "/disable"; for (String line : Utils.readFile(path + "/module.prop")) { 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; } } mEnable = !Utils.fileExist(mDisableFile); mRemove = Utils.fileExist(mRemoveFile); } public String getName() { return mName; } public String getVersion() { return mVersion; } public String getDescription() { return mDescription; } public void createDisableFile() { mEnable = !Utils.createFile(mDisableFile); } public void removeDisableFile() { mEnable = Utils.removeFile(mDisableFile); } public boolean isEnabled() { return mEnable; } public void createRemoveFile() { mRemove = Utils.createFile(mRemoveFile); } public void deleteRemoveFile() { mRemove = !Utils.removeFile(mRemoveFile); } public boolean willBeRemoved() { return mRemove; } }