2017-02-12 23:26:30 +08:00
package com.topjohnwu.magisk.database ;
import android.content.Context ;
import android.database.Cursor ;
import android.database.sqlite.SQLiteDatabase ;
import android.database.sqlite.SQLiteOpenHelper ;
2017-09-06 22:32:40 +08:00
import com.topjohnwu.magisk.MagiskManager ;
2017-09-30 03:04:23 +08:00
import com.topjohnwu.magisk.container.Repo ;
2017-02-19 08:05:16 +08:00
import com.topjohnwu.magisk.utils.Logger ;
2017-09-06 22:32:40 +08:00
import com.topjohnwu.magisk.utils.Utils ;
2017-02-12 23:26:30 +08:00
2017-07-21 02:46:02 +08:00
import java.util.LinkedList ;
import java.util.List ;
2017-02-12 23:26:30 +08:00
public class RepoDatabaseHelper extends SQLiteOpenHelper {
2017-03-30 06:52:18 +08:00
private static final int DATABASE_VER = 2 ;
2017-02-12 23:26:30 +08:00
private static final String TABLE_NAME = " repos " ;
2017-04-26 00:14:01 +08:00
private static final int MIN_TEMPLATE_VER = 3 ;
2017-02-12 23:26:30 +08:00
2017-07-21 00:46:13 +08:00
private SQLiteDatabase mDb ;
2017-09-06 22:32:40 +08:00
private MagiskManager mm ;
2017-07-21 00:46:13 +08:00
2017-02-12 23:26:30 +08:00
public RepoDatabaseHelper ( Context context ) {
super ( context , " repo.db " , null , DATABASE_VER ) ;
2017-07-21 00:46:13 +08:00
mDb = getWritableDatabase ( ) ;
2017-09-06 22:32:40 +08:00
mm = Utils . getMagiskManager ( context ) ;
2017-02-12 23:26:30 +08:00
}
@Override
public void onCreate ( SQLiteDatabase db ) {
onUpgrade ( db , 0 , DATABASE_VER ) ;
}
@Override
public void onUpgrade ( SQLiteDatabase db , int oldVersion , int newVersion ) {
if ( oldVersion = = 0 ) {
db . execSQL (
" CREATE TABLE IF NOT EXISTS " + TABLE_NAME + " " +
" (id TEXT, name TEXT, version TEXT, versionCode INT, " +
" author TEXT, description TEXT, repo_name TEXT, last_update INT, " +
" PRIMARY KEY(id)) " ) ;
2017-03-30 06:52:18 +08:00
oldVersion + + ;
}
if ( oldVersion = = 1 ) {
db . execSQL ( " ALTER TABLE " + TABLE_NAME + " ADD template INT " ) ;
oldVersion + + ;
2017-02-12 23:26:30 +08:00
}
}
2017-07-21 02:46:02 +08:00
public void clearRepo ( ) {
mDb . delete ( TABLE_NAME , null , null ) ;
}
public void removeRepo ( List < String > list ) {
for ( String id : list ) {
Logger . dev ( " Remove from DB: " + id ) ;
mDb . delete ( TABLE_NAME , " id=? " , new String [ ] { id } ) ;
2017-02-21 03:30:37 +08:00
}
2017-02-12 23:26:30 +08:00
}
2017-07-21 02:46:02 +08:00
public void addRepo ( Repo repo ) {
mDb . replace ( TABLE_NAME , null , repo . getContentValues ( ) ) ;
2017-02-12 23:26:30 +08:00
}
2017-07-21 02:46:02 +08:00
public Repo getRepo ( String id ) {
try ( Cursor c = mDb . query ( TABLE_NAME , null , " id=? " , new String [ ] { id } , null , null , null ) ) {
if ( c . moveToNext ( ) ) {
return new Repo ( c ) ;
}
2017-02-21 03:30:37 +08:00
}
2017-07-21 02:46:02 +08:00
return null ;
2017-02-12 23:26:30 +08:00
}
2017-07-21 02:46:02 +08:00
public Cursor getRepoCursor ( ) {
2017-09-06 22:32:40 +08:00
return mDb . query ( TABLE_NAME , null , " template>=? AND template<=? " , new String [ ] { String . valueOf ( MIN_TEMPLATE_VER ) , String . valueOf ( mm . magiskVersionCode ) } , null , null , " name COLLATE NOCASE " ) ;
2017-03-30 06:52:18 +08:00
}
2017-07-21 02:46:02 +08:00
public List < String > getRepoIDList ( ) {
LinkedList < String > ret = new LinkedList < > ( ) ;
try ( Cursor c = mDb . query ( TABLE_NAME , null , null , null , null , null , null ) ) {
2017-02-12 23:26:30 +08:00
while ( c . moveToNext ( ) ) {
2017-07-21 02:46:02 +08:00
ret . add ( c . getString ( c . getColumnIndex ( " id " ) ) ) ;
2017-02-12 23:26:30 +08:00
}
}
return ret ;
}
}