X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Futils%2FMobileLedgerDatabase.java;h=0ddaa1dc0fc2da4cb5f3c1f9a2dd9fa5684b37f1;hp=e73c45a60bf0c69a1a8ffd73b29b8fd5bacb53bd;hb=55f4f1b5f101d0f9874fe3d3406d53c6df931a40;hpb=a983099d6150044a08a1fbc601d9af9bd8d0c0a8 diff --git a/app/src/main/java/net/ktnx/mobileledger/utils/MobileLedgerDatabase.java b/app/src/main/java/net/ktnx/mobileledger/utils/MobileLedgerDatabase.java index e73c45a6..0ddaa1dc 100644 --- a/app/src/main/java/net/ktnx/mobileledger/utils/MobileLedgerDatabase.java +++ b/app/src/main/java/net/ktnx/mobileledger/utils/MobileLedgerDatabase.java @@ -1,157 +1,140 @@ /* - * Copyright © 2018 Damyan Ivanov. - * This file is part of Mobile-Ledger. - * Mobile-Ledger is free software: you can distribute it and/or modify it + * Copyright © 2021 Damyan Ivanov. + * This file is part of MoLe. + * MoLe is free software: you can distribute it and/or modify it * under the term of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your opinion), any later version. * - * Mobile-Ledger is distributed in the hope that it will be useful, + * MoLe is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License terms for details. * * You should have received a copy of the GNU General Public License - * along with Mobile-Ledger. If not, see . + * along with MoLe. If not, see . */ package net.ktnx.mobileledger.utils; -import android.content.Context; +import android.app.Application; import android.content.res.Resources; -import android.database.Cursor; import android.database.SQLException; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; -import android.util.Log; + +import androidx.lifecycle.MutableLiveData; + +import net.ktnx.mobileledger.BuildConfig; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Locale; +import java.util.regex.Matcher; +import java.util.regex.Pattern; -public class MobileLedgerDatabase extends SQLiteOpenHelper implements AutoCloseable { - public static final String DB_NAME = "mobile-ledger.db"; - public static final String ACCOUNTS_TABLE = "accounts"; - public static final String DESCRIPTION_HISTORY_TABLE = "description_history"; - public static final int LATEST_REVISION = 8; +import static net.ktnx.mobileledger.utils.Logger.debug; - private final Context mContext; +public class MobileLedgerDatabase extends SQLiteOpenHelper { + public static final MutableLiveData initComplete = new MutableLiveData<>(false); + public static final String DB_NAME = "MoLe.db"; + private static final int LATEST_REVISION = 57; + private static final String CREATE_DB_SQL = "create_db"; + private final Application mContext; - public - MobileLedgerDatabase(Context context) { + public MobileLedgerDatabase(Application context) { super(context, DB_NAME, null, LATEST_REVISION); - Log.d("db", "creating helper instance"); + debug("db", "creating helper instance"); mContext = context; + super.setWriteAheadLoggingEnabled(true); } @Override - public - void onCreate(SQLiteDatabase db) { - Log.d("db", "onCreate called"); - onUpgrade(db, -1, LATEST_REVISION); + public void onCreate(SQLiteDatabase db) { + debug("db", "onCreate called"); + applyRevisionFile(db, CREATE_DB_SQL); } @Override - public - void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { - Log.d("db", "onUpgrade called"); - for(int i = oldVersion+1; i <= newVersion; i++) applyRevision(db, i); + public void onConfigure(SQLiteDatabase db) { + super.onConfigure(db); + db.execSQL("pragma case_sensitive_like=ON;"); + if (BuildConfig.DEBUG) + db.execSQL("PRAGMA foreign_keys=ON"); } - - private void applyRevision(SQLiteDatabase db, int - rev_no) { - final Resources rm = mContext.getResources(); + @Override + public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { + debug("db", + String.format(Locale.US, "needs upgrade from version %d to version %d", oldVersion, + newVersion)); + for (int i = oldVersion + 1; i <= newVersion; i++) + applyRevision(db, i); + } + private void applyRevision(SQLiteDatabase db, int rev_no) { String rev_file = String.format(Locale.US, "sql_%d", rev_no); - int res_id = rm.getIdentifier(rev_file, "raw", mContext.getPackageName()); + applyRevisionFile(db, rev_file); + } + private void applyRevisionFile(SQLiteDatabase db, String revFile) { + final Resources rm = mContext.getResources(); + int res_id = rm.getIdentifier(revFile, "raw", mContext.getPackageName()); if (res_id == 0) - throw new SQLException(String.format(Locale.US, "No resource for revision %d", rev_no)); - db.beginTransaction(); + throw new SQLException(String.format(Locale.US, "No resource for %s", revFile)); + try (InputStream res = rm.openRawResource(res_id)) { - Log.d("db", "Applying revision " + String.valueOf(rev_no)); + debug("db", "Applying " + revFile); InputStreamReader isr = new InputStreamReader(res); BufferedReader reader = new BufferedReader(isr); + Pattern continuation = Pattern.compile("\\\\\\s*$"); + String line; + String sqlStatement = null; + boolean eolPending; + int lineNo = 0; while ((line = reader.readLine()) != null) { - db.execSQL(line); - } - - db.setTransactionSuccessful(); - } - catch (IOException e) { - Log.e("db", String.format("Error opening raw resource for revision %d", rev_no)); - e.printStackTrace(); - } - finally { - db.endTransaction(); - } - } - public int get_option_value(String name, int default_value) { - String s = get_option_value(name, String.valueOf(default_value)); - try { - return Integer.parseInt(s); - } - catch (Exception e) { - return default_value; - } - } - - public long get_option_value(String name, long default_value) { - String s = get_option_value(name, String.valueOf(default_value)); - try { - return Long.parseLong(s); - } - catch (Exception e) { - Log.d("db", "returning default long value of "+name, e); - return default_value; - } - } + lineNo++; + if (line.startsWith("--")) + continue; + if (line.isEmpty()) + continue; + + Matcher m = continuation.matcher(line); + eolPending = false; + if (m.find()) { + line = m.replaceFirst(""); + eolPending = true; + } - public String get_option_value(String name, String default_value) { - Log.d("db", "about to fetch option "+name); - try(SQLiteDatabase db = getReadableDatabase()) { - try (Cursor cursor = db - .rawQuery("select value from options where name=?", new String[]{name})) - { - if (cursor.moveToFirst()) { - String result = cursor.getString(0); + if (sqlStatement == null) + sqlStatement = line; + else + sqlStatement = sqlStatement.concat(line); - if (result == null) result = default_value; + if (eolPending) + continue; - Log.d("db", "option " + name + "=" + result); - return result; + try { + db.execSQL(sqlStatement); + sqlStatement = null; + } + catch (Exception e) { + throw new RuntimeException( + String.format("Error applying %s, line %d, statement: %s", revFile, + lineNo, sqlStatement), e); } - else return default_value; - } - catch (Exception e) { - Log.d("db", "returning default value for " + name, e); - return default_value; } - } - } - public void set_option_value(String name, String value) { - Log.d("db", "setting option "+name+"="+value); - try(SQLiteDatabase db = getWritableDatabase()) { - db.execSQL("insert or replace into options(name, value) values(?, ?);", - new String[]{name, value}); - } - } + if (sqlStatement != null) + throw new RuntimeException( + String.format("Error applying %s: EOF after continuation", revFile)); - public void set_option_value(String name, long value) { - set_option_value(name, String.valueOf(value)); - } - public static long get_option_value(Context context, String name, long default_value) { - try(MobileLedgerDatabase db = new MobileLedgerDatabase(context)) { - return db.get_option_value(name, default_value); } - } - public static void set_option_value(Context context, String name, String value) { - try(MobileLedgerDatabase db = new MobileLedgerDatabase(context)) { - db.set_option_value(name, value); + catch (IOException e) { + throw new RuntimeException(String.format("Error opening raw resource for %s", revFile), + e); } } }