2 * Copyright © 2020 Damyan Ivanov.
3 * This file is part of MoLe.
4 * MoLe is free software: you can distribute it and/or modify it
5 * under the term of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your opinion), any later version.
9 * MoLe is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License terms for details.
14 * You should have received a copy of the GNU General Public License
15 * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
18 package net.ktnx.mobileledger.utils;
20 import android.app.Application;
21 import android.content.res.Resources;
22 import android.database.SQLException;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
25 import android.util.Log;
27 import androidx.lifecycle.MutableLiveData;
29 import net.ktnx.mobileledger.BuildConfig;
31 import java.io.BufferedReader;
32 import java.io.IOException;
33 import java.io.InputStream;
34 import java.io.InputStreamReader;
35 import java.util.Locale;
37 import static net.ktnx.mobileledger.utils.Logger.debug;
39 public class MobileLedgerDatabase extends SQLiteOpenHelper {
40 public static final MutableLiveData<Boolean> initComplete = new MutableLiveData<>(false);
41 private static final String DB_NAME = "MoLe.db";
42 private static final int LATEST_REVISION = 41;
43 private static final String CREATE_DB_SQL = "create_db";
44 private final Application mContext;
46 public MobileLedgerDatabase(Application context) {
47 super(context, DB_NAME, null, LATEST_REVISION);
48 debug("db", "creating helper instance");
50 super.setWriteAheadLoggingEnabled(true);
54 public void onCreate(SQLiteDatabase db) {
55 debug("db", "onCreate called");
56 applyRevisionFile(db, CREATE_DB_SQL);
60 public void onConfigure(SQLiteDatabase db) {
61 super.onConfigure(db);
62 db.execSQL("pragma case_sensitive_like=ON;");
63 if (BuildConfig.DEBUG)
64 db.execSQL("PRAGMA foreign_keys=ON");
67 public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
69 String.format(Locale.US, "needs upgrade from version %d to version %d", oldVersion,
71 for (int i = oldVersion + 1; i <= newVersion; i++)
74 private void applyRevision(SQLiteDatabase db, int rev_no) {
75 String rev_file = String.format(Locale.US, "sql_%d", rev_no);
77 applyRevisionFile(db, rev_file);
79 private void applyRevisionFile(SQLiteDatabase db, String rev_file) {
80 final Resources rm = mContext.getResources();
81 int res_id = rm.getIdentifier(rev_file, "raw", mContext.getPackageName());
83 throw new SQLException(String.format(Locale.US, "No resource for %s", rev_file));
84 db.beginTransaction();
85 try (InputStream res = rm.openRawResource(res_id)) {
86 debug("db", "Applying " + rev_file);
87 InputStreamReader isr = new InputStreamReader(res);
88 BufferedReader reader = new BufferedReader(isr);
92 while ((line = reader.readLine()) != null) {
93 if (line.startsWith("--")) {
104 catch (Exception e) {
105 throw new RuntimeException(
106 String.format("Error applying %s, line %d", rev_file, line_no), e);
111 db.setTransactionSuccessful();
113 catch (IOException e) {
114 Log.e("db", String.format("Error opening raw resource for %s", rev_file));