mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-16 09:21:24 +00:00
145 lines
3.8 KiB
Java
145 lines
3.8 KiB
Java
package com.topjohnwu.magisk.container;
|
|
|
|
import android.content.ContentValues;
|
|
import android.database.Cursor;
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import java.util.List;
|
|
|
|
public abstract class BaseModule implements Comparable<BaseModule>, Parcelable {
|
|
|
|
private String mId, mName, mVersion, mAuthor, mDescription;
|
|
private int mVersionCode = -1;
|
|
|
|
protected BaseModule() {
|
|
mId = mName = mVersion = mAuthor = mDescription = "";
|
|
}
|
|
|
|
protected BaseModule(Cursor c) {
|
|
mId = nonNull(c.getString(c.getColumnIndex("id")));
|
|
mName = nonNull(c.getString(c.getColumnIndex("name")));
|
|
mVersion = nonNull(c.getString(c.getColumnIndex("version")));
|
|
mVersionCode = c.getInt(c.getColumnIndex("versionCode"));
|
|
mAuthor = nonNull(c.getString(c.getColumnIndex("author")));
|
|
mDescription = nonNull(c.getString(c.getColumnIndex("description")));
|
|
}
|
|
|
|
protected BaseModule(Parcel p) {
|
|
mId = p.readString();
|
|
mName = p.readString();
|
|
mVersion = p.readString();
|
|
mAuthor = p.readString();
|
|
mDescription = p.readString();
|
|
mVersionCode = p.readInt();
|
|
}
|
|
|
|
@Override
|
|
public int compareTo(@NonNull BaseModule module) {
|
|
return this.getName().toLowerCase().compareTo(module.getName().toLowerCase());
|
|
}
|
|
|
|
@Override
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void writeToParcel(Parcel dest, int flags) {
|
|
dest.writeString(mId);
|
|
dest.writeString(mName);
|
|
dest.writeString(mVersion);
|
|
dest.writeString(mAuthor);
|
|
dest.writeString(mDescription);
|
|
dest.writeInt(mVersionCode);
|
|
}
|
|
|
|
private String nonNull(String s) {
|
|
return s == null ? "" : s;
|
|
}
|
|
|
|
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);
|
|
return values;
|
|
}
|
|
|
|
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();
|
|
String value = prop[1].trim();
|
|
if (key.isEmpty() || key.charAt(0) == '#')
|
|
continue;
|
|
|
|
switch (key) {
|
|
case "id":
|
|
mId = value;
|
|
break;
|
|
case "name":
|
|
mName = value;
|
|
break;
|
|
case "version":
|
|
mVersion = value;
|
|
break;
|
|
case "versionCode":
|
|
mVersionCode = Integer.parseInt(value);
|
|
break;
|
|
case "author":
|
|
mAuthor = value;
|
|
break;
|
|
case "description":
|
|
mDescription = 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;
|
|
}
|
|
|
|
public String getId() {
|
|
return mId;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
mId = id;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return mDescription;
|
|
}
|
|
|
|
public int getVersionCode() {
|
|
return mVersionCode;
|
|
}
|
|
|
|
}
|