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.
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.db;
20 import android.content.res.Resources;
21 import android.database.Cursor;
22 import android.database.SQLException;
24 import androidx.annotation.NonNull;
25 import androidx.lifecycle.MutableLiveData;
26 import androidx.room.Database;
27 import androidx.room.Room;
28 import androidx.room.RoomDatabase;
29 import androidx.room.migration.Migration;
30 import androidx.sqlite.db.SupportSQLiteDatabase;
32 import net.ktnx.mobileledger.App;
33 import net.ktnx.mobileledger.dao.AccountDAO;
34 import net.ktnx.mobileledger.dao.AccountValueDAO;
35 import net.ktnx.mobileledger.dao.CurrencyDAO;
36 import net.ktnx.mobileledger.dao.DescriptionHistoryDAO;
37 import net.ktnx.mobileledger.dao.OptionDAO;
38 import net.ktnx.mobileledger.dao.ProfileDAO;
39 import net.ktnx.mobileledger.dao.TemplateAccountDAO;
40 import net.ktnx.mobileledger.dao.TemplateHeaderDAO;
41 import net.ktnx.mobileledger.dao.TransactionAccountDAO;
42 import net.ktnx.mobileledger.dao.TransactionDAO;
43 import net.ktnx.mobileledger.utils.Logger;
45 import java.io.BufferedReader;
46 import java.io.IOException;
47 import java.io.InputStream;
48 import java.io.InputStreamReader;
49 import java.util.Locale;
50 import java.util.regex.Matcher;
51 import java.util.regex.Pattern;
53 import static net.ktnx.mobileledger.utils.Logger.debug;
55 @Database(version = DB.REVISION,
56 entities = {TemplateHeader.class, TemplateAccount.class, Currency.class, Account.class,
57 Profile.class, Option.class, AccountValue.class, DescriptionHistory.class,
58 Transaction.class, TransactionAccount.class
60 abstract public class DB extends RoomDatabase {
61 public static final int REVISION = 59;
62 public static final String DB_NAME = "MoLe.db";
63 public static final MutableLiveData<Boolean> initComplete = new MutableLiveData<>(false);
64 private static DB instance;
65 public static DB get() {
68 synchronized (DB.class) {
72 return instance = Room.databaseBuilder(App.instance, DB.class, DB_NAME)
73 .addMigrations(new Migration[]{singleVersionMigration(17),
74 singleVersionMigration(18),
75 singleVersionMigration(19),
76 singleVersionMigration(20),
77 multiVersionMigration(20, 22),
78 multiVersionMigration(22, 30),
79 multiVersionMigration(30, 32),
80 multiVersionMigration(32, 34),
81 multiVersionMigration(34, 40),
82 singleVersionMigration(41),
83 multiVersionMigration(41, 58),
84 singleVersionMigration(59)
86 .addCallback(new Callback() {
88 public void onOpen(@NonNull SupportSQLiteDatabase db) {
90 db.execSQL("PRAGMA foreign_keys = ON");
91 db.execSQL("pragma case_sensitive_like=ON;");
98 private static Migration singleVersionMigration(int toVersion) {
99 return new Migration(toVersion - 1, toVersion) {
101 public void migrate(@NonNull SupportSQLiteDatabase db) {
102 String fileName = String.format(Locale.US, "db_%d", toVersion);
104 applyRevisionFile(db, fileName);
106 // when migrating to version 59, migrate profile/theme options to the
108 if (toVersion == 59) {
109 try (Cursor c = db.query(
110 "SELECT p.id, p.theme_hue FROM profiles p WHERE p.id=(SELECT o.value " +
111 "FROM options WHERE o.profile_uid IS NULL AND o.name=?",
112 new Object[]{"profile_id"}))
114 if (c.moveToFirst()) {
115 long currentProfileId = c.getLong(0);
116 int currentTheme = c.getInt(1);
118 if (currentProfileId >= 0 && currentTheme >= 0) {
119 App.storeStartupProfileAndTheme(currentProfileId, currentTheme);
127 private static Migration dummyVersionMigration(int toVersion) {
128 return new Migration(toVersion - 1, toVersion) {
130 public void migrate(@NonNull SupportSQLiteDatabase db) {
132 String.format(Locale.ROOT, "Dummy DB migration to version %d", toVersion));
136 private static Migration multiVersionMigration(int fromVersion, int toVersion) {
137 return new Migration(fromVersion, toVersion) {
139 public void migrate(@NonNull SupportSQLiteDatabase db) {
140 String fileName = String.format(Locale.US, "db_%d_%d", fromVersion, toVersion);
142 applyRevisionFile(db, fileName);
146 public static void applyRevisionFile(@NonNull SupportSQLiteDatabase db, String fileName) {
147 final Resources rm = App.instance.getResources();
148 int res_id = rm.getIdentifier(fileName, "raw", App.instance.getPackageName());
150 throw new SQLException(String.format(Locale.US, "No resource for %s", fileName));
152 try (InputStream res = rm.openRawResource(res_id)) {
153 debug("db", "Applying " + fileName);
154 InputStreamReader isr = new InputStreamReader(res);
155 BufferedReader reader = new BufferedReader(isr);
157 Pattern endOfStatement = Pattern.compile(";\\s*(?:--.*)?$");
160 String sqlStatement = null;
162 while ((line = reader.readLine()) != null) {
164 if (line.startsWith("--"))
169 if (sqlStatement == null)
172 sqlStatement = sqlStatement.concat(" " + line);
174 Matcher m = endOfStatement.matcher(line);
179 db.execSQL(sqlStatement);
182 catch (Exception e) {
183 throw new RuntimeException(
184 String.format("Error applying %s, line %d, statement: %s", fileName,
185 lineNo, sqlStatement), e);
189 if (sqlStatement != null)
190 throw new RuntimeException(String.format(
191 "Error applying %s: EOF after continuation. Line %s, Incomplete " +
192 "statement: %s", fileName, lineNo, sqlStatement));
195 catch (IOException e) {
196 throw new RuntimeException(String.format("Error opening raw resource for %s", fileName),
200 public abstract TemplateHeaderDAO getTemplateDAO();
202 public abstract TemplateAccountDAO getTemplateAccountDAO();
204 public abstract CurrencyDAO getCurrencyDAO();
206 public abstract AccountDAO getAccountDAO();
208 public abstract AccountValueDAO getAccountValueDAO();
210 public abstract TransactionDAO getTransactionDAO();
212 public abstract TransactionAccountDAO getTransactionAccountDAO();
214 public abstract OptionDAO getOptionDAO();
216 public abstract DescriptionHistoryDAO getDescriptionHistoryDAO();
218 public abstract ProfileDAO getProfileDAO();