]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/MobileLedgerDatabase.java
97f2b75b64a301528f658f144e69d4c7463c31e1
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / MobileLedgerDatabase.java
1 /*
2  * Copyright © 2021 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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.ktnx.mobileledger.utils;
19
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;
26
27 import androidx.lifecycle.MutableLiveData;
28
29 import net.ktnx.mobileledger.BuildConfig;
30
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;
36
37 import static net.ktnx.mobileledger.utils.Logger.debug;
38
39 public class MobileLedgerDatabase extends SQLiteOpenHelper {
40     public static final MutableLiveData<Boolean> initComplete = new MutableLiveData<>(false);
41     public static final String DB_NAME = "MoLe.db";
42     private static final int LATEST_REVISION = 51;
43     private static final String CREATE_DB_SQL = "create_db";
44     private final Application mContext;
45
46     public MobileLedgerDatabase(Application context) {
47         super(context, DB_NAME, null, LATEST_REVISION);
48         debug("db", "creating helper instance");
49         mContext = context;
50         super.setWriteAheadLoggingEnabled(true);
51     }
52
53     @Override
54     public void onCreate(SQLiteDatabase db) {
55         debug("db", "onCreate called");
56         applyRevisionFile(db, CREATE_DB_SQL);
57     }
58
59     @Override
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");
65     }
66     @Override
67     public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
68         debug("db",
69                 String.format(Locale.US, "needs upgrade from version %d to version %d", oldVersion,
70                         newVersion));
71         for (int i = oldVersion + 1; i <= newVersion; i++)
72             applyRevision(db, i);
73     }
74     private void applyRevision(SQLiteDatabase db, int rev_no) {
75         String rev_file = String.format(Locale.US, "sql_%d", rev_no);
76
77         applyRevisionFile(db, rev_file);
78     }
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());
82         if (res_id == 0)
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);
89
90             String line;
91             int line_no = 1;
92             while ((line = reader.readLine()) != null) {
93                 if (line.startsWith("--")) {
94                     line_no++;
95                     continue;
96                 }
97                 if (line.isEmpty()) {
98                     line_no++;
99                     continue;
100                 }
101                 try {
102                     db.execSQL(line);
103                 }
104                 catch (Exception e) {
105                     throw new RuntimeException(
106                             String.format("Error applying %s, line %d", rev_file, line_no), e);
107                 }
108                 line_no++;
109             }
110
111             db.setTransactionSuccessful();
112         }
113         catch (IOException e) {
114             Log.e("db", String.format("Error opening raw resource for %s", rev_file));
115             e.printStackTrace();
116         }
117         finally {
118             db.endTransaction();
119         }
120     }
121 }