Replaced DBHelper.TABLE_APP with Schema.AppTable.NAME

This commit is contained in:
Peter Serwylo 2016-06-30 13:52:22 +10:00
parent 14958d48e3
commit d1ceb84af4
4 changed files with 29 additions and 23 deletions

View File

@ -14,6 +14,7 @@ import org.fdroid.fdroid.Preferences;
import org.fdroid.fdroid.R;
import org.fdroid.fdroid.Utils;
import org.fdroid.fdroid.data.Schema.ApkTable;
import org.fdroid.fdroid.data.Schema.AppTable;
import org.fdroid.fdroid.data.Schema.AppTable.Cols;
import org.fdroid.fdroid.data.Schema.RepoTable;
@ -165,7 +166,7 @@ public class AppProvider extends FDroidProvider {
static final class UpgradeHelper {
public static void updateIconUrls(Context context, SQLiteDatabase db) {
AppProvider.updateIconUrls(context, db, DBHelper.TABLE_APP, ApkTable.NAME);
AppProvider.updateIconUrls(context, db, AppTable.NAME, ApkTable.NAME);
}
}
@ -523,7 +524,7 @@ public class AppProvider extends FDroidProvider {
@Override
protected String getTableName() {
return DBHelper.TABLE_APP;
return AppTable.NAME;
}
protected String getApkTableName() {

View File

@ -10,6 +10,7 @@ import android.util.Log;
import org.fdroid.fdroid.R;
import org.fdroid.fdroid.Utils;
import org.fdroid.fdroid.data.Schema.ApkTable;
import org.fdroid.fdroid.data.Schema.AppTable;
import org.fdroid.fdroid.data.Schema.RepoTable;
import java.util.ArrayList;
@ -58,8 +59,7 @@ class DBHelper extends SQLiteOpenHelper {
+ "primary key(id, vercode)"
+ ");";
public static final String TABLE_APP = "fdroid_app";
private static final String CREATE_TABLE_APP = "CREATE TABLE " + TABLE_APP
private static final String CREATE_TABLE_APP = "CREATE TABLE " + AppTable.NAME
+ " ( "
+ "id text not null, "
+ "name text not null, "
@ -456,19 +456,19 @@ class DBHelper extends SQLiteOpenHelper {
}
private void addChangelogToApp(SQLiteDatabase db, int oldVersion) {
if (oldVersion >= 48 || columnExists(db, TABLE_APP, "changelogURL")) {
if (oldVersion >= 48 || columnExists(db, AppTable.NAME, "changelogURL")) {
return;
}
Utils.debugLog(TAG, "Adding changelogURL column to " + TABLE_APP);
db.execSQL("alter table " + TABLE_APP + " add column changelogURL text");
Utils.debugLog(TAG, "Adding changelogURL column to " + AppTable.NAME);
db.execSQL("alter table " + AppTable.NAME + " add column changelogURL text");
}
private void addIconUrlLargeToApp(SQLiteDatabase db, int oldVersion) {
if (oldVersion >= 49 || columnExists(db, TABLE_APP, "iconUrlLarge")) {
if (oldVersion >= 49 || columnExists(db, AppTable.NAME, "iconUrlLarge")) {
return;
}
Utils.debugLog(TAG, "Adding iconUrlLarge columns to " + TABLE_APP);
db.execSQL("alter table " + TABLE_APP + " add column iconUrlLarge text");
Utils.debugLog(TAG, "Adding iconUrlLarge columns to " + AppTable.NAME);
db.execSQL("alter table " + AppTable.NAME + " add column iconUrlLarge text");
}
private void updateIconUrlLarge(SQLiteDatabase db, int oldVersion) {
@ -484,13 +484,13 @@ class DBHelper extends SQLiteOpenHelper {
if (oldVersion >= 53) {
return;
}
if (!columnExists(db, TABLE_APP, "author")) {
Utils.debugLog(TAG, "Adding author column to " + TABLE_APP);
db.execSQL("alter table " + TABLE_APP + " add column author text");
if (!columnExists(db, AppTable.NAME, "author")) {
Utils.debugLog(TAG, "Adding author column to " + AppTable.NAME);
db.execSQL("alter table " + AppTable.NAME + " add column author text");
}
if (!columnExists(db, TABLE_APP, "email")) {
Utils.debugLog(TAG, "Adding email column to " + TABLE_APP);
db.execSQL("alter table " + TABLE_APP + " add column email text");
if (!columnExists(db, AppTable.NAME, "email")) {
Utils.debugLog(TAG, "Adding email column to " + AppTable.NAME);
db.execSQL("alter table " + AppTable.NAME + " add column email text");
}
}
@ -540,7 +540,7 @@ class DBHelper extends SQLiteOpenHelper {
}
context.getSharedPreferences("FDroid", Context.MODE_PRIVATE).edit()
.putBoolean("triedEmptyUpdate", false).commit();
db.execSQL("drop table " + TABLE_APP);
db.execSQL("drop table " + AppTable.NAME);
db.execSQL("drop table " + ApkTable.NAME);
clearRepoEtags(db);
createAppApk(db);
@ -548,7 +548,7 @@ class DBHelper extends SQLiteOpenHelper {
private static void createAppApk(SQLiteDatabase db) {
db.execSQL(CREATE_TABLE_APP);
db.execSQL("create index app_id on " + TABLE_APP + " (id);");
db.execSQL("create index app_id on " + AppTable.NAME + " (id);");
db.execSQL(CREATE_TABLE_APK);
db.execSQL("create index apk_vercode on " + ApkTable.NAME + " (vercode);");
db.execSQL("create index apk_id on " + ApkTable.NAME + " (id);");

View File

@ -11,7 +11,7 @@ public interface Schema {
interface AppTable {
String NAME = DBHelper.TABLE_APP;
String NAME = "fdroid_app";
interface Cols {
String _ID = "rowid as _id"; // Required for CursorLoaders
@ -76,7 +76,9 @@ public interface Schema {
* This information is retrieved from the repositories.
*/
interface ApkTable {
String NAME = "fdroid_apk";
interface Cols extends BaseColumns {
String _COUNT_DISTINCT_ID = "countDistinct";
@ -112,7 +114,9 @@ public interface Schema {
}
interface RepoTable {
String NAME = "fdroid_repo";
interface Cols extends BaseColumns {
String ADDRESS = "address";

View File

@ -8,6 +8,7 @@ import android.database.sqlite.SQLiteException;
import android.net.Uri;
import org.fdroid.fdroid.data.Schema.ApkTable;
import org.fdroid.fdroid.data.Schema.AppTable;
/**
* This class does all of its operations in a temporary sqlite table.
@ -21,7 +22,7 @@ public class TempAppProvider extends AppProvider {
private static final String PROVIDER_NAME = "TempAppProvider";
private static final String TABLE_TEMP_APP = "temp_" + DBHelper.TABLE_APP;
private static final String TABLE_TEMP_APP = "temp_" + AppTable.NAME;
private static final String PATH_INIT = "init";
private static final String PATH_COMMIT = "commit";
@ -129,7 +130,7 @@ public class TempAppProvider extends AppProvider {
final SQLiteDatabase db = db();
ensureTempTableDetached(db);
db.execSQL("ATTACH DATABASE ':memory:' AS " + DB);
db.execSQL("CREATE TABLE " + DB + "." + getTableName() + " AS SELECT * FROM main." + DBHelper.TABLE_APP);
db.execSQL("CREATE TABLE " + DB + "." + getTableName() + " AS SELECT * FROM main." + AppTable.NAME);
db.execSQL("CREATE INDEX IF NOT EXISTS " + DB + ".app_id ON " + getTableName() + " (id);");
db.execSQL("CREATE INDEX IF NOT EXISTS " + DB + ".app_upstreamVercode ON " + getTableName() + " (upstreamVercode);");
db.execSQL("CREATE INDEX IF NOT EXISTS " + DB + ".app_compatible ON " + getTableName() + " (compatible);");
@ -143,8 +144,8 @@ public class TempAppProvider extends AppProvider {
final String tempApp = DB + "." + TempAppProvider.TABLE_TEMP_APP;
final String tempApk = DB + "." + TempApkProvider.TABLE_TEMP_APK;
db.execSQL("DELETE FROM " + DBHelper.TABLE_APP + " WHERE 1");
db.execSQL("INSERT INTO " + DBHelper.TABLE_APP + " SELECT * FROM " + tempApp);
db.execSQL("DELETE FROM " + AppTable.NAME + " WHERE 1");
db.execSQL("INSERT INTO " + AppTable.NAME + " SELECT * FROM " + tempApp);
db.execSQL("DELETE FROM " + ApkTable.NAME + " WHERE 1");
db.execSQL("INSERT INTO " + ApkTable.NAME + " SELECT * FROM " + tempApk);