123 lines
3.3 KiB
Java
Raw Normal View History

2017-09-30 03:04:23 +08:00
package com.topjohnwu.magisk.container;
2017-09-30 03:25:50 +08:00
import android.content.ContentValues;
import android.database.Cursor;
2016-11-13 03:07:16 +08:00
import java.util.List;
2018-09-10 02:27:45 -04:00
import androidx.annotation.NonNull;
2016-11-13 03:07:16 +08:00
public abstract class BaseModule implements Comparable<BaseModule> {
private String mId = null, mName, mVersion, mAuthor, mDescription;
2017-11-17 23:34:38 +08:00
private int mVersionCode = -1, minMagiskVersion = -1;
protected BaseModule() {}
protected BaseModule(Cursor c) {
mId = c.getString(c.getColumnIndex("id"));
mName = c.getString(c.getColumnIndex("name"));
mVersion = c.getString(c.getColumnIndex("version"));
mVersionCode = c.getInt(c.getColumnIndex("versionCode"));
mAuthor = c.getString(c.getColumnIndex("author"));
mDescription = c.getString(c.getColumnIndex("description"));
2017-11-17 23:34:38 +08:00
minMagiskVersion = c.getInt(c.getColumnIndex("minMagisk"));
}
2017-09-30 03:25:50 +08:00
public ContentValues getContentValues() {
ContentValues values = new ContentValues();
values.put("id", mId);
values.put("name", mName);
values.put("version", mVersion);
values.put("versionCode", mVersionCode);
values.put("author", mAuthor);
values.put("description", mDescription);
2017-11-17 23:34:38 +08:00
values.put("minMagisk", minMagiskVersion);
2017-09-30 03:25:50 +08:00
return values;
}
2017-10-01 01:38:25 +08:00
protected void parseProps(List<String> props) { parseProps(props.toArray(new String[0])); }
protected void parseProps(String[] props) throws NumberFormatException {
for (String line : props) {
String[] prop = line.split("=", 2);
if (prop.length != 2)
continue;
String key = prop[0].trim();
2018-07-18 04:01:06 +08:00
String value = prop[1].trim();
if (key.isEmpty() || key.charAt(0) == '#')
continue;
switch (key) {
case "id":
2018-07-18 04:01:06 +08:00
mId = value;
break;
case "name":
2018-07-18 04:01:06 +08:00
mName = value;
break;
case "version":
2018-07-18 04:01:06 +08:00
mVersion = value;
break;
case "versionCode":
2018-07-18 04:01:06 +08:00
mVersionCode = Integer.parseInt(value);
break;
case "author":
2018-07-18 04:01:06 +08:00
mAuthor = value;
break;
case "description":
2018-07-18 04:01:06 +08:00
mDescription = value;
break;
2017-11-17 23:34:38 +08:00
case "minMagisk":
2017-03-30 06:52:18 +08:00
case "template":
2018-07-18 04:01:06 +08:00
minMagiskVersion = Integer.parseInt(value);
break;
default:
break;
}
}
}
public String getName() {
return mName;
}
public void setName(String name) {
mName = name;
}
public String getVersion() {
return mVersion;
}
public String getAuthor() {
return mAuthor;
}
2017-02-16 05:45:31 +08:00
public String getId() {
return mId;
}
public void setId(String id) {
mId = id;
}
public String getDescription() {
return mDescription;
}
public int getVersionCode() {
return mVersionCode;
}
2017-11-17 23:34:38 +08:00
public int getMinMagiskVersion() {
return minMagiskVersion;
2017-03-30 06:52:18 +08:00
}
2016-11-13 03:07:16 +08:00
@Override
public int compareTo(@NonNull BaseModule module) {
return this.getName().toLowerCase().compareTo(module.getName().toLowerCase());
2016-11-13 03:07:16 +08:00
}
}