]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/MobileLedgerDatabase.java
be31ebdf0991790c33e9fd939ee147a9e93146d8
[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 import java.util.regex.Matcher;
37 import java.util.regex.Pattern;
38
39 import static net.ktnx.mobileledger.utils.Logger.debug;
40
41 public class MobileLedgerDatabase extends SQLiteOpenHelper {
42     public static final MutableLiveData<Boolean> initComplete = new MutableLiveData<>(false);
43     public static final String DB_NAME = "MoLe.db";
44     private static final int LATEST_REVISION = 55;
45     private static final String CREATE_DB_SQL = "create_db";
46     private final Application mContext;
47
48     public MobileLedgerDatabase(Application context) {
49         super(context, DB_NAME, null, LATEST_REVISION);
50         debug("db", "creating helper instance");
51         mContext = context;
52         super.setWriteAheadLoggingEnabled(true);
53     }
54
55     @Override
56     public void onCreate(SQLiteDatabase db) {
57         debug("db", "onCreate called");
58         applyRevisionFile(db, CREATE_DB_SQL);
59     }
60
61     @Override
62     public void onConfigure(SQLiteDatabase db) {
63         super.onConfigure(db);
64         db.execSQL("pragma case_sensitive_like=ON;");
65         if (BuildConfig.DEBUG)
66             db.execSQL("PRAGMA foreign_keys=ON");
67     }
68     @Override
69     public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
70         debug("db",
71                 String.format(Locale.US, "needs upgrade from version %d to version %d", oldVersion,
72                         newVersion));
73         for (int i = oldVersion + 1; i <= newVersion; i++)
74             applyRevision(db, i);
75     }
76     private void applyRevision(SQLiteDatabase db, int rev_no) {
77         String rev_file = String.format(Locale.US, "sql_%d", rev_no);
78
79         applyRevisionFile(db, rev_file);
80     }
81     private void applyRevisionFile(SQLiteDatabase db, String rev_file) {
82         final Resources rm = mContext.getResources();
83         int res_id = rm.getIdentifier(rev_file, "raw", mContext.getPackageName());
84         if (res_id == 0)
85             throw new SQLException(String.format(Locale.US, "No resource for %s", rev_file));
86         try (InputStream res = rm.openRawResource(res_id)) {
87             debug("db", "Applying " + rev_file);
88             InputStreamReader isr = new InputStreamReader(res);
89             BufferedReader reader = new BufferedReader(isr);
90
91             Pattern continuation = Pattern.compile("\\\\\\s*$");
92
93             String line;
94             String sqlStatement = null;
95             int line_no = 1;
96             while ((line = reader.readLine()) != null) {
97                 if (line.startsWith("--")) {
98                     line_no++;
99                     continue;
100                 }
101                 if (line.isEmpty()) {
102                     line_no++;
103                     continue;
104                 }
105                 if (sqlStatement == null)
106                     sqlStatement = line;
107                 else
108                     sqlStatement = sqlStatement.concat(line);
109
110                 Matcher m = continuation.matcher(line);
111                 if (m.matches()) {
112                     line_no++;
113                     continue;
114                 }
115
116                 try {
117                     db.execSQL(sqlStatement);
118                     sqlStatement = null;
119                 }
120                 catch (Exception e) {
121                     throw new RuntimeException(
122                             String.format("Error applying %s, line %d", rev_file, line_no), e);
123                 }
124                 line_no++;
125             }
126
127             if (sqlStatement != null)
128                 throw new RuntimeException(
129                         String.format("Error applying %s: EOF after continuation", rev_file));
130
131         }
132         catch (IOException e) {
133             Log.e("db", String.format("Error opening raw resource for %s", rev_file));
134             e.printStackTrace();
135         }
136     }
137 }